@the-liberators/ngx-scrumteamsurvey-tools 2.3.1 → 2.3.3
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/components/select-list/select-list.component.mjs +11 -3
- package/esm2022/lib/components/tabnavigator/tabnavigator.component.mjs +36 -0
- package/esm2022/lib/components/tabnavigator/tabnavigator.module.mjs +32 -0
- package/esm2022/lib/results/components/nav-button/nav-button.component.mjs +2 -2
- package/esm2022/lib/results/models/teamMetaDataDto.mjs +5 -1
- package/esm2022/lib/validators/matchInputValidator.mjs +1 -1
- package/esm2022/public-api.mjs +5 -1
- package/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs +111 -42
- package/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs.map +1 -1
- package/lib/components/select-list/select-list.component.d.ts +2 -1
- package/lib/components/tabnavigator/tabnavigator.component.d.ts +17 -0
- package/lib/components/tabnavigator/tabnavigator.module.d.ts +10 -0
- package/lib/results/models/teamMetaDataDto.d.ts +14 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
|
@@ -3,6 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class SelectListComponent implements ControlValueAccessor {
|
|
4
4
|
options: SelectListItem[];
|
|
5
5
|
multiple: boolean;
|
|
6
|
+
noAnswerOption: SelectListItem;
|
|
6
7
|
disabled: boolean;
|
|
7
8
|
constructor();
|
|
8
9
|
select(option: SelectListItem): void;
|
|
@@ -13,7 +14,7 @@ export declare class SelectListComponent implements ControlValueAccessor {
|
|
|
13
14
|
onChange: (options: SelectListItem[]) => void;
|
|
14
15
|
onTouched: () => void;
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectListComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectListComponent, "select-list", never, { "options": { "alias": "options"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectListComponent, "select-list", never, { "options": { "alias": "options"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "noAnswerOption": { "alias": "noAnswerOption"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
18
|
}
|
|
18
19
|
export declare class SelectListItem {
|
|
19
20
|
constructor(key: string, label: string, selected?: boolean);
|
|
@@ -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,10 @@
|
|
|
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
|
+
import * as i4 from "../../pipes/slugify/ngx-slugify.module";
|
|
6
|
+
export declare class TabNavigatorModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabNavigatorModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TabNavigatorModule, [typeof i1.TabNavigatorComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.SlugifyPipeModule], [typeof i1.TabNavigatorComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TabNavigatorModule>;
|
|
10
|
+
}
|
|
@@ -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
|
+
}
|
package/package.json
CHANGED
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';
|