@osovitny/anatoly 3.20.29 → 3.20.31
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 +32 -21
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/index.d.ts +16 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -103,6 +103,10 @@ declare class AppContextService extends ApiServiceBase {
|
|
|
103
103
|
private _standardJsonFilesLoaded;
|
|
104
104
|
readonly standardJsonFilesLoaded$: Observable<any>;
|
|
105
105
|
constructor(http: HttpClient, localStorage: LocalStorageService, sessionStorage: SessionStorageService);
|
|
106
|
+
private internalInit;
|
|
107
|
+
protected setDefaults?(): void;
|
|
108
|
+
protected setValues?(): void;
|
|
109
|
+
protected contextUpdated?(context: any): void;
|
|
106
110
|
private fireUpdated;
|
|
107
111
|
protected fireUserUpdated(): void;
|
|
108
112
|
private fireStandardJsonFilesLoaded;
|
|
@@ -868,6 +872,15 @@ declare abstract class EditComponentBase extends ComponentBase {
|
|
|
868
872
|
formSubmitted: boolean;
|
|
869
873
|
controlName: string;
|
|
870
874
|
controlTitle: string;
|
|
875
|
+
/**
|
|
876
|
+
* returns formgroup controls.
|
|
877
|
+
* main use case is used in html pages
|
|
878
|
+
*/
|
|
879
|
+
get fc(): {
|
|
880
|
+
[key: string]: AbstractControl<any, any, any>;
|
|
881
|
+
};
|
|
882
|
+
get isNgModelBased(): boolean;
|
|
883
|
+
get isFormBased(): boolean;
|
|
871
884
|
constructor();
|
|
872
885
|
isControlValid(name: string, frmGroup?: FormGroup): boolean;
|
|
873
886
|
isControlInvalid(name: string, frmGroup?: FormGroup): boolean;
|
|
@@ -908,14 +921,6 @@ declare abstract class EditComponentBase extends ComponentBase {
|
|
|
908
921
|
* @param frmGroup
|
|
909
922
|
*/
|
|
910
923
|
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
924
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditComponentBase, never>;
|
|
920
925
|
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
926
|
}
|
|
@@ -1540,16 +1545,17 @@ declare abstract class PagedPageBase extends PageBase {
|
|
|
1540
1545
|
}
|
|
1541
1546
|
|
|
1542
1547
|
declare abstract class ListBase extends ComponentBase implements OnInit {
|
|
1543
|
-
|
|
1544
|
-
dataLoaded: boolean;
|
|
1548
|
+
private _currentFilter;
|
|
1545
1549
|
items: any[];
|
|
1546
1550
|
totalItems: number;
|
|
1547
1551
|
skipItems: number;
|
|
1548
1552
|
currentPage: number;
|
|
1553
|
+
dataLoaded: boolean;
|
|
1549
1554
|
pageSize: number;
|
|
1550
1555
|
autoDataLoading: boolean;
|
|
1551
1556
|
filterRequest: EventEmitter<any>;
|
|
1552
1557
|
dataChange: EventEmitter<any>;
|
|
1558
|
+
get currentFilter(): any;
|
|
1553
1559
|
ngOnInit(): void;
|
|
1554
1560
|
protected init(): void;
|
|
1555
1561
|
protected fireFilterRequest(): void;
|
|
@@ -1650,7 +1656,6 @@ declare class HtmlEditorComponent extends HtmlEditorComponentBase {
|
|
|
1650
1656
|
constructor();
|
|
1651
1657
|
getHtml(): any;
|
|
1652
1658
|
setHtml(content: any): void;
|
|
1653
|
-
setFormValueAfterInitialized(name: any, value: any): void;
|
|
1654
1659
|
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorComponent, never>;
|
|
1655
1660
|
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponent, "anatoly-html-editor", never, {}, {}, never, never, false, never>;
|
|
1656
1661
|
}
|