@osovitny/anatoly 2.15.11 → 2.15.12
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/esm2020/lib/ui/components/identity/signin-button.component.mjs +3 -2
- package/esm2020/lib/ui/components/identity/signout-button.component.mjs +3 -2
- package/esm2020/lib/ui/components/identity/signup-button.component.mjs +3 -2
- package/esm2020/lib/ui/ui.module.mjs +5 -1
- package/fesm2015/osovitny-anatoly.mjs +7 -4
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +7 -4
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/ui.module.d.ts +7 -6
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import js_beautify from 'js-beautify';
|
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
3
|
import { Injectable, Pipe, APP_INITIALIZER, Injector, NgModule, Inject, Component, Input, EventEmitter, Output, ViewEncapsulation, Directive, ViewChild, HostBinding, HostListener, Optional, SkipSelf } from '@angular/core';
|
|
4
4
|
import * as i1 from '@angular/router';
|
|
5
|
-
import { NavigationEnd, NavigationStart, NavigationCancel, NavigationError } from '@angular/router';
|
|
5
|
+
import { NavigationEnd, NavigationStart, NavigationCancel, NavigationError, RouterModule } from '@angular/router';
|
|
6
6
|
import * as i1$3 from '@angular/common/http';
|
|
7
7
|
import { HttpResponse, HttpClient } from '@angular/common/http';
|
|
8
8
|
import { tap, map } from 'rxjs/operators';
|
|
@@ -2423,7 +2423,7 @@ SignUpButtonComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignU
|
|
|
2423
2423
|
i0.ɵɵelementEnd();
|
|
2424
2424
|
} if (rf & 2) {
|
|
2425
2425
|
i0.ɵɵclassMap(ctx.classbtn);
|
|
2426
|
-
} }, encapsulation: 2 });
|
|
2426
|
+
} }, dependencies: [i1.RouterLink], encapsulation: 2 });
|
|
2427
2427
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignUpButtonComponent, [{
|
|
2428
2428
|
type: Component,
|
|
2429
2429
|
args: [{ selector: "anatoly-signup-button", template: "<a routerLink=\"iam/signup\" class=\"{{classbtn}}\">Sign Up</a>\r\n" }]
|
|
@@ -2790,7 +2790,7 @@ SignInButtonComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SignI
|
|
|
2790
2790
|
i0.ɵɵelementEnd();
|
|
2791
2791
|
} if (rf & 2) {
|
|
2792
2792
|
i0.ɵɵclassMap(ctx.classbtn);
|
|
2793
|
-
} }, encapsulation: 2 });
|
|
2793
|
+
} }, dependencies: [i1.RouterLink], encapsulation: 2 });
|
|
2794
2794
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignInButtonComponent, [{
|
|
2795
2795
|
type: Component,
|
|
2796
2796
|
args: [{ selector: "anatoly-signin-button", template: "<a routerLink=\"iam/signin\" class=\"{{classbtn}}\">Sign In</a>\r\n" }]
|
|
@@ -2823,7 +2823,7 @@ SignOutButtonComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: Sign
|
|
|
2823
2823
|
i0.ɵɵelementEnd();
|
|
2824
2824
|
} if (rf & 2) {
|
|
2825
2825
|
i0.ɵɵclassMap(ctx.classbtn);
|
|
2826
|
-
} }, encapsulation: 2 });
|
|
2826
|
+
} }, dependencies: [i1.RouterLink], encapsulation: 2 });
|
|
2827
2827
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SignOutButtonComponent, [{
|
|
2828
2828
|
type: Component,
|
|
2829
2829
|
args: [{ selector: "anatoly-signout-button", template: "<a routerLink=\"iam/signout\" class=\"{{classbtn}}\">Sign Out</a>\r\n" }]
|
|
@@ -5589,6 +5589,7 @@ class AnatolyUIModule {
|
|
|
5589
5589
|
AnatolyUIModule.ɵfac = function AnatolyUIModule_Factory(t) { return new (t || AnatolyUIModule)(); };
|
|
5590
5590
|
AnatolyUIModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: AnatolyUIModule });
|
|
5591
5591
|
AnatolyUIModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
|
|
5592
|
+
RouterModule,
|
|
5592
5593
|
ReactiveFormsModule,
|
|
5593
5594
|
FormsModule,
|
|
5594
5595
|
NgxCaptchaModule,
|
|
@@ -5601,6 +5602,7 @@ AnatolyUIModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonMo
|
|
|
5601
5602
|
args: [{
|
|
5602
5603
|
imports: [
|
|
5603
5604
|
CommonModule,
|
|
5605
|
+
RouterModule,
|
|
5604
5606
|
ReactiveFormsModule,
|
|
5605
5607
|
FormsModule,
|
|
5606
5608
|
NgxCaptchaModule,
|
|
@@ -5654,6 +5656,7 @@ AnatolyUIModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonMo
|
|
|
5654
5656
|
//Validation
|
|
5655
5657
|
FormValidationSummaryComponent,
|
|
5656
5658
|
ItemValidationSummaryComponent], imports: [CommonModule,
|
|
5659
|
+
RouterModule,
|
|
5657
5660
|
ReactiveFormsModule,
|
|
5658
5661
|
FormsModule,
|
|
5659
5662
|
NgxCaptchaModule,
|