@osovitny/anatoly 3.20.1 → 3.20.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/fesm2022/osovitny-anatoly.mjs +22 -18
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -759,6 +759,7 @@ declare abstract class ComponentBase implements OnInit, OnDestroy {
|
|
|
759
759
|
protected dataLoaded: boolean;
|
|
760
760
|
protected dataFound: boolean;
|
|
761
761
|
currentApp: ICurrentApp;
|
|
762
|
+
mode: Mode;
|
|
762
763
|
classes: string;
|
|
763
764
|
title: string;
|
|
764
765
|
isTitleVisible: boolean;
|
|
@@ -772,7 +773,7 @@ declare abstract class ComponentBase implements OnInit, OnDestroy {
|
|
|
772
773
|
dataLoadedAndNothingFound(): void;
|
|
773
774
|
dataLoadedAndFound(found?: boolean): void;
|
|
774
775
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentBase, never>;
|
|
775
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentBase, "ng-component", never, { "classes": { "alias": "classes"; "required": false; }; "title": { "alias": "title"; "required": false; }; "isTitleVisible": { "alias": "isTitleVisible"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; }, {}, never, never, true, never>;
|
|
776
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentBase, "ng-component", never, { "mode": { "alias": "mode"; "required": false; }; "classes": { "alias": "classes"; "required": false; }; "title": { "alias": "title"; "required": false; }; "isTitleVisible": { "alias": "isTitleVisible"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; }, {}, never, never, true, never>;
|
|
776
777
|
}
|
|
777
778
|
|
|
778
779
|
declare class PaymentsService {
|