@annalib/anna-core 5.1.6 → 5.1.7

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.
@@ -0,0 +1,6 @@
1
+ export declare enum UserActivationStatus {
2
+ activationEmailSent = "ActivationEmailSent",
3
+ activationEmailReSent = "ActivationEmailResent",
4
+ ResendActivationEmail = "ResendActivationEmail",
5
+ lastSignedIn = "LastSignedIn"
6
+ }
@@ -10,6 +10,7 @@ import { radioButtonModel, TooltipModel } from '../../../anna-core-shared-lib/mo
10
10
  import { AnnaSortService } from '../../../anna-core-shared-lib/services/anna-sort.service';
11
11
  import { AnnaFilterService } from '../../../anna-core-shared-lib/services/anna-filter.service';
12
12
  import { BehaviorSubject } from 'rxjs';
13
+ import { UserActivationStatus } from '../../../anna-core-shared-lib/models/anna-manage-users.model';
13
14
  import * as i0 from "@angular/core";
14
15
  export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnChanges, AfterViewChecked {
15
16
  private cdRef;
@@ -151,8 +152,9 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
151
152
  userActionTableMetaData: {
152
153
  lastEmailResentAt: string;
153
154
  passwordValidity: string;
154
- status: string;
155
+ status: UserActivationStatus;
155
156
  };
157
+ UserActivationStatus: typeof UserActivationStatus;
156
158
  constructor(cdRef: ChangeDetectorRef, annaSortService: AnnaSortService, annaDateTimeFormatService: AnnaDateTimeFormatService, annaFilterService: AnnaFilterService);
157
159
  ngAfterViewChecked(): void;
158
160
  ngOnInit(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "5.1.6",
3
+ "version": "5.1.7",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "2.0.3",
6
6
  "@angular/common": "^13.2.0",
package/public-api.d.ts CHANGED
@@ -17,6 +17,7 @@ export * from "./lib/anna-core-shared-lib/models/anna-global-dropdown-config.mod
17
17
  export * from "./lib/anna-core-shared-lib/models/anna-non-editable-gt-models";
18
18
  export * from "./lib/anna-core-shared-lib/models/anna-tooltip.model";
19
19
  export * from "./lib/anna-core-shared-lib/models/anna-sort.model";
20
+ export * from "./lib/anna-core-shared-lib/models/anna-manage-users.model";
20
21
  export * from "./lib/anna-core-shared-lib/constants/shared.constant";
21
22
  export * from "./lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe";
22
23
  export * from "./lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe";