@the-liberators/ngx-scrumteamsurvey-tools 2.3.126 → 2.3.130
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/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the-liberators/ngx-scrumteamsurvey-tools",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.130",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^21.
|
|
6
|
-
"@angular/core": "^21.0
|
|
7
|
-
"@angular/forms": "^21.0
|
|
5
|
+
"@angular/common": "^21.1.8",
|
|
6
|
+
"@angular/core": "^21.1.0",
|
|
7
|
+
"@angular/forms": "^21.1.0",
|
|
8
8
|
"@swimlane/ngx-charts": "^23.1.0",
|
|
9
|
-
"@angular/material": "^21.0
|
|
10
|
-
"@angular/material-moment-adapter": "^21.0
|
|
9
|
+
"@angular/material": "^21.1.0",
|
|
10
|
+
"@angular/material-moment-adapter": "^21.1.0",
|
|
11
11
|
"moment": "^2.30.1",
|
|
12
12
|
"ngx-webstorage-service": "^5.0.0",
|
|
13
13
|
"rxjs": "7.8.2",
|
|
@@ -556,7 +556,9 @@ declare enum InterventionFilterType {
|
|
|
556
556
|
}
|
|
557
557
|
declare enum TeamSortEnum {
|
|
558
558
|
name = "Name",
|
|
559
|
-
created = "Created"
|
|
559
|
+
created = "Created",
|
|
560
|
+
newestScan = "NewestScan",
|
|
561
|
+
oldestScan = "OldestScan"
|
|
560
562
|
}
|
|
561
563
|
declare enum TeamStatusEnum {
|
|
562
564
|
active = "Active",
|
|
@@ -1838,6 +1840,9 @@ declare class TopicSelectorModule {
|
|
|
1838
1840
|
declare class ProgressbarComponent {
|
|
1839
1841
|
private userSettingsService;
|
|
1840
1842
|
factorScore: FactorScoreDto;
|
|
1843
|
+
extraClass: string;
|
|
1844
|
+
name: string;
|
|
1845
|
+
showSampleSize: boolean;
|
|
1841
1846
|
confidenceAvailable: boolean;
|
|
1842
1847
|
direction: string;
|
|
1843
1848
|
segmentTeamMembers: boolean;
|
|
@@ -1852,7 +1857,7 @@ declare class ProgressbarComponent {
|
|
|
1852
1857
|
ngOnInit(): void;
|
|
1853
1858
|
ngOnDestroy(): void;
|
|
1854
1859
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressbarComponent, never>;
|
|
1855
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressbarComponent, "progressbar", never, { "factorScore": { "alias": "factorScore"; "required": false; }; }, {}, never, never, false, never>;
|
|
1860
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressbarComponent, "progressbar", never, { "factorScore": { "alias": "factorScore"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "name": { "alias": "name"; "required": false; }; "showSampleSize": { "alias": "showSampleSize"; "required": false; }; }, {}, never, never, false, never>;
|
|
1856
1861
|
}
|
|
1857
1862
|
|
|
1858
1863
|
declare class ProgressbarModule {
|
|
@@ -2042,6 +2047,7 @@ declare class ModelFactorBenchmarkComponent implements OnInit {
|
|
|
2042
2047
|
factor: FactorScoreDto;
|
|
2043
2048
|
benchmark: FactorScoreCollectionBenchmarkDto;
|
|
2044
2049
|
ngOnInit(): Promise<void>;
|
|
2050
|
+
createFactorScore(factor: FactorScoreDto): FactorScoreDto;
|
|
2045
2051
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorBenchmarkComponent, never>;
|
|
2046
2052
|
static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorBenchmarkComponent, "model-factor-benchmark", never, { "factor": { "alias": "factor"; "required": false; }; "benchmark": { "alias": "benchmark"; "required": false; }; }, {}, never, never, false, never>;
|
|
2047
2053
|
}
|
|
@@ -2064,6 +2070,7 @@ declare class ModelFactorBreakdownComponent implements OnInit {
|
|
|
2064
2070
|
prevPage(): void;
|
|
2065
2071
|
hasNext(): boolean;
|
|
2066
2072
|
hasPrev(): boolean;
|
|
2073
|
+
createFactorScore(point: PointDto): FactorScoreDto;
|
|
2067
2074
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorBreakdownComponent, never>;
|
|
2068
2075
|
static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorBreakdownComponent, "model-factor-breakdown", never, { "factor": { "alias": "factor"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, {}, never, never, false, never>;
|
|
2069
2076
|
}
|