@osovitny/anatoly 3.16.67 → 3.16.68
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/ui/components/identity/signin-button.component.mjs +2 -2
- package/esm2022/lib/ui/components/identity/signout-button.component.mjs +46 -16
- package/esm2022/lib/ui/components/identity/signup-button.component.mjs +46 -16
- package/fesm2022/osovitny-anatoly.mjs +91 -31
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/identity/signin-button.component.d.ts +1 -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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ComponentBase } from "../base/component";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class SignInButtonComponent extends ComponentBase {
|
|
4
|
-
external: boolean;
|
|
5
4
|
url: any;
|
|
5
|
+
external: boolean;
|
|
6
6
|
constructor();
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignInButtonComponent, never>;
|
|
8
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<SignInButtonComponent, "anatoly-signin-button", never, {}, {}, never, ["*", "*"], false, never>;
|
|
@@ -2,7 +2,8 @@ import { ComponentBase } from "../base/component";
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class SignOutButtonComponent extends ComponentBase {
|
|
4
4
|
url: any;
|
|
5
|
+
external: boolean;
|
|
5
6
|
constructor();
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignOutButtonComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignOutButtonComponent, "anatoly-signout-button", never, {}, {}, never, ["*"], false, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignOutButtonComponent, "anatoly-signout-button", never, {}, {}, never, ["*", "*"], false, never>;
|
|
8
9
|
}
|
|
@@ -2,7 +2,8 @@ import { ComponentBase } from "../base/component";
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class SignUpButtonComponent extends ComponentBase {
|
|
4
4
|
url: any;
|
|
5
|
+
external: boolean;
|
|
5
6
|
constructor();
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignUpButtonComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignUpButtonComponent, "anatoly-signup-button", never, {}, {}, never, ["*"], false, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignUpButtonComponent, "anatoly-signup-button", never, {}, {}, never, ["*", "*"], false, never>;
|
|
8
9
|
}
|