@osovitny/anatoly 3.20.1 → 3.20.3
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 +31 -27
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -149,7 +149,7 @@ declare class BuyAccessButtonComponent implements OnInit {
|
|
|
149
149
|
private appContext;
|
|
150
150
|
contextUpdated: boolean;
|
|
151
151
|
isUserSignedIn: boolean;
|
|
152
|
-
|
|
152
|
+
currentPlanId: number;
|
|
153
153
|
plan: number;
|
|
154
154
|
visibleIfUserSignedIn: boolean;
|
|
155
155
|
planselect: EventEmitter<any>;
|
|
@@ -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 {
|