@osovitny/anatoly 3.16.71 → 3.16.73
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/esm2022/lib/core/consts/settings.mjs +2 -2
- package/esm2022/lib/ui/components/identity/signin-button.component.mjs +8 -5
- package/esm2022/lib/ui/components/identity/signout-button.component.mjs +8 -5
- package/esm2022/lib/ui/components/identity/signup-button.component.mjs +8 -5
- package/fesm2022/osovitny-anatoly.mjs +19 -10
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/core/consts/settings.d.ts +1 -1
- package/lib/ui/components/identity/signin-button.component.d.ts +2 -1
- package/lib/ui/components/identity/signout-button.component.d.ts +2 -1
- package/lib/ui/components/identity/signup-button.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -2,6 +2,6 @@ export declare const AppCoreSettings: any;
|
|
|
2
2
|
export declare const L10NUrl: string;
|
|
3
3
|
export declare const AppVersion: string;
|
|
4
4
|
export declare const ApiUrl: string;
|
|
5
|
-
export declare const ClientApps:
|
|
5
|
+
export declare const ClientApps: any;
|
|
6
6
|
export declare const AppName: string;
|
|
7
7
|
export declare const AppSettings: any;
|
|
@@ -3,7 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class SignInButtonComponent extends ComponentBase {
|
|
4
4
|
url: any;
|
|
5
5
|
external: boolean;
|
|
6
|
+
qs: string;
|
|
6
7
|
constructor();
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignInButtonComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignInButtonComponent, "anatoly-signin-button", never, {}, {}, never, ["*"], false, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignInButtonComponent, "anatoly-signin-button", never, { "qs": { "alias": "qs"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
9
10
|
}
|
|
@@ -3,7 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class SignOutButtonComponent extends ComponentBase {
|
|
4
4
|
url: any;
|
|
5
5
|
external: boolean;
|
|
6
|
+
qs: string;
|
|
6
7
|
constructor();
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignOutButtonComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignOutButtonComponent, "anatoly-signout-button", never, {}, {}, never, ["*"], false, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignOutButtonComponent, "anatoly-signout-button", never, { "qs": { "alias": "qs"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
9
10
|
}
|
|
@@ -3,7 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class SignUpButtonComponent extends ComponentBase {
|
|
4
4
|
url: any;
|
|
5
5
|
external: boolean;
|
|
6
|
+
qs: string;
|
|
6
7
|
constructor();
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignUpButtonComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignUpButtonComponent, "anatoly-signup-button", never, {}, {}, never, ["*"], false, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignUpButtonComponent, "anatoly-signup-button", never, { "qs": { "alias": "qs"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
9
10
|
}
|