@the-liberators/ngx-scrumteamsurvey-tools 2.2.99 → 2.3.2

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,17 @@
1
+ import { Router } from '@angular/router';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TabNavigatorComponent {
4
+ private router;
5
+ itemSet: import("@angular/core").WritableSignal<TabItemDto[]>;
6
+ set items(value: TabItemDto[]);
7
+ constructor(router: Router);
8
+ updateActiveItem(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabNavigatorComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabNavigatorComponent, "tabnavigator", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
11
+ }
12
+ export declare class TabItemDto {
13
+ constructor(label: string, url: string);
14
+ label: string;
15
+ url: string;
16
+ active: boolean;
17
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tabnavigator.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/router";
5
+ export declare class TabNavigatorModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabNavigatorModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TabNavigatorModule, [typeof i1.TabNavigatorComponent], [typeof i2.CommonModule, typeof i3.RouterModule], [typeof i1.TabNavigatorComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<TabNavigatorModule>;
9
+ }
@@ -1,5 +1,6 @@
1
1
  export declare class TeamMetaDataDto {
2
2
  name: string;
3
+ notificationEmail: string;
3
4
  teamKey: string;
4
5
  isSubscribed: boolean;
5
6
  subscriptionTier: SubscriptionTierEnum;
@@ -7,9 +8,22 @@ export declare class TeamMetaDataDto {
7
8
  retakeUrl: string;
8
9
  lowTrustMode: boolean;
9
10
  pincode: string;
11
+ improvementGoal: string;
12
+ improvementGoals: TeamMetaDataImprovementGoalDto[];
13
+ teamTypes: TeamMetaDataTeamTypeDto[];
10
14
  }
11
15
  export declare enum SubscriptionTierEnum {
12
16
  Freemium = "Freemium",
13
17
  Professional = "Professional",
14
18
  Enterprise = "Enterprise"
15
19
  }
20
+ export declare class TeamMetaDataImprovementGoalDto {
21
+ key: string;
22
+ name: string;
23
+ selected: boolean;
24
+ }
25
+ export declare class TeamMetaDataTeamTypeDto {
26
+ key: string;
27
+ name: string;
28
+ selected: boolean;
29
+ }
@@ -0,0 +1,2 @@
1
+ import { ValidatorFn } from '@angular/forms';
2
+ export declare function maxSelectedValidator(maximum: number): ValidatorFn;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-liberators/ngx-scrumteamsurvey-tools",
3
- "version": "2.2.99",
3
+ "version": "2.3.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.9",
6
6
  "@angular/core": "^18.2.9",
package/public-api.d.ts CHANGED
@@ -67,6 +67,10 @@ export * from './lib/components/snapshot-inviteurls/snapshot-inviteurls.componen
67
67
  export * from './lib/components/snapshot-inviteurls/snapshot-inviteurls.module';
68
68
  export * from './lib/components/snapshot-inviteurls/snapshot-inviteurls.component';
69
69
  export * from './lib/components/snapshot-inviteurls/snapshot-inviteurls.module';
70
+ export * from './lib/components/tabnavigator/tabnavigator.component';
71
+ export * from './lib/components/tabnavigator/tabnavigator.module';
72
+ export * from './lib/components/tabnavigator/tabnavigator.component';
73
+ export * from './lib/components/tabnavigator/tabnavigator.module';
70
74
  export * from './lib/dialogs/dialog-account/account.service';
71
75
  export * from './lib/dialogs/dialog-account/dialog-account.component';
72
76
  export * from './lib/dialogs/dialog-account/dialog-account.module';
@@ -196,6 +200,7 @@ export * from './lib/results/services/terms.service';
196
200
  export * from './lib/results/services/trend.service';
197
201
  export * from './lib/results/services/userProfile.service';
198
202
  export * from './lib/validators/domainValidator';
203
+ export * from './lib/validators/maxSelectedValidator';
199
204
  export * from './lib/validators/matchInputValidator';
200
205
  export * from './lib/viewModel/interfaces';
201
206
  export * from './lib/viewModel/reloadStrategies/noReloadStrategy';