@osovitny/anatoly 3.16.72 → 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/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 +18 -9
- package/fesm2022/osovitny-anatoly.mjs.map +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
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
</file>
|
|
15
15
|
*/
|
|
16
16
|
//Node
|
|
17
|
-
import { Component } from "@angular/core";
|
|
17
|
+
import { Component, Input } from "@angular/core";
|
|
18
18
|
//App
|
|
19
19
|
import { ComponentBase } from "../base/component";
|
|
20
20
|
import { MSALConfig } from "../../../iam/consts";
|
|
@@ -70,13 +70,14 @@ const _c0 = ["*"];
|
|
|
70
70
|
export class SignInButtonComponent extends ComponentBase {
|
|
71
71
|
url;
|
|
72
72
|
external = false;
|
|
73
|
+
qs;
|
|
73
74
|
constructor() {
|
|
74
75
|
super();
|
|
75
|
-
this.url = MSALConfig.ui.signin;
|
|
76
|
+
this.url = MSALConfig.ui.signin + (this.qs ? this.qs : '');
|
|
76
77
|
this.external = this.url?.indexOf('http') > -1;
|
|
77
78
|
}
|
|
78
79
|
static ɵfac = function SignInButtonComponent_Factory(t) { return new (t || SignInButtonComponent)(); };
|
|
79
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignInButtonComponent, selectors: [["anatoly-signin-button"]], features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignInButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
80
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignInButtonComponent, selectors: [["anatoly-signin-button"]], inputs: { qs: "qs" }, features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignInButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
80
81
|
i0.ɵɵprojectionDef();
|
|
81
82
|
i0.ɵɵtemplate(0, SignInButtonComponent_a_0_Template, 2, 5, "a", 0);
|
|
82
83
|
i0.ɵɵtemplate(1, SignInButtonComponent_a_1_Template, 2, 5, "a", 1);
|
|
@@ -90,5 +91,7 @@ export class SignInButtonComponent extends ComponentBase {
|
|
|
90
91
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignInButtonComponent, [{
|
|
91
92
|
type: Component,
|
|
92
93
|
args: [{ selector: "anatoly-signin-button", template: "<a [href]=\"url\" class=\"{{ classes }}\" *ngIf=\"external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<a [routerLink]=\"url\" class=\"{{ classes }}\" *ngIf=\"!external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<ng-template #contentTemplate>\r\n <span #ref><ng-content></ng-content></span>\r\n <span *ngIf=\"!ref.innerHTML.trim()\">Sign In</span>\r\n</ng-template>\r\n" }]
|
|
93
|
-
}], function () { return []; },
|
|
94
|
-
|
|
94
|
+
}], function () { return []; }, { qs: [{
|
|
95
|
+
type: Input
|
|
96
|
+
}] }); })();
|
|
97
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lnbmluLWJ1dHRvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmF0b2x5L3NyYy9saWIvdWkvY29tcG9uZW50cy9pZGVudGl0eS9zaWduaW4tYnV0dG9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuYXRvbHkvc3JjL2xpYi91aS9jb21wb25lbnRzL2lkZW50aXR5L3NpZ25pbi1idXR0b24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7Ozs7O0VBY0U7QUFFRixNQUFNO0FBQ04sT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFakQsS0FBSztBQUNMLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7O0lDcEIvQyx3QkFBaUU7OztJQURuRSw0QkFBdUQ7SUFDckQsNEZBQWlFO0lBQ25FLGlCQUFJOzs7O0lBRlksNkJBQXFCO0lBQWxDLG1EQUFZO0lBQ0UsZUFBaUM7SUFBakMsc0NBQWlDOzs7SUFJaEQsd0JBQWlFOzs7SUFEbkUsNEJBQThEO0lBQzVELDRGQUFpRTtJQUNuRSxpQkFBSTs7OztJQUZrQiw2QkFBcUI7SUFBeEMsdUNBQWtCO0lBQ0osZUFBaUM7SUFBakMsc0NBQWlDOzs7SUFLaEQsNEJBQW9DO0lBQUEsdUJBQU87SUFBQSxpQkFBTzs7O0lBRGxELHFDQUFXO0lBQUEsa0JBQXlCO0lBQUEsaUJBQU87SUFDM0Msc0ZBQWtEOzs7SUFBM0MsZUFBMkI7SUFBM0IsNENBQTJCOzs7QURpQnBDLE1BQU0sT0FBTyxxQkFBc0IsU0FBUSxhQUFhO0lBQ3RELEdBQUcsQ0FBQztJQUNKLFFBQVEsR0FBRyxLQUFLLENBQUM7SUFFUixFQUFFLENBQVM7SUFFcEI7UUFDRSxLQUFLLEVBQUUsQ0FBQztRQUNSLElBQUksQ0FBQyxHQUFHLEdBQUcsVUFBVSxDQUFDLEVBQUUsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUMzRCxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxHQUFHLEVBQUUsT0FBTyxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO0lBQ2pELENBQUM7K0VBVlUscUJBQXFCOzZEQUFyQixxQkFBcUI7O1lDM0JsQyxrRUFFSTtZQUVKLGtFQUVJO1lBRUosdUhBR2M7O1lBWHlCLG1DQUFjO1lBSVIsZUFBZTtZQUFmLG9DQUFlOzs7dUZEdUIvQyxxQkFBcUI7Y0FKakMsU0FBUzsyQkFDRSx1QkFBdUI7c0NBT3hCLEVBQUU7a0JBQVYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbIi8qXHJcbjxmaWxlPlxyXG4gIFByb2plY3Q6XHJcbiAgICBAb3Nvdml0bnkvYW5hdG9seVxyXG5cclxuICBBdXRob3JzOlxyXG4gICAgVmFkaW0gT3Nvdml0bnkgdmFkaW1Ab3Nvdml0bnkuY29tXHJcbiAgICBBbmF0b2x5IE9zb3ZpdG55IGFuYXRvbHlAb3Nvdml0bnkuY29tXHJcblxyXG4gIENyZWF0ZWQ6XHJcbiAgICA0IEp1bCAyMDE4XHJcblxyXG4gIENvcHlyaWdodCAoYykgMjAxNi0yMDIyIE9zb3ZpdG55IEluYy4gQWxsIHJpZ2h0cyByZXNlcnZlZC5cclxuPC9maWxlPlxyXG4qL1xyXG5cclxuLy9Ob2RlXHJcbmltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5cclxuLy9BcHBcclxuaW1wb3J0IHsgQ29tcG9uZW50QmFzZSB9IGZyb20gXCIuLi9iYXNlL2NvbXBvbmVudFwiO1xyXG5pbXBvcnQgeyBNU0FMQ29uZmlnIH0gZnJvbSBcIi4uLy4uLy4uL2lhbS9jb25zdHNcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiBcImFuYXRvbHktc2lnbmluLWJ1dHRvblwiLFxyXG4gIHRlbXBsYXRlVXJsOiBcIi4vc2lnbmluLWJ1dHRvbi5jb21wb25lbnQuaHRtbFwiLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgU2lnbkluQnV0dG9uQ29tcG9uZW50IGV4dGVuZHMgQ29tcG9uZW50QmFzZSB7XHJcbiAgdXJsO1xyXG4gIGV4dGVybmFsID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpIHFzOiBzdHJpbmc7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkge1xyXG4gICAgc3VwZXIoKTtcclxuICAgIHRoaXMudXJsID0gTVNBTENvbmZpZy51aS5zaWduaW4gKyAodGhpcy5xcyA/IHRoaXMucXMgOiAnJyk7XHJcbiAgICB0aGlzLmV4dGVybmFsID0gdGhpcy51cmw/LmluZGV4T2YoJ2h0dHAnKSA+IC0xO1xyXG4gIH1cclxufVxyXG4iLCI8YSBbaHJlZl09XCJ1cmxcIiBjbGFzcz1cInt7IGNsYXNzZXMgfX1cIiAqbmdJZj1cImV4dGVybmFsXCI+XHJcbiAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImNvbnRlbnRUZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxyXG48L2E+XHJcblxyXG48YSBbcm91dGVyTGlua109XCJ1cmxcIiBjbGFzcz1cInt7IGNsYXNzZXMgfX1cIiAqbmdJZj1cIiFleHRlcm5hbFwiPlxyXG4gIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJjb250ZW50VGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cclxuPC9hPlxyXG5cclxuPG5nLXRlbXBsYXRlICNjb250ZW50VGVtcGxhdGU+XHJcbiAgPHNwYW4gI3JlZj48bmctY29udGVudD48L25nLWNvbnRlbnQ+PC9zcGFuPlxyXG4gIDxzcGFuICpuZ0lmPVwiIXJlZi5pbm5lckhUTUwudHJpbSgpXCI+U2lnbiBJbjwvc3Bhbj5cclxuPC9uZy10ZW1wbGF0ZT5cclxuIl19
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
</file>
|
|
15
15
|
*/
|
|
16
16
|
//Node
|
|
17
|
-
import { Component } from "@angular/core";
|
|
17
|
+
import { Component, Input } from "@angular/core";
|
|
18
18
|
//App
|
|
19
19
|
import { ComponentBase } from "../base/component";
|
|
20
20
|
import { MSALConfig } from "../../../iam/consts";
|
|
@@ -70,13 +70,14 @@ const _c0 = ["*"];
|
|
|
70
70
|
export class SignOutButtonComponent extends ComponentBase {
|
|
71
71
|
url;
|
|
72
72
|
external = false;
|
|
73
|
+
qs;
|
|
73
74
|
constructor() {
|
|
74
75
|
super();
|
|
75
|
-
this.url = MSALConfig.ui.signout;
|
|
76
|
+
this.url = MSALConfig.ui.signout + (this.qs ? this.qs : '');
|
|
76
77
|
this.external = this.url?.indexOf('http') > -1;
|
|
77
78
|
}
|
|
78
79
|
static ɵfac = function SignOutButtonComponent_Factory(t) { return new (t || SignOutButtonComponent)(); };
|
|
79
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignOutButtonComponent, selectors: [["anatoly-signout-button"]], features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignOutButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
80
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignOutButtonComponent, selectors: [["anatoly-signout-button"]], inputs: { qs: "qs" }, features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignOutButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
80
81
|
i0.ɵɵprojectionDef();
|
|
81
82
|
i0.ɵɵtemplate(0, SignOutButtonComponent_a_0_Template, 2, 5, "a", 0);
|
|
82
83
|
i0.ɵɵtemplate(1, SignOutButtonComponent_a_1_Template, 2, 5, "a", 1);
|
|
@@ -90,5 +91,7 @@ export class SignOutButtonComponent extends ComponentBase {
|
|
|
90
91
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignOutButtonComponent, [{
|
|
91
92
|
type: Component,
|
|
92
93
|
args: [{ selector: "anatoly-signout-button", template: "<a [href]=\"url\" class=\"{{ classes }}\" *ngIf=\"external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<a [routerLink]=\"url\" class=\"{{ classes }}\" *ngIf=\"!external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<ng-template #contentTemplate>\r\n <span #ref><ng-content></ng-content></span>\r\n <span *ngIf=\"!ref.innerHTML.trim()\">Sign Out</span>\r\n</ng-template>\r\n" }]
|
|
93
|
-
}], function () { return []; },
|
|
94
|
-
|
|
94
|
+
}], function () { return []; }, { qs: [{
|
|
95
|
+
type: Input
|
|
96
|
+
}] }); })();
|
|
97
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lnbm91dC1idXR0b24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5hdG9seS9zcmMvbGliL3VpL2NvbXBvbmVudHMvaWRlbnRpdHkvc2lnbm91dC1idXR0b24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5hdG9seS9zcmMvbGliL3VpL2NvbXBvbmVudHMvaWRlbnRpdHkvc2lnbm91dC1idXR0b24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7Ozs7O0VBY0U7QUFFRixNQUFNO0FBQ04sT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFakQsS0FBSztBQUNMLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7O0lDcEIvQyx3QkFBaUU7OztJQURuRSw0QkFBdUQ7SUFDckQsNkZBQWlFO0lBQ25FLGlCQUFJOzs7O0lBRlksNkJBQXFCO0lBQWxDLG1EQUFZO0lBQ0UsZUFBaUM7SUFBakMsc0NBQWlDOzs7SUFJaEQsd0JBQWlFOzs7SUFEbkUsNEJBQThEO0lBQzVELDZGQUFpRTtJQUNuRSxpQkFBSTs7OztJQUZrQiw2QkFBcUI7SUFBeEMsdUNBQWtCO0lBQ0osZUFBaUM7SUFBakMsc0NBQWlDOzs7SUFLaEQsNEJBQW9DO0lBQUEsd0JBQVE7SUFBQSxpQkFBTzs7O0lBRG5ELHFDQUFXO0lBQUEsa0JBQXlCO0lBQUEsaUJBQU87SUFDM0MsdUZBQW1EOzs7SUFBNUMsZUFBMkI7SUFBM0IsNENBQTJCOzs7QURpQnBDLE1BQU0sT0FBTyxzQkFBdUIsU0FBUSxhQUFhO0lBQ3ZELEdBQUcsQ0FBQztJQUNKLFFBQVEsR0FBRyxLQUFLLENBQUM7SUFFUixFQUFFLENBQVM7SUFFcEI7UUFDRSxLQUFLLEVBQUUsQ0FBQztRQUNSLElBQUksQ0FBQyxHQUFHLEdBQUcsVUFBVSxDQUFDLEVBQUUsQ0FBQyxPQUFPLEdBQUcsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUM1RCxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxHQUFHLEVBQUUsT0FBTyxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO0lBQ2pELENBQUM7Z0ZBVlUsc0JBQXNCOzZEQUF0QixzQkFBc0I7O1lDM0JuQyxtRUFFSTtZQUVKLG1FQUVJO1lBRUosd0hBR2M7O1lBWHlCLG1DQUFjO1lBSVIsZUFBZTtZQUFmLG9DQUFlOzs7dUZEdUIvQyxzQkFBc0I7Y0FKbEMsU0FBUzsyQkFDRSx3QkFBd0I7c0NBT3pCLEVBQUU7a0JBQVYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbIi8qXHJcbjxmaWxlPlxyXG4gIFByb2plY3Q6XHJcbiAgICBAb3Nvdml0bnkvYW5hdG9seVxyXG5cclxuICBBdXRob3JzOlxyXG4gICAgVmFkaW0gT3Nvdml0bnkgdmFkaW1Ab3Nvdml0bnkuY29tXHJcbiAgICBBbmF0b2x5IE9zb3ZpdG55IGFuYXRvbHlAb3Nvdml0bnkuY29tXHJcblxyXG4gIENyZWF0ZWQ6XHJcbiAgICA0IEp1bCAyMDE4XHJcblxyXG4gIENvcHlyaWdodCAoYykgMjAxNi0yMDIyIE9zb3ZpdG55IEluYy4gQWxsIHJpZ2h0cyByZXNlcnZlZC5cclxuPC9maWxlPlxyXG4qL1xyXG5cclxuLy9Ob2RlXHJcbmltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5cclxuLy9BcHBcclxuaW1wb3J0IHsgQ29tcG9uZW50QmFzZSB9IGZyb20gXCIuLi9iYXNlL2NvbXBvbmVudFwiO1xyXG5pbXBvcnQgeyBNU0FMQ29uZmlnIH0gZnJvbSBcIi4uLy4uLy4uL2lhbS9jb25zdHNcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiBcImFuYXRvbHktc2lnbm91dC1idXR0b25cIixcclxuICB0ZW1wbGF0ZVVybDogXCIuL3NpZ25vdXQtYnV0dG9uLmNvbXBvbmVudC5odG1sXCIsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBTaWduT3V0QnV0dG9uQ29tcG9uZW50IGV4dGVuZHMgQ29tcG9uZW50QmFzZSB7XHJcbiAgdXJsO1xyXG4gIGV4dGVybmFsID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpIHFzOiBzdHJpbmc7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkge1xyXG4gICAgc3VwZXIoKTtcclxuICAgIHRoaXMudXJsID0gTVNBTENvbmZpZy51aS5zaWdub3V0ICsgKHRoaXMucXMgPyB0aGlzLnFzIDogJycpO1xyXG4gICAgdGhpcy5leHRlcm5hbCA9IHRoaXMudXJsPy5pbmRleE9mKCdodHRwJykgPiAtMTtcclxuICB9XHJcbn1cclxuIiwiPGEgW2hyZWZdPVwidXJsXCIgY2xhc3M9XCJ7eyBjbGFzc2VzIH19XCIgKm5nSWY9XCJleHRlcm5hbFwiPlxyXG4gIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJjb250ZW50VGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cclxuPC9hPlxyXG5cclxuPGEgW3JvdXRlckxpbmtdPVwidXJsXCIgY2xhc3M9XCJ7eyBjbGFzc2VzIH19XCIgKm5nSWY9XCIhZXh0ZXJuYWxcIj5cclxuICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiY29udGVudFRlbXBsYXRlXCI+PC9uZy1jb250YWluZXI+XHJcbjwvYT5cclxuXHJcbjxuZy10ZW1wbGF0ZSAjY29udGVudFRlbXBsYXRlPlxyXG4gIDxzcGFuICNyZWY+PG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50Pjwvc3Bhbj5cclxuICA8c3BhbiAqbmdJZj1cIiFyZWYuaW5uZXJIVE1MLnRyaW0oKVwiPlNpZ24gT3V0PC9zcGFuPlxyXG48L25nLXRlbXBsYXRlPlxyXG4iXX0=
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
</file>
|
|
15
15
|
*/
|
|
16
16
|
//Node
|
|
17
|
-
import { Component } from "@angular/core";
|
|
17
|
+
import { Component, Input } from "@angular/core";
|
|
18
18
|
//App
|
|
19
19
|
import { ComponentBase } from "../base/component";
|
|
20
20
|
import { MSALConfig } from "../../../iam/consts";
|
|
@@ -70,13 +70,14 @@ const _c0 = ["*"];
|
|
|
70
70
|
export class SignUpButtonComponent extends ComponentBase {
|
|
71
71
|
url;
|
|
72
72
|
external = false;
|
|
73
|
+
qs;
|
|
73
74
|
constructor() {
|
|
74
75
|
super();
|
|
75
|
-
this.url = MSALConfig.ui.signup;
|
|
76
|
+
this.url = MSALConfig.ui.signup + (this.qs ? this.qs : '');
|
|
76
77
|
this.external = this.url?.indexOf('http') > -1;
|
|
77
78
|
}
|
|
78
79
|
static ɵfac = function SignUpButtonComponent_Factory(t) { return new (t || SignUpButtonComponent)(); };
|
|
79
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignUpButtonComponent, selectors: [["anatoly-signup-button"]], features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignUpButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
80
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignUpButtonComponent, selectors: [["anatoly-signup-button"]], inputs: { qs: "qs" }, features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignUpButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
80
81
|
i0.ɵɵprojectionDef();
|
|
81
82
|
i0.ɵɵtemplate(0, SignUpButtonComponent_a_0_Template, 2, 5, "a", 0);
|
|
82
83
|
i0.ɵɵtemplate(1, SignUpButtonComponent_a_1_Template, 2, 5, "a", 1);
|
|
@@ -90,5 +91,7 @@ export class SignUpButtonComponent extends ComponentBase {
|
|
|
90
91
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignUpButtonComponent, [{
|
|
91
92
|
type: Component,
|
|
92
93
|
args: [{ selector: "anatoly-signup-button", template: "<a [href]=\"url\" class=\"{{ classes }}\" *ngIf=\"external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<a [routerLink]=\"url\" class=\"{{ classes }}\" *ngIf=\"!external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<ng-template #contentTemplate>\r\n <span #ref><ng-content></ng-content></span>\r\n <span *ngIf=\"!ref.innerHTML.trim()\">Sign Up</span>\r\n</ng-template>\r\n" }]
|
|
93
|
-
}], function () { return []; },
|
|
94
|
-
|
|
94
|
+
}], function () { return []; }, { qs: [{
|
|
95
|
+
type: Input
|
|
96
|
+
}] }); })();
|
|
97
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lnbnVwLWJ1dHRvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmF0b2x5L3NyYy9saWIvdWkvY29tcG9uZW50cy9pZGVudGl0eS9zaWdudXAtYnV0dG9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuYXRvbHkvc3JjL2xpYi91aS9jb21wb25lbnRzL2lkZW50aXR5L3NpZ251cC1idXR0b24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7Ozs7O0VBY0U7QUFFRixNQUFNO0FBQ04sT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFakQsS0FBSztBQUNMLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7O0lDcEIvQyx3QkFBaUU7OztJQURuRSw0QkFBdUQ7SUFDckQsNEZBQWlFO0lBQ25FLGlCQUFJOzs7O0lBRlksNkJBQXFCO0lBQWxDLG1EQUFZO0lBQ0UsZUFBaUM7SUFBakMsc0NBQWlDOzs7SUFJaEQsd0JBQWlFOzs7SUFEbkUsNEJBQThEO0lBQzVELDRGQUFpRTtJQUNuRSxpQkFBSTs7OztJQUZrQiw2QkFBcUI7SUFBeEMsdUNBQWtCO0lBQ0osZUFBaUM7SUFBakMsc0NBQWlDOzs7SUFLaEQsNEJBQW9DO0lBQUEsdUJBQU87SUFBQSxpQkFBTzs7O0lBRGxELHFDQUFXO0lBQUEsa0JBQXlCO0lBQUEsaUJBQU87SUFDM0Msc0ZBQWtEOzs7SUFBM0MsZUFBMkI7SUFBM0IsNENBQTJCOzs7QURpQnBDLE1BQU0sT0FBTyxxQkFBc0IsU0FBUSxhQUFhO0lBQ3RELEdBQUcsQ0FBQztJQUNKLFFBQVEsR0FBRyxLQUFLLENBQUM7SUFFUixFQUFFLENBQVM7SUFFcEI7UUFDRSxLQUFLLEVBQUUsQ0FBQztRQUNSLElBQUksQ0FBQyxHQUFHLEdBQUcsVUFBVSxDQUFDLEVBQUUsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUMzRCxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxHQUFHLEVBQUUsT0FBTyxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO0lBQ2pELENBQUM7K0VBVlUscUJBQXFCOzZEQUFyQixxQkFBcUI7O1lDM0JsQyxrRUFFSTtZQUVKLGtFQUVJO1lBRUosdUhBR2M7O1lBWHlCLG1DQUFjO1lBSVIsZUFBZTtZQUFmLG9DQUFlOzs7dUZEdUIvQyxxQkFBcUI7Y0FKakMsU0FBUzsyQkFDRSx1QkFBdUI7c0NBT3hCLEVBQUU7a0JBQVYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbIi8qXHJcbjxmaWxlPlxyXG4gIFByb2plY3Q6XHJcbiAgICBAb3Nvdml0bnkvYW5hdG9seVxyXG5cclxuICBBdXRob3JzOlxyXG4gICAgVmFkaW0gT3Nvdml0bnkgdmFkaW1Ab3Nvdml0bnkuY29tXHJcbiAgICBBbmF0b2x5IE9zb3ZpdG55IGFuYXRvbHlAb3Nvdml0bnkuY29tXHJcblxyXG4gIENyZWF0ZWQ6XHJcbiAgICA0IEp1bCAyMDE4XHJcblxyXG4gIENvcHlyaWdodCAoYykgMjAxNi0yMDIyIE9zb3ZpdG55IEluYy4gQWxsIHJpZ2h0cyByZXNlcnZlZC5cclxuPC9maWxlPlxyXG4qL1xyXG5cclxuLy9Ob2RlXHJcbmltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5cclxuLy9BcHBcclxuaW1wb3J0IHsgQ29tcG9uZW50QmFzZSB9IGZyb20gXCIuLi9iYXNlL2NvbXBvbmVudFwiO1xyXG5pbXBvcnQgeyBNU0FMQ29uZmlnIH0gZnJvbSBcIi4uLy4uLy4uL2lhbS9jb25zdHNcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiBcImFuYXRvbHktc2lnbnVwLWJ1dHRvblwiLFxyXG4gIHRlbXBsYXRlVXJsOiBcIi4vc2lnbnVwLWJ1dHRvbi5jb21wb25lbnQuaHRtbFwiLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgU2lnblVwQnV0dG9uQ29tcG9uZW50IGV4dGVuZHMgQ29tcG9uZW50QmFzZSB7XHJcbiAgdXJsO1xyXG4gIGV4dGVybmFsID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpIHFzOiBzdHJpbmc7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkge1xyXG4gICAgc3VwZXIoKTtcclxuICAgIHRoaXMudXJsID0gTVNBTENvbmZpZy51aS5zaWdudXAgKyAodGhpcy5xcyA/IHRoaXMucXMgOiAnJyk7XHJcbiAgICB0aGlzLmV4dGVybmFsID0gdGhpcy51cmw/LmluZGV4T2YoJ2h0dHAnKSA+IC0xO1xyXG4gIH1cclxufVxyXG4iLCI8YSBbaHJlZl09XCJ1cmxcIiBjbGFzcz1cInt7IGNsYXNzZXMgfX1cIiAqbmdJZj1cImV4dGVybmFsXCI+XHJcbiAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImNvbnRlbnRUZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxyXG48L2E+XHJcblxyXG48YSBbcm91dGVyTGlua109XCJ1cmxcIiBjbGFzcz1cInt7IGNsYXNzZXMgfX1cIiAqbmdJZj1cIiFleHRlcm5hbFwiPlxyXG4gIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJjb250ZW50VGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cclxuPC9hPlxyXG5cclxuPG5nLXRlbXBsYXRlICNjb250ZW50VGVtcGxhdGU+XHJcbiAgPHNwYW4gI3JlZj48bmctY29udGVudD48L25nLWNvbnRlbnQ+PC9zcGFuPlxyXG4gIDxzcGFuICpuZ0lmPVwiIXJlZi5pbm5lckhUTUwudHJpbSgpXCI+U2lnbiBVcDwvc3Bhbj5cclxuPC9uZy10ZW1wbGF0ZT5cclxuIl19
|
|
@@ -3653,13 +3653,14 @@ const _c0$e = ["*"];
|
|
|
3653
3653
|
class SignUpButtonComponent extends ComponentBase {
|
|
3654
3654
|
url;
|
|
3655
3655
|
external = false;
|
|
3656
|
+
qs;
|
|
3656
3657
|
constructor() {
|
|
3657
3658
|
super();
|
|
3658
|
-
this.url = MSALConfig.ui.signup;
|
|
3659
|
+
this.url = MSALConfig.ui.signup + (this.qs ? this.qs : '');
|
|
3659
3660
|
this.external = this.url?.indexOf('http') > -1;
|
|
3660
3661
|
}
|
|
3661
3662
|
static ɵfac = function SignUpButtonComponent_Factory(t) { return new (t || SignUpButtonComponent)(); };
|
|
3662
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignUpButtonComponent, selectors: [["anatoly-signup-button"]], features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0$e, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignUpButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
3663
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignUpButtonComponent, selectors: [["anatoly-signup-button"]], inputs: { qs: "qs" }, features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0$e, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignUpButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
3663
3664
|
i0.ɵɵprojectionDef();
|
|
3664
3665
|
i0.ɵɵtemplate(0, SignUpButtonComponent_a_0_Template, 2, 5, "a", 0);
|
|
3665
3666
|
i0.ɵɵtemplate(1, SignUpButtonComponent_a_1_Template, 2, 5, "a", 1);
|
|
@@ -3673,7 +3674,9 @@ class SignUpButtonComponent extends ComponentBase {
|
|
|
3673
3674
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignUpButtonComponent, [{
|
|
3674
3675
|
type: Component,
|
|
3675
3676
|
args: [{ selector: "anatoly-signup-button", template: "<a [href]=\"url\" class=\"{{ classes }}\" *ngIf=\"external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<a [routerLink]=\"url\" class=\"{{ classes }}\" *ngIf=\"!external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<ng-template #contentTemplate>\r\n <span #ref><ng-content></ng-content></span>\r\n <span *ngIf=\"!ref.innerHTML.trim()\">Sign Up</span>\r\n</ng-template>\r\n" }]
|
|
3676
|
-
}], function () { return []; },
|
|
3677
|
+
}], function () { return []; }, { qs: [{
|
|
3678
|
+
type: Input
|
|
3679
|
+
}] }); })();
|
|
3677
3680
|
|
|
3678
3681
|
/*
|
|
3679
3682
|
<file>
|
|
@@ -4091,13 +4094,14 @@ const _c0$c = ["*"];
|
|
|
4091
4094
|
class SignInButtonComponent extends ComponentBase {
|
|
4092
4095
|
url;
|
|
4093
4096
|
external = false;
|
|
4097
|
+
qs;
|
|
4094
4098
|
constructor() {
|
|
4095
4099
|
super();
|
|
4096
|
-
this.url = MSALConfig.ui.signin;
|
|
4100
|
+
this.url = MSALConfig.ui.signin + (this.qs ? this.qs : '');
|
|
4097
4101
|
this.external = this.url?.indexOf('http') > -1;
|
|
4098
4102
|
}
|
|
4099
4103
|
static ɵfac = function SignInButtonComponent_Factory(t) { return new (t || SignInButtonComponent)(); };
|
|
4100
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignInButtonComponent, selectors: [["anatoly-signin-button"]], features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0$c, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignInButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
4104
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignInButtonComponent, selectors: [["anatoly-signin-button"]], inputs: { qs: "qs" }, features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0$c, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignInButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
4101
4105
|
i0.ɵɵprojectionDef();
|
|
4102
4106
|
i0.ɵɵtemplate(0, SignInButtonComponent_a_0_Template, 2, 5, "a", 0);
|
|
4103
4107
|
i0.ɵɵtemplate(1, SignInButtonComponent_a_1_Template, 2, 5, "a", 1);
|
|
@@ -4111,7 +4115,9 @@ class SignInButtonComponent extends ComponentBase {
|
|
|
4111
4115
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignInButtonComponent, [{
|
|
4112
4116
|
type: Component,
|
|
4113
4117
|
args: [{ selector: "anatoly-signin-button", template: "<a [href]=\"url\" class=\"{{ classes }}\" *ngIf=\"external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<a [routerLink]=\"url\" class=\"{{ classes }}\" *ngIf=\"!external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<ng-template #contentTemplate>\r\n <span #ref><ng-content></ng-content></span>\r\n <span *ngIf=\"!ref.innerHTML.trim()\">Sign In</span>\r\n</ng-template>\r\n" }]
|
|
4114
|
-
}], function () { return []; },
|
|
4118
|
+
}], function () { return []; }, { qs: [{
|
|
4119
|
+
type: Input
|
|
4120
|
+
}] }); })();
|
|
4115
4121
|
|
|
4116
4122
|
/*
|
|
4117
4123
|
<file>
|
|
@@ -4178,13 +4184,14 @@ const _c0$b = ["*"];
|
|
|
4178
4184
|
class SignOutButtonComponent extends ComponentBase {
|
|
4179
4185
|
url;
|
|
4180
4186
|
external = false;
|
|
4187
|
+
qs;
|
|
4181
4188
|
constructor() {
|
|
4182
4189
|
super();
|
|
4183
|
-
this.url = MSALConfig.ui.signout;
|
|
4190
|
+
this.url = MSALConfig.ui.signout + (this.qs ? this.qs : '');
|
|
4184
4191
|
this.external = this.url?.indexOf('http') > -1;
|
|
4185
4192
|
}
|
|
4186
4193
|
static ɵfac = function SignOutButtonComponent_Factory(t) { return new (t || SignOutButtonComponent)(); };
|
|
4187
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignOutButtonComponent, selectors: [["anatoly-signout-button"]], features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0$b, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignOutButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
4194
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignOutButtonComponent, selectors: [["anatoly-signout-button"]], inputs: { qs: "qs" }, features: [i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c0$b, decls: 4, vars: 2, consts: [[3, "href", "class", 4, "ngIf"], [3, "routerLink", "class", 4, "ngIf"], ["contentTemplate", ""], [3, "href"], [4, "ngTemplateOutlet"], [3, "routerLink"], ["ref", ""], [4, "ngIf"]], template: function SignOutButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
4188
4195
|
i0.ɵɵprojectionDef();
|
|
4189
4196
|
i0.ɵɵtemplate(0, SignOutButtonComponent_a_0_Template, 2, 5, "a", 0);
|
|
4190
4197
|
i0.ɵɵtemplate(1, SignOutButtonComponent_a_1_Template, 2, 5, "a", 1);
|
|
@@ -4198,7 +4205,9 @@ class SignOutButtonComponent extends ComponentBase {
|
|
|
4198
4205
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignOutButtonComponent, [{
|
|
4199
4206
|
type: Component,
|
|
4200
4207
|
args: [{ selector: "anatoly-signout-button", template: "<a [href]=\"url\" class=\"{{ classes }}\" *ngIf=\"external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<a [routerLink]=\"url\" class=\"{{ classes }}\" *ngIf=\"!external\">\r\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\r\n</a>\r\n\r\n<ng-template #contentTemplate>\r\n <span #ref><ng-content></ng-content></span>\r\n <span *ngIf=\"!ref.innerHTML.trim()\">Sign Out</span>\r\n</ng-template>\r\n" }]
|
|
4201
|
-
}], function () { return []; },
|
|
4208
|
+
}], function () { return []; }, { qs: [{
|
|
4209
|
+
type: Input
|
|
4210
|
+
}] }); })();
|
|
4202
4211
|
|
|
4203
4212
|
/*
|
|
4204
4213
|
<file>
|