@the-liberators/ngx-scrumteamsurvey-tools 2.3.88 → 2.3.89

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { EventEmitter, InjectionToken, OnInit, OnDestroy, PipeTransform, ElementRef, SimpleChanges, ErrorHandler, NgZone, DoCheck } from '@angular/core';
2
+ import { EventEmitter, InjectionToken, OnInit, OnDestroy, PipeTransform, ElementRef, SimpleChanges, DoCheck, ErrorHandler, NgZone } from '@angular/core';
3
3
  import * as i3$1 from '@angular/forms';
4
4
  import { FormGroup, FormBuilder, FormGroupDirective, FormControl, ControlValueAccessor, UntypedFormGroup, UntypedFormControl, UntypedFormBuilder, FormArray, ValidatorFn } from '@angular/forms';
5
5
  import * as i3$2 from '@angular/material/snack-bar';
@@ -20,7 +20,7 @@ import * as i15 from '@angular/material/paginator';
20
20
  import { PageEvent } from '@angular/material/paginator';
21
21
  import * as i2 from '@angular/material/select';
22
22
  import * as i2$1 from '@angular/common';
23
- import { Location, DatePipe } from '@angular/common';
23
+ import { DatePipe, Location } from '@angular/common';
24
24
  import * as i6 from '@angular/material/input';
25
25
  import * as i22 from '@angular/material/datepicker';
26
26
  import * as i2$3 from '@angular/material/autocomplete';
@@ -31,13 +31,13 @@ import * as i4 from '@angular/material/form-field';
31
31
  import * as i5 from '@angular/cdk/clipboard';
32
32
  import { Clipboard } from '@angular/cdk/clipboard';
33
33
  import * as i7 from '@angular/material/checkbox';
34
- import { AuthService } from '@auth0/auth0-angular';
35
- import { ComponentType } from '@angular/cdk/portal';
36
34
  import * as i51 from '@swimlane/ngx-charts';
37
35
  import { LegendPosition } from '@swimlane/ngx-charts';
36
+ import { AuthService } from '@auth0/auth0-angular';
38
37
  import * as i59 from '@angular/material/slide-toggle';
39
38
  import * as i62 from '@angular/material/progress-spinner';
40
39
  import * as i65 from '@ncstate/sat-popover';
40
+ import { ComponentType } from '@angular/cdk/portal';
41
41
 
42
42
  declare abstract class ComponentBase {
43
43
  protected snackBar: MatSnackBar;
@@ -238,6 +238,7 @@ declare class FactorStructureDto {
238
238
  name: string;
239
239
  color: string;
240
240
  core: boolean;
241
+ indicatorPosition: string;
241
242
  description: string;
242
243
  questionCount: number;
243
244
  ownQuestionCount: number;
@@ -507,6 +508,14 @@ declare class GuideSettingsDto {
507
508
  declare class ModelFilter {
508
509
  constructor(interventionFilterType: InterventionFilterType);
509
510
  interventionFilter: InterventionFilterType;
511
+ advanced: boolean;
512
+ layers: ModelVisualizationLayer[];
513
+ }
514
+ declare class ModelVisualizationLayer {
515
+ constructor(key: string, label: string, selected?: boolean);
516
+ key: string;
517
+ label: string;
518
+ selected: boolean;
510
519
  }
511
520
  declare class TeamListFilter extends PagingOptions {
512
521
  constructor();
@@ -1813,14 +1822,30 @@ declare class TopicSelectorModule {
1813
1822
  static ɵinj: i0.ɵɵInjectorDeclaration<TopicSelectorModule>;
1814
1823
  }
1815
1824
 
1816
- declare class AccountService$1 {
1817
- private http;
1818
- private config;
1819
- constructor(http: HttpClient, config: ApiConfig);
1820
- sendResetPassword(email: string): Observable<any>;
1821
- getManageUrl(): Observable<any>;
1822
- static ɵfac: i0.ɵɵFactoryDeclaration<AccountService$1, never>;
1823
- static ɵprov: i0.ɵɵInjectableDeclaration<AccountService$1>;
1825
+ declare class ProgressbarComponent {
1826
+ private userSettingsService;
1827
+ factorScore: FactorScoreDto;
1828
+ confidenceAvailable: boolean;
1829
+ direction: string;
1830
+ segmentTeamMembers: boolean;
1831
+ segmentSupporters: boolean;
1832
+ segmentStakeholders: boolean;
1833
+ score: number;
1834
+ factorScoreWidth: number;
1835
+ factorScoreLeft: number;
1836
+ settings: UserSettingsDto;
1837
+ settingsSubscription: Subscription;
1838
+ constructor(userSettingsService: UserSettingService);
1839
+ ngOnInit(): void;
1840
+ ngOnDestroy(): void;
1841
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressbarComponent, never>;
1842
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressbarComponent, "progressbar", never, { "factorScore": { "alias": "factorScore"; "required": false; }; }, {}, never, never, false, never>;
1843
+ }
1844
+
1845
+ declare class ProgressbarModule {
1846
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressbarModule, never>;
1847
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressbarModule, [typeof ProgressbarComponent], [typeof i3.RouterModule, typeof i2$1.CommonModule, typeof i6.MatInputModule], [typeof ProgressbarComponent]>;
1848
+ static ɵinj: i0.ɵɵInjectorDeclaration<ProgressbarModule>;
1824
1849
  }
1825
1850
 
1826
1851
  interface IResultsState extends IActionState, IViewState {
@@ -1836,637 +1861,716 @@ interface ITeamReportResultsState extends IResultsState, IViewState {
1836
1861
  snapshotMetaData: SnapshotMetaDataDto;
1837
1862
  }
1838
1863
 
1839
- declare class DialogAccountComponent extends ComponentWithViewStateBase<IResultsState> {
1840
- private authService;
1841
- protected snackBar: MatSnackBar;
1842
- private accountService;
1843
- dialogRef: MatDialogRef<DialogAccountComponent>;
1864
+ declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsState> {
1844
1865
  private state;
1845
- subscriptionKey: string;
1846
- userName: string;
1847
- loading: boolean;
1848
- isAdmin: boolean;
1849
- email: string;
1850
- constructor(authService: AuthService, snackBar: MatSnackBar, accountService: AccountService$1, dialogRef: MatDialogRef<DialogAccountComponent>, state: ViewModelStateBase<IResultsState>);
1866
+ private userSettingsService;
1867
+ protected snackBar: MatSnackBar;
1868
+ factors: FactorStructureDto[];
1869
+ showIndicatorArrows: boolean;
1870
+ showModel: boolean;
1871
+ dateRange: DateRangeDto;
1872
+ deltaDateRange: DateRangeDto;
1873
+ pointCount: number;
1874
+ benchmark: string;
1875
+ pointNames: string;
1876
+ pointType: string;
1877
+ deltaTeams: number;
1878
+ deltaTeamNames: string;
1879
+ deltaAvailable: boolean;
1880
+ isLoggedIn: boolean;
1881
+ modelDefinition: ModelDefinitionDto;
1882
+ qualifiedBy: QualifiedByEnum;
1883
+ deltaType: DeltaPeriodEnum;
1884
+ isSubscriber: boolean;
1885
+ QualifiedByEnum: typeof QualifiedByEnum;
1886
+ globalNotes: string[];
1887
+ private settingsSubscription;
1888
+ settings: UserSettingsDto;
1889
+ constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar);
1851
1890
  ngOnInit(): void;
1852
- redirectToPortal(): Promise<void>;
1853
- sendPasswordReset(): void;
1854
- signout(): void;
1891
+ ngOnDestroy(): void;
1892
+ private determineScreenSize;
1855
1893
  protected onDataUpdate(data: IResultsState): void;
1856
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogAccountComponent, never>;
1857
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogAccountComponent, "ng-component", never, {}, {}, never, never, false, never>;
1858
- }
1859
- declare class OpenAccountDialogDirective {
1860
- private dialog;
1861
- constructor(dialog: MatDialog);
1862
- onClick(): void;
1863
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenAccountDialogDirective, never>;
1864
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenAccountDialogDirective, "[accountDialog]", never, {}, {}, never, never, false, never>;
1894
+ toggleView(advanced: boolean): void;
1895
+ toggleLayer(selectedLayer: ModelVisualizationLayer): void;
1896
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelCanvasComponent, never>;
1897
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelCanvasComponent, "model-canvas", never, {}, {}, never, never, false, never>;
1865
1898
  }
1866
1899
 
1867
- declare class DialogAccountModule {
1868
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogAccountModule, never>;
1869
- static ɵmod: i0.ɵɵNgModuleDeclaration<DialogAccountModule, [typeof DialogAccountComponent, typeof OpenAccountDialogDirective], [typeof i2$2.MatDialogModule, typeof i2$1.CommonModule], [typeof DialogAccountComponent, typeof OpenAccountDialogDirective]>;
1870
- static ɵinj: i0.ɵɵInjectorDeclaration<DialogAccountModule>;
1900
+ declare class ArrowUpdateService {
1901
+ private updateArrows;
1902
+ updateArrows$: rxjs.Observable<boolean>;
1903
+ constructor();
1904
+ triggerUpdate(): void;
1905
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrowUpdateService, never>;
1906
+ static ɵprov: i0.ɵɵInjectableDeclaration<ArrowUpdateService>;
1871
1907
  }
1872
1908
 
1873
- declare class ResetPasswordRequestDto {
1874
- email: string;
1909
+ declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<IResultsState> {
1910
+ private state;
1911
+ private userSettingsService;
1912
+ protected snackBar: MatSnackBar;
1913
+ private arrowUpdateService;
1914
+ indicator: FactorStructureDto;
1915
+ actionStatusPosition: string;
1916
+ visible: boolean;
1917
+ isInActiveLayer: boolean;
1918
+ direction: string;
1919
+ factorScore: FactorScoreDto;
1920
+ indicators: FactorStructureDto[];
1921
+ benchmark: FactorScoreCollectionBenchmarkDto;
1922
+ notes: string[];
1923
+ dataAvailable: boolean;
1924
+ delta: FactorScoreCollectionDeltaDto;
1925
+ baseUrl: string;
1926
+ expandIndicators: boolean;
1927
+ InterventionStateEnum: typeof InterventionStateEnum;
1928
+ settings: UserSettingsDto;
1929
+ private settingsSubscription;
1930
+ constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
1931
+ ngOnInit(): void;
1932
+ ngOnDestroy(): void;
1933
+ toggleIndicators(): void;
1934
+ protected onDataUpdate(data: IResultsState): void;
1935
+ private setIsInActiveLayer;
1936
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorIndicatorComponent, never>;
1937
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorIndicatorComponent, "model-factor-indicator", never, { "indicator": { "alias": "indicator"; "required": false; }; "actionStatusPosition": { "alias": "actionStatusPosition"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, never, false, never>;
1875
1938
  }
1876
1939
 
1877
- declare class ResourceDownloadService {
1878
- private http;
1879
- private config;
1880
- private baseUrl;
1881
- constructor(http: HttpClient, config: ApiConfig);
1882
- get(publicKey: string, brandingSettings: ContentBrandingDto): Promise<ResourceDownloadRedirectUrlDto>;
1883
- static ɵfac: i0.ɵɵFactoryDeclaration<ResourceDownloadService, never>;
1884
- static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDownloadService>;
1885
- }
1886
- declare class ResourceDownloadRedirectUrlDto {
1887
- cdnUrl: string;
1940
+ declare class ModelFactorCoreComponent extends ComponentWithViewStateBase<IResultsState> {
1941
+ private state;
1942
+ private userSettingsService;
1943
+ protected snackBar: MatSnackBar;
1944
+ private arrowUpdateService;
1945
+ factor: FactorStructureDto;
1946
+ allowExpand: boolean;
1947
+ expandPosition: string;
1948
+ isInActiveLayer: boolean;
1949
+ direction: string;
1950
+ factorScore: FactorScoreDto;
1951
+ indicators: FactorStructureDto[];
1952
+ benchmark: FactorScoreCollectionBenchmarkDto;
1953
+ notes: string[];
1954
+ dataAvailable: boolean;
1955
+ delta: FactorScoreCollectionDeltaDto;
1956
+ baseUrl: string;
1957
+ expandIndicators: boolean;
1958
+ InterventionStateEnum: typeof InterventionStateEnum;
1959
+ private settingsSubscription;
1960
+ settings: UserSettingsDto;
1961
+ constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
1962
+ ngOnInit(): void;
1963
+ ngOnDestroy(): void;
1964
+ toggleIndicators(): void;
1965
+ protected onDataUpdate(data: IResultsState): void;
1966
+ private setIsInActiveLayer;
1967
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorCoreComponent, never>;
1968
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorCoreComponent, "model-factor-core", never, { "factor": { "alias": "factor"; "required": false; }; "allowExpand": { "alias": "allowExpand"; "required": false; }; "expandPosition": { "alias": "expandPosition"; "required": false; }; }, {}, never, never, false, never>;
1888
1969
  }
1889
1970
 
1890
- declare class DialogResourceDownloadComponent {
1891
- private brandingProvider;
1892
- private snackBar;
1893
- private dialogRef;
1894
- private downloadService;
1895
- publicKey: string;
1896
- cdnUrl: string;
1897
- error: boolean;
1898
- private contentBranding;
1899
- constructor(brandingProvider: BrandingProvider, snackBar: MatSnackBar, data: string, dialogRef: MatDialogRef<DialogResourceDownloadComponent>, downloadService: ResourceDownloadService);
1971
+ declare class ModelFactorBenchmarkComponent implements OnInit {
1972
+ factor: FactorScoreDto;
1973
+ benchmark: FactorScoreCollectionBenchmarkDto;
1900
1974
  ngOnInit(): Promise<void>;
1901
- initiateDownload(): Promise<void>;
1902
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogResourceDownloadComponent, never>;
1903
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogResourceDownloadComponent, "ng-component", never, {}, {}, never, never, false, never>;
1904
- }
1905
- declare class OpenResourceDownloadDialogDirective {
1906
- private dialog;
1907
- publicKey: string;
1908
- constructor(dialog: MatDialog);
1909
- onClick(): void;
1910
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenResourceDownloadDialogDirective, never>;
1911
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenResourceDownloadDialogDirective, "[resourceDownloadDialog]", never, { "publicKey": { "alias": "publicKey"; "required": false; }; }, {}, never, never, false, never>;
1975
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorBenchmarkComponent, never>;
1976
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorBenchmarkComponent, "model-factor-benchmark", never, { "factor": { "alias": "factor"; "required": false; }; "benchmark": { "alias": "benchmark"; "required": false; }; }, {}, never, never, false, never>;
1912
1977
  }
1913
1978
 
1914
- declare class ResourceDownloadModule {
1915
- static ɵfac: i0.ɵɵFactoryDeclaration<ResourceDownloadModule, never>;
1916
- static ɵmod: i0.ɵɵNgModuleDeclaration<ResourceDownloadModule, [typeof DialogResourceDownloadComponent, typeof OpenResourceDownloadDialogDirective], [typeof i2$2.MatDialogModule, typeof i3$2.MatSnackBarModule, typeof BrandingModule, typeof i2$1.CommonModule], [typeof DialogResourceDownloadComponent, typeof OpenResourceDownloadDialogDirective]>;
1917
- static ɵinj: i0.ɵɵInjectorDeclaration<ResourceDownloadModule>;
1979
+ declare class ArrowComponent implements OnInit, DoCheck, OnDestroy {
1980
+ private elem;
1981
+ private arrowUpdateService;
1982
+ from: string;
1983
+ to: string;
1984
+ head: boolean;
1985
+ tail: boolean;
1986
+ text: string;
1987
+ toolTip: string;
1988
+ color: string;
1989
+ width: number;
1990
+ onlyVisible: boolean;
1991
+ fromX: number;
1992
+ fromY: number;
1993
+ toX: number;
1994
+ toY: number;
1995
+ arrowIndices: number[];
1996
+ styleLine: object[];
1997
+ styleArrowFw: object[];
1998
+ styleArrowBw: object[];
1999
+ needSwap: boolean[];
2000
+ private subscription;
2001
+ private elementPositionBackup;
2002
+ constructor(elem: ElementRef, arrowUpdateService: ArrowUpdateService);
2003
+ private getNumberOrDefault;
2004
+ private isVisible;
2005
+ private inside;
2006
+ private intersectionPoint;
2007
+ private adjustLine;
2008
+ private adjustLines;
2009
+ private getFromToPairs;
2010
+ private trackPositionChange;
2011
+ ngOnInit(): void;
2012
+ ngDoCheck(): void;
2013
+ ngOnDestroy(): void;
2014
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrowComponent, never>;
2015
+ static ɵcmp: i0.ɵɵComponentDeclaration<ArrowComponent, "arrow", never, { "from": { "alias": "from"; "required": false; }; "to": { "alias": "to"; "required": false; }; "head": { "alias": "head"; "required": false; }; "tail": { "alias": "tail"; "required": false; }; "text": { "alias": "text"; "required": false; }; "toolTip": { "alias": "toolTip"; "required": false; }; "color": { "alias": "color"; "required": false; }; "width": { "alias": "width"; "required": false; }; "onlyVisible": { "alias": "onlyVisible"; "required": false; }; "fromX": { "alias": "fromX"; "required": false; }; "fromY": { "alias": "fromY"; "required": false; }; "toX": { "alias": "toX"; "required": false; }; "toY": { "alias": "toY"; "required": false; }; }, {}, never, never, false, never>;
1918
2016
  }
1919
2017
 
1920
- declare class DialogSubscribeComponent {
1921
- private state;
1922
- subscribeUrl: string;
1923
- companyUrl: string;
1924
- title: string;
1925
- button: string;
1926
- discount: boolean;
1927
- constructor(state: ViewModelStateBase<IViewState>);
1928
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogSubscribeComponent, never>;
1929
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogSubscribeComponent, "ng-component", never, {}, {}, never, never, false, never>;
2018
+ declare class DeltaArrowComponent {
2019
+ private datePipe;
2020
+ deltaDateRangeFrom: string;
2021
+ deltaDateRangeTo: string;
2022
+ available: boolean;
2023
+ comparedTo: string;
2024
+ factorScore: FactorScoreDto;
2025
+ delta: FactorScoreCollectionDeltaDto;
2026
+ noDataIndicator: boolean;
2027
+ constructor(datePipe: DatePipe);
2028
+ ngOnInit(): void;
2029
+ static ɵfac: i0.ɵɵFactoryDeclaration<DeltaArrowComponent, never>;
2030
+ static ɵcmp: i0.ɵɵComponentDeclaration<DeltaArrowComponent, "delta-arrow", never, { "factorScore": { "alias": "factorScore"; "required": false; }; "delta": { "alias": "delta"; "required": false; }; "noDataIndicator": { "alias": "noDataIndicator"; "required": false; }; }, {}, never, never, false, never>;
1930
2031
  }
1931
2032
 
1932
- declare class OpenSubscribeDialogDirective {
1933
- private dialog;
1934
- constructor(dialog: MatDialog);
1935
- onClick(): void;
1936
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenSubscribeDialogDirective, never>;
1937
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenSubscribeDialogDirective, "[subscribeDialog]", never, {}, {}, never, never, false, never>;
2033
+ declare class BenchmarkIndicatorComponent {
2034
+ delta: number;
2035
+ benchmarkAvailable: boolean;
2036
+ factorScore: FactorScoreDto;
2037
+ constructor();
2038
+ ngOnInit(): void;
2039
+ static ɵfac: i0.ɵɵFactoryDeclaration<BenchmarkIndicatorComponent, never>;
2040
+ static ɵcmp: i0.ɵɵComponentDeclaration<BenchmarkIndicatorComponent, "benchmark-indicator", never, { "factorScore": { "alias": "factorScore"; "required": false; }; }, {}, never, never, false, never>;
1938
2041
  }
1939
2042
 
1940
- declare class DialogSubscribeModule {
1941
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogSubscribeModule, never>;
1942
- static ɵmod: i0.ɵɵNgModuleDeclaration<DialogSubscribeModule, [typeof DialogSubscribeComponent, typeof OpenSubscribeDialogDirective], [typeof i2$2.MatDialogModule, typeof i2$1.CommonModule], [typeof DialogSubscribeComponent, typeof OpenSubscribeDialogDirective]>;
1943
- static ɵinj: i0.ɵɵInjectorDeclaration<DialogSubscribeModule>;
2043
+ declare class ResultIndicatorComponent {
2044
+ qualification: string;
2045
+ result: number;
2046
+ factorScore: FactorScoreDto;
2047
+ constructor();
2048
+ ngOnInit(): void;
2049
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResultIndicatorComponent, never>;
2050
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResultIndicatorComponent, "result-indicator", never, { "factorScore": { "alias": "factorScore"; "required": false; }; }, {}, never, never, false, never>;
1944
2051
  }
1945
2052
 
1946
- declare class BackButtonDirective {
1947
- private location;
1948
- private router;
1949
- constructor(location: Location, router: Router);
1950
- onClick(): void;
1951
- static ɵfac: i0.ɵɵFactoryDeclaration<BackButtonDirective, never>;
1952
- static ɵdir: i0.ɵɵDirectiveDeclaration<BackButtonDirective, "[backButton]", never, {}, {}, never, never, false, never>;
2053
+ declare class FocusAreasComponent extends ComponentWithViewStateBase<IResultsState> {
2054
+ private state;
2055
+ protected snackBar: MatSnackBar;
2056
+ limit: number;
2057
+ focusAreas: FactorScoreDto[];
2058
+ count: number;
2059
+ baseUrl: string;
2060
+ constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2061
+ protected onDataUpdate(data: IResultsState): void;
2062
+ getCoreFactor(item: FactorScoreDto): string;
2063
+ static ɵfac: i0.ɵɵFactoryDeclaration<FocusAreasComponent, never>;
2064
+ static ɵcmp: i0.ɵɵComponentDeclaration<FocusAreasComponent, "focusareas", never, { "limit": { "alias": "limit"; "required": false; }; }, {}, never, never, false, never>;
1953
2065
  }
1954
2066
 
1955
- declare class BackButtonDirectiveModule {
1956
- static ɵfac: i0.ɵɵFactoryDeclaration<BackButtonDirectiveModule, never>;
1957
- static ɵmod: i0.ɵɵNgModuleDeclaration<BackButtonDirectiveModule, [typeof BackButtonDirective], never, [typeof BackButtonDirective]>;
1958
- static ɵinj: i0.ɵɵInjectorDeclaration<BackButtonDirectiveModule>;
1959
- }
1960
-
1961
- declare class ClickableTooltipDirective {
1962
- private matTooltip;
1963
- onClick(): void;
1964
- static ɵfac: i0.ɵɵFactoryDeclaration<ClickableTooltipDirective, never>;
1965
- static ɵdir: i0.ɵɵDirectiveDeclaration<ClickableTooltipDirective, "[matTooltip]", never, {}, {}, never, never, true, never>;
1966
- }
1967
-
1968
- declare class GuardsModule {
1969
- static ɵfac: i0.ɵɵFactoryDeclaration<GuardsModule, never>;
1970
- static ɵmod: i0.ɵɵNgModuleDeclaration<GuardsModule, never, never, never>;
1971
- static ɵinj: i0.ɵɵInjectorDeclaration<GuardsModule>;
1972
- }
1973
-
1974
- declare class ValidChangeTokenGuard implements CanActivate {
1975
- private router;
1976
- constructor(router: Router);
1977
- canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
1978
- static ɵfac: i0.ɵɵFactoryDeclaration<ValidChangeTokenGuard, never>;
1979
- static ɵprov: i0.ɵɵInjectableDeclaration<ValidChangeTokenGuard>;
1980
- }
1981
-
1982
- declare class ValidKeyGuard implements CanActivate {
1983
- private router;
1984
- constructor(router: Router);
1985
- canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
1986
- static ɵfac: i0.ɵɵFactoryDeclaration<ValidKeyGuard, never>;
1987
- static ɵprov: i0.ɵɵInjectableDeclaration<ValidKeyGuard>;
1988
- }
1989
-
1990
- declare class ValidKeySnapshotKeyGuard implements CanActivate {
1991
- private router;
1992
- constructor(router: Router);
1993
- canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
1994
- static ɵfac: i0.ɵɵFactoryDeclaration<ValidKeySnapshotKeyGuard, never>;
1995
- static ɵprov: i0.ɵɵInjectableDeclaration<ValidKeySnapshotKeyGuard>;
1996
- }
1997
-
1998
- declare class ValidKeyTeamKeyGuard implements CanActivate {
1999
- private router;
2000
- constructor(router: Router);
2001
- canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
2002
- static ɵfac: i0.ɵɵFactoryDeclaration<ValidKeyTeamKeyGuard, never>;
2003
- static ɵprov: i0.ɵɵInjectableDeclaration<ValidKeyTeamKeyGuard>;
2067
+ declare class ImpactIndicatorComponent {
2068
+ private datePipe;
2069
+ factorScore: FactorScoreDto;
2070
+ constructor(datePipe: DatePipe);
2071
+ ngOnInit(): void;
2072
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImpactIndicatorComponent, never>;
2073
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImpactIndicatorComponent, "impact-indicator", never, { "factorScore": { "alias": "factorScore"; "required": false; }; }, {}, never, never, false, never>;
2004
2074
  }
2005
2075
 
2006
- declare class ErrorDto {
2076
+ declare class AgeIndicatorComponent implements OnInit {
2077
+ lastMeasured: Date;
2078
+ lastMeasuredMonths: number;
2079
+ lastMeasuredTooltip: string;
2007
2080
  constructor();
2008
- error: string;
2009
- url: string;
2010
- userAgent: string;
2011
- stackTrace: string;
2012
- serverStackTrace: string;
2013
- details: ErrorDetailDto[];
2014
- loggingSeverity: LoggingSeverityEnum;
2015
- }
2016
- declare class ApiErrorDto {
2017
- code: number;
2018
- type: string;
2019
- message: string;
2020
- stack: string;
2021
- loggingSeverity: LoggingSeverityEnum;
2022
- }
2023
- declare class ErrorDetailDto {
2024
- type: string;
2025
- value: any;
2026
- }
2027
- declare enum LoggingSeverityEnum {
2028
- information = 0,
2029
- warning = 1,
2030
- exception = 2
2081
+ ngOnInit(): void;
2082
+ static ɵfac: i0.ɵɵFactoryDeclaration<AgeIndicatorComponent, never>;
2083
+ static ɵcmp: i0.ɵɵComponentDeclaration<AgeIndicatorComponent, "age-indicator", never, { "lastMeasured": { "alias": "lastMeasured"; "required": false; }; }, {}, never, never, false, never>;
2031
2084
  }
2032
2085
 
2033
- declare class ErrorServiceConfig {
2034
- private config?;
2035
- constructor(config?: ErrorServiceConfigDto);
2036
- set(config: ErrorServiceConfigDto): void;
2037
- get(): ErrorServiceConfigDto;
2038
- static ɵfac: i0.ɵɵFactoryDeclaration<ErrorServiceConfig, [{ optional: true; }]>;
2039
- static ɵprov: i0.ɵɵInjectableDeclaration<ErrorServiceConfig>;
2040
- }
2041
- declare class ErrorServiceConfigDto {
2042
- errorSink: boolean;
2043
- endpoint: string;
2044
- enabled: boolean;
2086
+ declare class RoadmapComponent extends ComponentWithViewStateBase<IResultsState> {
2087
+ private state;
2088
+ protected snackBar: MatSnackBar;
2089
+ show: boolean;
2090
+ subscribeUrl: string;
2091
+ constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2092
+ protected onDataUpdate(data: IResultsState): void;
2093
+ static ɵfac: i0.ɵɵFactoryDeclaration<RoadmapComponent, never>;
2094
+ static ɵcmp: i0.ɵɵComponentDeclaration<RoadmapComponent, "roadmap", never, {}, {}, never, never, false, never>;
2045
2095
  }
2046
- declare const ErrorConfigToken: InjectionToken<ErrorServiceConfigDto>;
2047
2096
 
2048
- declare class FrontAndBackendErrorHandler implements ErrorHandler {
2049
- private router;
2050
- private zone;
2051
- private http;
2052
- private config;
2053
- constructor(router: Router, zone: NgZone, http: HttpClient, config: ErrorServiceConfig);
2054
- handleError(originError: any): void;
2055
- static ɵfac: i0.ɵɵFactoryDeclaration<FrontAndBackendErrorHandler, never>;
2056
- static ɵprov: i0.ɵɵInjectableDeclaration<FrontAndBackendErrorHandler>;
2097
+ declare class TryNowProfessionalComponent extends ComponentWithViewStateBase<IResultsState> {
2098
+ private state;
2099
+ protected snackBar: MatSnackBar;
2100
+ show: boolean;
2101
+ subscribeUrl: string;
2102
+ constructor(state: ViewModelStateBase<ITeamReportResultsState>, snackBar: MatSnackBar);
2103
+ protected onDataUpdate(data: ITeamReportResultsState): void;
2104
+ static ɵfac: i0.ɵɵFactoryDeclaration<TryNowProfessionalComponent, never>;
2105
+ static ɵcmp: i0.ɵɵComponentDeclaration<TryNowProfessionalComponent, "trynow-professional", never, {}, {}, never, never, false, never>;
2057
2106
  }
2058
2107
 
2059
- declare class ErrorServiceModule {
2060
- static ɵfac: i0.ɵɵFactoryDeclaration<ErrorServiceModule, never>;
2061
- static ɵmod: i0.ɵɵNgModuleDeclaration<ErrorServiceModule, never, [typeof i3.RouterModule, typeof i2$1.CommonModule], never>;
2062
- static ɵinj: i0.ɵɵInjectorDeclaration<ErrorServiceModule>;
2108
+ declare class ModelComponent extends ComponentWithViewStateBase<IResultsState> {
2109
+ private state;
2110
+ private dialog;
2111
+ protected snackBar: MatSnackBar;
2112
+ factors: FactorStructureDto[];
2113
+ showSubFactorArrows: boolean;
2114
+ showModel: boolean;
2115
+ dateRange: DateRangeDto;
2116
+ deltaDateRange: DateRangeDto;
2117
+ coreEffects: EffectDto[];
2118
+ pointCount: number;
2119
+ benchmark: string;
2120
+ pointNames: string;
2121
+ pointType: string;
2122
+ deltaTeams: number;
2123
+ deltaTeamNames: string;
2124
+ deltaAvailable: boolean;
2125
+ isLoggedIn: boolean;
2126
+ canSwitchModels: boolean;
2127
+ modelDefinition: ModelDefinitionDto;
2128
+ qualifiedBy: QualifiedByEnum;
2129
+ deltaType: DeltaPeriodEnum;
2130
+ isSubscriber: boolean;
2131
+ QualifiedByEnum: typeof QualifiedByEnum;
2132
+ globalNotes: string[];
2133
+ constructor(state: ViewModelStateBase<IResultsState>, dialog: MatDialog, snackBar: MatSnackBar);
2134
+ ngOnInit(): void;
2135
+ private determineScreenSize;
2136
+ protected onDataUpdate(data: IResultsState): void;
2137
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelComponent, never>;
2138
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelComponent, "model", never, {}, {}, never, never, false, never>;
2063
2139
  }
2064
2140
 
2065
- declare class GuideCollectionDto {
2066
- guides: GuideDto[];
2067
- active: GuideDto;
2068
- }
2069
- declare class GuideDto {
2070
- key: string;
2071
- name: string;
2072
- steps: GuideStepDto[];
2073
- }
2074
- declare class GuideStepDto {
2075
- key: string;
2076
- title: string;
2077
- body: string;
2078
- url: string;
2079
- completed: boolean;
2080
- media: GuideStepMediaDto[];
2081
- }
2082
- declare class GuideStepMediaDto {
2083
- type: GuideMediaTypeEnum;
2084
- sourceUrl: string;
2085
- clickUrl: string;
2086
- }
2087
- declare class GuideStateDto {
2088
- constructor();
2089
- activeGuideKey: string;
2090
- completedSteps: string[];
2091
- }
2092
- declare enum GuideMediaTypeEnum {
2093
- image = "Image",
2094
- video = "Video"
2141
+ declare class QuickTipsComponent extends ComponentWithViewStateBase<IActionState> {
2142
+ private state;
2143
+ protected snackBar: MatSnackBar;
2144
+ quickTip: FeedbackQuickTipDto;
2145
+ dimensionKey: string;
2146
+ extraClass: string;
2147
+ InterventionTypeEnum: typeof InterventionTypeEnum;
2148
+ InterventionStateEnum: typeof InterventionStateEnum;
2149
+ InterventionOwnerEnum: typeof InterventionOwnerEnum;
2150
+ quickTips: FeedbackQuickTipDto[];
2151
+ tipIndex: number;
2152
+ tipCount: number;
2153
+ stateSubscription: Subscription;
2154
+ constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2155
+ nextTip(): void;
2156
+ previousTip(): void;
2157
+ protected onDataUpdate(data: IResultsState): void;
2158
+ static ɵfac: i0.ɵɵFactoryDeclaration<QuickTipsComponent, never>;
2159
+ static ɵcmp: i0.ɵɵComponentDeclaration<QuickTipsComponent, "quicktips", never, { "dimensionKey": { "alias": "dimensionKey"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, false, never>;
2095
2160
  }
2096
2161
 
2097
- declare class ImageSliderComponent {
2098
- private intervalId;
2099
- index: number;
2100
- maxIndex: number;
2101
- total: number;
2102
- items: GuideStepMediaDto[];
2162
+ declare class ModelFactorComponent extends ComponentWithViewStateBase<IResultsState> {
2163
+ private state;
2164
+ private userSettingsService;
2165
+ protected snackBar: MatSnackBar;
2166
+ dimension: FactorStructureDto;
2167
+ factorExtraClass: string;
2168
+ currentFactor: FactorScoreDto;
2169
+ filter: ModelFilter;
2170
+ direction: string;
2171
+ factorScore: FactorScoreDto;
2172
+ benchmarkScore: number;
2173
+ dimensionKey: string;
2174
+ subDimensions: FactorStructureDto[];
2175
+ benchmark: string;
2176
+ showBenchmark: boolean;
2177
+ description: string;
2178
+ notes: string[];
2179
+ confidenceAvailable: boolean;
2180
+ teamKey: string;
2181
+ effects: EffectDto[];
2182
+ points: PointDto[];
2183
+ openInterventions: number;
2184
+ completedInterventions: number;
2185
+ dataAvailable: boolean;
2186
+ score: number;
2187
+ factorScoreWidth: number;
2188
+ factorScoreLeft: number;
2189
+ feedbackAvailable: boolean;
2190
+ delta: FactorScoreCollectionDeltaDto;
2191
+ dateRange: DateRangeDto;
2192
+ impededInterventions: number;
2193
+ name: string;
2194
+ baseUrl: string;
2195
+ private subscription;
2196
+ InterventionStateEnum: typeof InterventionStateEnum;
2197
+ breakdownPage: number;
2198
+ lastMeasuredDots: Array<number>;
2199
+ lastMeasuredOpacity: number;
2200
+ lastMeasuredTooltip: string;
2201
+ constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar);
2103
2202
  ngOnInit(): void;
2104
- ngAfterContentChecked(): void;
2105
- private nextImage;
2106
- select(index: number): void;
2107
2203
  ngOnDestroy(): void;
2108
- static ɵfac: i0.ɵɵFactoryDeclaration<ImageSliderComponent, never>;
2109
- static ɵcmp: i0.ɵɵComponentDeclaration<ImageSliderComponent, "imageslider", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
2110
- }
2111
-
2112
- interface IGuideState extends IViewState {
2113
- guides: GuideCollectionDto;
2114
- }
2115
-
2116
- declare const GuidesConfigToken: InjectionToken<GuideConfigDto>;
2117
- declare class GuidesClientConfig {
2118
- private config?;
2119
- constructor(config?: GuideConfigDto);
2120
- set(config: GuideConfigDto): void;
2121
- get(): GuideConfigDto;
2122
- static ɵfac: i0.ɵɵFactoryDeclaration<GuidesClientConfig, [{ optional: true; }]>;
2123
- static ɵprov: i0.ɵɵInjectableDeclaration<GuidesClientConfig>;
2124
- }
2125
- declare class GuideConfigDto {
2126
- autoOpen: boolean;
2127
- }
2128
-
2129
- interface IGuideStateService {
2130
- activeGuideUpdated: BehaviorSubject<GuideDto>;
2131
- dismiss(): Promise<void>;
2132
- startGuide(guide: GuideDto): Promise<void>;
2133
- stepToggle(stepKey: string): Promise<void>;
2204
+ protected onDataUpdate(data: IResultsState): void;
2205
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorComponent, never>;
2206
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorComponent, "model-factor", never, { "dimension": { "alias": "dimension"; "required": false; }; "factorExtraClass": { "alias": "factorExtraClass"; "required": false; }; }, {}, never, never, false, never>;
2134
2207
  }
2135
2208
 
2136
- declare const GUIDESTATE_PROVIDER: InjectionToken<IGuideStateService>;
2137
- declare class GuidePopupService {
2209
+ declare class RecommendationComponent extends ComponentWithViewStateBase<IActionState> {
2138
2210
  private state;
2139
- private dialog;
2140
- private guideStateService;
2141
- private config;
2142
- showResumeGuideOption: BehaviorSubject<boolean>;
2143
- private activeGuide;
2144
- private guides;
2145
- private alreadyOpened;
2146
- constructor(state: ViewModelStateBase<IGuideState>, dialog: MatDialog, guideStateService: IGuideStateService, config: GuidesClientConfig);
2147
- startGuide<T>(dialogComponent: ComponentType<T>, guide: GuideDto): Promise<void>;
2148
- startGuideByKey<T>(dialogComponent: ComponentType<T>, guideKey: string): Promise<void>;
2149
- stepToggle(step: GuideStepDto): Promise<void>;
2150
- open<T>(dialogComponent: ComponentType<T>): void;
2151
- resumeGuide<T>(dialogComponent: ComponentType<T>): void;
2152
- closeWithResume(): Promise<void>;
2153
- dismiss(): Promise<void>;
2154
- static ɵfac: i0.ɵɵFactoryDeclaration<GuidePopupService, never>;
2155
- static ɵprov: i0.ɵɵInjectableDeclaration<GuidePopupService>;
2211
+ protected snackBar: MatSnackBar;
2212
+ private router;
2213
+ item: FactorScoreDto;
2214
+ howToImproveExpanded: boolean;
2215
+ researchExpanded: boolean;
2216
+ recommendations: FactorScoreDto[];
2217
+ resources: FeedbackResourceDto[];
2218
+ index: number;
2219
+ definition: string;
2220
+ influences: FactorEffectDto[];
2221
+ predictors: FactorEffectDto[];
2222
+ delta: FactorScoreCollectionDeltaDto;
2223
+ qualifiedBy: QualifiedByEnum;
2224
+ model: ModelStructureDto;
2225
+ benchmarkAvailable: boolean;
2226
+ constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar, router: Router);
2227
+ ngOnInit(): void;
2228
+ getFactor(factorKey: string): FactorStructureDto;
2229
+ protected onDataUpdate(data: IResultsState): void;
2230
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecommendationComponent, never>;
2231
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecommendationComponent, "recommendation", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, false, never>;
2156
2232
  }
2157
2233
 
2158
- declare class ResumeGuideHoverComponent extends ComponentWithViewStateBase<IGuideState> {
2234
+ declare class RecommendationsComponent extends ComponentWithViewStateBase<IActionState> {
2159
2235
  private state;
2160
- private guidePopupService;
2161
- private guideDialog;
2162
2236
  protected snackBar: MatSnackBar;
2163
- private dialog;
2164
- showResumeGuide: boolean;
2165
- constructor(state: ViewModelStateBase<IGuideState>, guidePopupService: GuidePopupService, guideDialog: ComponentType<any>, snackBar: MatSnackBar, dialog: MatDialog);
2166
- protected onDataUpdate(): void;
2167
- static ɵfac: i0.ɵɵFactoryDeclaration<ResumeGuideHoverComponent, never>;
2168
- static ɵcmp: i0.ɵɵComponentDeclaration<ResumeGuideHoverComponent, "resumeguidehover", never, {}, {}, never, never, false, never>;
2237
+ private router;
2238
+ limit: number;
2239
+ skip: number;
2240
+ recommendations: FactorScoreDto[];
2241
+ expanded: number;
2242
+ factors: ModelStructureDto;
2243
+ factorsCollection: FactorScoreCollectionDto;
2244
+ deltaDateRange: DateRangeDto;
2245
+ constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar, router: Router);
2246
+ protected onDataUpdate(data: IResultsState): void;
2247
+ private scroll;
2248
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecommendationsComponent, never>;
2249
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecommendationsComponent, "recommendations", never, { "limit": { "alias": "limit"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; }, {}, never, never, false, never>;
2169
2250
  }
2170
2251
 
2171
- declare class DialogGuideComponent extends ComponentWithViewStateBase<IGuideState> {
2252
+ declare class ModelSwitcherComponent extends ComponentWithViewStateBase<IResultsState> {
2172
2253
  private state;
2173
- guidePopupService: GuidePopupService;
2174
- private guideStateService;
2175
- private guidesDialog;
2176
2254
  protected snackBar: MatSnackBar;
2177
- private dialog;
2178
- smallScreen: boolean;
2179
- activeStep: GuideStepDto;
2180
- guide: GuideDto;
2181
- constructor(state: ViewModelStateBase<IGuideState>, guidePopupService: GuidePopupService, guideStateService: IGuideStateService, guidesDialog: ComponentType<any>, snackBar: MatSnackBar, dialog: MatDialog);
2255
+ modelDefinition: ModelDefinitionDto;
2256
+ canSwitchModels: boolean;
2257
+ constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2182
2258
  ngOnInit(): void;
2183
- toGuides(): Promise<void>;
2184
- dismiss(): Promise<void>;
2185
- handleCheckChange(item: GuideStepDto, checked: boolean): Promise<void>;
2186
- next(item: GuideStepDto): Promise<void>;
2187
- complete(item: GuideStepDto): Promise<void>;
2188
- showSteps(): boolean;
2189
- select(item: GuideStepDto): void;
2190
- isLastStep(item: GuideStepDto): boolean;
2191
- private selectNextOpenItem;
2192
- protected onDataUpdate(data: IGuideState): void;
2193
- onWindowResize(): void;
2194
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogGuideComponent, never>;
2195
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogGuideComponent, "ng-component", never, {}, {}, never, never, false, never>;
2196
- }
2197
- declare class OpenGuideDialogDirective {
2198
- private dialog;
2199
- private guidePopupService;
2200
- private guideDialog;
2201
- constructor(dialog: MatDialog, guidePopupService: GuidePopupService, guideDialog: ComponentType<any>);
2202
- onClick(): void;
2203
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenGuideDialogDirective, never>;
2204
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenGuideDialogDirective, "[guideDialog]", never, {}, {}, never, never, false, never>;
2259
+ protected onDataUpdate(data: IResultsState): void;
2260
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelSwitcherComponent, never>;
2261
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelSwitcherComponent, "model-switcher", never, {}, {}, never, never, false, never>;
2205
2262
  }
2206
- declare const DIALOG_GUIDE_TOKEN: InjectionToken<ComponentType<any>>;
2207
2263
 
2208
- declare class DialogGuidesComponent extends ComponentWithViewStateBase<IGuideState> {
2209
- private state;
2210
- guidePopupService: GuidePopupService;
2211
- private guideStateService;
2212
- private guideDialog;
2213
- dialog: MatDialog;
2214
- protected snackBar: MatSnackBar;
2215
- guides: GuideDto[];
2216
- activeGuideKey: string;
2217
- private subscription;
2218
- constructor(state: ViewModelStateBase<IGuideState>, guidePopupService: GuidePopupService, guideStateService: IGuideStateService, guideDialog: ComponentType<any>, dialog: MatDialog, snackBar: MatSnackBar);
2264
+ declare class ResearchComponent {
2265
+ constructor();
2219
2266
  ngOnInit(): void;
2220
- setActiveGuide(guide: GuideDto): Promise<void>;
2221
- protected onDataUpdate(data: IGuideState): void;
2222
- ngOnDestroy(): void;
2223
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogGuidesComponent, never>;
2224
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogGuidesComponent, "ng-component", never, {}, {}, never, never, false, never>;
2225
- }
2226
- declare class OpenGuidesDialogDirective {
2227
- private dialog;
2228
- private guidesDialog;
2229
- constructor(dialog: MatDialog, guidesDialog: ComponentType<any>);
2230
- onClick(): void;
2231
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenGuidesDialogDirective, never>;
2232
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenGuidesDialogDirective, "[guidesDialog]", never, {}, {}, never, never, false, never>;
2233
- }
2234
- declare const DIALOG_GUIDES_TOKEN: InjectionToken<ComponentType<any>>;
2235
-
2236
- declare class StartGuideDirective {
2237
- private guidePopupService;
2238
- guideKey: string;
2239
- constructor(guidePopupService: GuidePopupService);
2240
- onClick(): void;
2241
- static ɵfac: i0.ɵɵFactoryDeclaration<StartGuideDirective, never>;
2242
- static ɵdir: i0.ɵɵDirectiveDeclaration<StartGuideDirective, "[startGuide]", never, { "guideKey": { "alias": "guideKey"; "required": false; }; }, {}, never, never, false, never>;
2243
- }
2244
-
2245
- declare class GuidesModule {
2246
- static ɵfac: i0.ɵɵFactoryDeclaration<GuidesModule, never>;
2247
- static ɵmod: i0.ɵɵNgModuleDeclaration<GuidesModule, [typeof StartGuideDirective, typeof OpenGuideDialogDirective, typeof OpenGuidesDialogDirective, typeof DialogGuidesComponent, typeof ResumeGuideHoverComponent, typeof DialogGuideComponent, typeof ImageSliderComponent], [typeof i2$2.MatDialogModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i2$1.CommonModule, typeof BrandingModule, typeof CheckboxModule, typeof i9.StorageServiceModule], [typeof StartGuideDirective, typeof OpenGuideDialogDirective, typeof OpenGuidesDialogDirective, typeof DialogGuidesComponent, typeof ResumeGuideHoverComponent, typeof DialogGuideComponent, typeof ImageSliderComponent]>;
2248
- static ɵinj: i0.ɵɵInjectorDeclaration<GuidesModule>;
2267
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResearchComponent, never>;
2268
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResearchComponent, "research", never, {}, {}, never, never, false, never>;
2249
2269
  }
2250
2270
 
2251
- declare class GuideStateInBackEndService implements IGuideStateService {
2252
- private http;
2253
- private config;
2271
+ declare class DoItYourselfWorkshopsComponent extends ComponentWithViewStateBase<IActionState> {
2272
+ protected snackBar: MatSnackBar;
2254
2273
  private state;
2255
- activeGuideUpdated: BehaviorSubject<GuideDto>;
2256
- private guideState;
2257
- constructor(http: HttpClient, config: ApiConfig, state: ViewModelStateBase<IGuideState>);
2258
- dismiss(): Promise<void>;
2259
- startGuide(guide: GuideDto): Promise<void>;
2260
- stepToggle(stepKey: string): Promise<void>;
2261
- static ɵfac: i0.ɵɵFactoryDeclaration<GuideStateInBackEndService, never>;
2262
- static ɵprov: i0.ɵɵInjectableDeclaration<GuideStateInBackEndService>;
2274
+ factorScore: FactorScoreDto;
2275
+ resources: FeedbackResourceDto[];
2276
+ InterventionTypeEnum: typeof InterventionTypeEnum;
2277
+ InterventionStateEnum: typeof InterventionStateEnum;
2278
+ InterventionOwnerEnum: typeof InterventionOwnerEnum;
2279
+ private baseUrl;
2280
+ constructor(snackBar: MatSnackBar, state: ViewModelStateBase<IResultsState>);
2281
+ protected onDataUpdate(data: IResultsState): void;
2282
+ getResourceUrl(item: FeedbackResourceDto): string;
2283
+ static ɵfac: i0.ɵɵFactoryDeclaration<DoItYourselfWorkshopsComponent, never>;
2284
+ static ɵcmp: i0.ɵɵComponentDeclaration<DoItYourselfWorkshopsComponent, "doityourselfworkshops", never, { "factorScore": { "alias": "factorScore"; "required": false; }; "resources": { "alias": "resources"; "required": false; }; }, {}, never, never, false, never>;
2263
2285
  }
2264
2286
 
2265
- declare class GuideStateInBrowserService implements IGuideStateService {
2266
- private storage;
2267
- private state;
2268
- activeGuideUpdated: BehaviorSubject<GuideDto>;
2269
- private guideState;
2270
- constructor(storage: StorageService, state: ViewModelStateBase<IGuideState>);
2271
- dismiss(): Promise<void>;
2272
- startGuide(guide: GuideDto): Promise<void>;
2273
- stepToggle(stepKey: string): Promise<void>;
2274
- static ɵfac: i0.ɵɵFactoryDeclaration<GuideStateInBrowserService, never>;
2275
- static ɵprov: i0.ɵɵInjectableDeclaration<GuideStateInBrowserService>;
2287
+ declare class DoItYourselfComponent {
2288
+ constructor();
2289
+ ngOnInit(): void;
2290
+ static ɵfac: i0.ɵɵFactoryDeclaration<DoItYourselfComponent, never>;
2291
+ static ɵcmp: i0.ɵɵComponentDeclaration<DoItYourselfComponent, "doityourself", never, {}, {}, never, never, false, never>;
2276
2292
  }
2277
2293
 
2278
- declare class CallbackPipe implements PipeTransform {
2279
- transform<T>(items: any[], callback: (item: T) => boolean): T[];
2280
- static ɵfac: i0.ɵɵFactoryDeclaration<CallbackPipe, never>;
2281
- static ɵpipe: i0.ɵɵPipeDeclaration<CallbackPipe, "callback", false>;
2294
+ declare class ModelFactorBreakdownComponent implements OnInit {
2295
+ factor: {
2296
+ points: any[];
2297
+ name?: string;
2298
+ };
2299
+ pageSize: number;
2300
+ currentPage: number;
2301
+ pageCount: number;
2302
+ pagedPoints: any[];
2303
+ points: PointDto[];
2304
+ ngOnInit(): Promise<void>;
2305
+ updatePaging(): void;
2306
+ showPage(page: number): void;
2307
+ nextPage(): void;
2308
+ prevPage(): void;
2309
+ hasNext(): boolean;
2310
+ hasPrev(): boolean;
2311
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorBreakdownComponent, never>;
2312
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorBreakdownComponent, "model-factor-breakdown", never, { "factor": { "alias": "factor"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, {}, never, never, false, never>;
2282
2313
  }
2283
2314
 
2284
- declare class CallbackPipeModule {
2285
- static ɵfac: i0.ɵɵFactoryDeclaration<CallbackPipeModule, never>;
2286
- static ɵmod: i0.ɵɵNgModuleDeclaration<CallbackPipeModule, [typeof CallbackPipe], never, [typeof CallbackPipe]>;
2287
- static ɵinj: i0.ɵɵInjectorDeclaration<CallbackPipeModule>;
2315
+ declare class FooterComponent extends ComponentWithViewStateBase<IViewState> {
2316
+ private state;
2317
+ protected snackBar: MatSnackBar;
2318
+ branding: BrandingSettingsDto;
2319
+ constructor(state: ViewModelStateBase<IViewState>, snackBar: MatSnackBar);
2320
+ protected onDataUpdate(data: IViewState): void;
2321
+ static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
2322
+ static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "liberators-footer", never, {}, {}, never, never, false, never>;
2288
2323
  }
2289
2324
 
2290
- declare class DateRangePipe implements PipeTransform {
2291
- private datePipe;
2292
- constructor(datePipe: DatePipe);
2293
- transform(dateRange: DateRangeDto): string;
2294
- static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePipe, never>;
2295
- static ɵpipe: i0.ɵɵPipeDeclaration<DateRangePipe, "dateRange", false>;
2325
+ declare class FactorService {
2326
+ toSelectList(model: ModelStructureDto): SelectItem[];
2327
+ static ɵfac: i0.ɵɵFactoryDeclaration<FactorService, never>;
2328
+ static ɵprov: i0.ɵɵInjectableDeclaration<FactorService>;
2296
2329
  }
2297
2330
 
2298
- declare class DateRangePipeModule {
2299
- static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePipeModule, never>;
2300
- static ɵmod: i0.ɵɵNgModuleDeclaration<DateRangePipeModule, [typeof DateRangePipe], never, [typeof DateRangePipe]>;
2301
- static ɵinj: i0.ɵɵInjectorDeclaration<DateRangePipeModule>;
2331
+ declare class DialogSettingsComponent extends ComponentWithViewStateBase<IResultsState> {
2332
+ dialogRef: MatDialogRef<DialogSettingsComponent>;
2333
+ private factorService;
2334
+ private userSettingsService;
2335
+ protected snackBar: MatSnackBar;
2336
+ private formBuilder;
2337
+ private state;
2338
+ form: FormGroup;
2339
+ sending: boolean;
2340
+ private settings;
2341
+ factors: SelectItem[];
2342
+ isSingleTeam: boolean;
2343
+ isSubscriber: boolean;
2344
+ modelFilterSettings: ModelFilter;
2345
+ customFactorsSelected: boolean;
2346
+ benchmarkTypes: SelectItem[];
2347
+ deltaPeriods: SelectItem[];
2348
+ qualifyByTypes: SelectItem[];
2349
+ constructor(dialogRef: MatDialogRef<DialogSettingsComponent>, factorService: FactorService, userSettingsService: UserSettingService, snackBar: MatSnackBar, formBuilder: FormBuilder, state: ViewModelStateBase<IResultsState>);
2350
+ ngOnInit(): void;
2351
+ submit(): void;
2352
+ resetOverviewFactors(): void;
2353
+ verifyOverviewFactors(): void;
2354
+ private createForm;
2355
+ protected onDataUpdate(data: IResultsState): void;
2356
+ private arraysHaveSameElements;
2357
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogSettingsComponent, never>;
2358
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogSettingsComponent, "ng-component", never, {}, {}, never, never, false, never>;
2302
2359
  }
2303
-
2304
- declare class SegmentNamePipe implements PipeTransform {
2305
- constructor();
2306
- transform(segment: SegmentEnum): string;
2307
- static ɵfac: i0.ɵɵFactoryDeclaration<SegmentNamePipe, never>;
2308
- static ɵpipe: i0.ɵɵPipeDeclaration<SegmentNamePipe, "segmentName", false>;
2360
+ declare class OpenSettingsDialogDirective {
2361
+ private dialog;
2362
+ showSettingStacking: boolean;
2363
+ constructor(dialog: MatDialog);
2364
+ onClick(): void;
2365
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenSettingsDialogDirective, never>;
2366
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenSettingsDialogDirective, "[settingsDialog]", never, { "showSettingStacking": { "alias": "showSettingStacking"; "required": false; }; }, {}, never, never, false, never>;
2309
2367
  }
2310
2368
 
2311
- declare class SegmentNamePipeModule {
2312
- static ɵfac: i0.ɵɵFactoryDeclaration<SegmentNamePipeModule, never>;
2313
- static ɵmod: i0.ɵɵNgModuleDeclaration<SegmentNamePipeModule, [typeof SegmentNamePipe], never, [typeof SegmentNamePipe]>;
2314
- static ɵinj: i0.ɵɵInjectorDeclaration<SegmentNamePipeModule>;
2369
+ declare class NavButtonComponent implements OnInit, OnDestroy {
2370
+ private router;
2371
+ private brandingProvider;
2372
+ hover: boolean;
2373
+ active: boolean;
2374
+ accentColor: string;
2375
+ private paletteItems;
2376
+ private subscription;
2377
+ routerLink: string[];
2378
+ url: string;
2379
+ icon: string;
2380
+ name: string;
2381
+ alertCount: number;
2382
+ backgroundColor: string;
2383
+ color: string;
2384
+ mouseover(eventData: Event): void;
2385
+ mouseleave(eventData: Event): void;
2386
+ constructor(router: Router, brandingProvider: BrandingProvider);
2387
+ private isUrlSame;
2388
+ ngOnInit(): void;
2389
+ private setColor;
2390
+ ngOnDestroy(): void;
2391
+ static ɵfac: i0.ɵɵFactoryDeclaration<NavButtonComponent, never>;
2392
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavButtonComponent, "nav-button", never, { "routerLink": { "alias": "routerLink"; "required": false; }; "url": { "alias": "url"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "name": { "alias": "name"; "required": false; }; "alertCount": { "alias": "alertCount"; "required": false; }; }, {}, never, never, false, never>;
2315
2393
  }
2316
2394
 
2317
- declare class TruncatePipe implements PipeTransform {
2318
- transform(value: string, limit?: number): string;
2319
- static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
2320
- static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "truncate", false>;
2395
+ declare class TermsService {
2396
+ private http;
2397
+ private config;
2398
+ private baseUrl;
2399
+ constructor(http: HttpClient, config: ApiConfig);
2400
+ accept(): Observable<any>;
2401
+ static ɵfac: i0.ɵɵFactoryDeclaration<TermsService, never>;
2402
+ static ɵprov: i0.ɵɵInjectableDeclaration<TermsService>;
2321
2403
  }
2322
2404
 
2323
- declare class TruncatePipeModule {
2324
- static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipeModule, never>;
2325
- static ɵmod: i0.ɵɵNgModuleDeclaration<TruncatePipeModule, [typeof TruncatePipe], never, [typeof TruncatePipe]>;
2326
- static ɵinj: i0.ɵɵInjectorDeclaration<TruncatePipeModule>;
2405
+ declare class TermsUpdatedComponent extends ComponentWithViewStateBase<IResultsState> {
2406
+ private termsService;
2407
+ protected state: ViewModelStateBase<IResultsState>;
2408
+ protected snackBar: MatSnackBar;
2409
+ legal: LegalDto;
2410
+ termsUpdated: boolean;
2411
+ sending: boolean;
2412
+ constructor(termsService: TermsService, state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2413
+ accept(): Promise<void>;
2414
+ protected onDataUpdate(data: IResultsState): void;
2415
+ static ɵfac: i0.ɵɵFactoryDeclaration<TermsUpdatedComponent, never>;
2416
+ static ɵcmp: i0.ɵɵComponentDeclaration<TermsUpdatedComponent, "termsupdated", never, {}, {}, never, never, false, never>;
2327
2417
  }
2328
2418
 
2329
- declare class AgeIndicatorComponent implements OnInit {
2330
- lastMeasured: Date;
2331
- lastMeasuredMonths: number;
2332
- lastMeasuredOpacity: number;
2333
- lastMeasuredTooltip: string;
2419
+ declare class WidgetFactorScoreComponent {
2420
+ direction: string;
2421
+ factorScore: FactorScoreDto;
2422
+ factorScores: FactorScoreCollectionDto;
2423
+ delta: FactorScoreCollectionDeltaDto;
2424
+ benchmarkName: string;
2425
+ factorScoreWidth: number;
2426
+ score: number;
2427
+ benchmark: number;
2428
+ confidenceAvailable: boolean;
2429
+ factorScoreLeft: number;
2430
+ points: PointDto[];
2334
2431
  constructor();
2335
2432
  ngOnInit(): void;
2336
- static ɵfac: i0.ɵɵFactoryDeclaration<AgeIndicatorComponent, never>;
2337
- static ɵcmp: i0.ɵɵComponentDeclaration<AgeIndicatorComponent, "age-indicator", never, { "lastMeasured": { "alias": "lastMeasured"; "required": false; }; }, {}, never, never, false, never>;
2433
+ static ɵfac: i0.ɵɵFactoryDeclaration<WidgetFactorScoreComponent, never>;
2434
+ static ɵcmp: i0.ɵɵComponentDeclaration<WidgetFactorScoreComponent, "widget-factorscore", never, { "factorScore": { "alias": "factorScore"; "required": false; }; "factorScores": { "alias": "factorScores"; "required": false; }; "delta": { "alias": "delta"; "required": false; }; }, {}, never, never, false, never>;
2338
2435
  }
2339
2436
 
2340
- declare class ArrowComponent implements OnInit, DoCheck {
2341
- private elem;
2342
- from: string;
2343
- to: string;
2344
- head: boolean;
2345
- tail: boolean;
2346
- text: string;
2347
- toolTip: string;
2348
- color: string;
2349
- width: number;
2350
- onlyVisible: boolean;
2351
- fromX: number;
2352
- fromY: number;
2353
- toX: number;
2354
- toY: number;
2355
- arrowIndices: number[];
2356
- styleLine: object[];
2357
- styleArrowFw: object[];
2358
- styleArrowBw: object[];
2359
- needSwap: boolean[];
2360
- private elementPositionBackup;
2361
- constructor(elem: ElementRef);
2362
- private getNumberOrDef;
2363
- private isVisible;
2364
- private inside;
2365
- private intersectionPoint;
2366
- private adjustLine;
2367
- private adjustLines;
2368
- private getFromToPairs;
2369
- private trackPositionChange;
2437
+ declare class WidgetParticipationRateComponent {
2438
+ direction: string;
2439
+ data: ParticipationRateDto;
2440
+ factorScoreWidth: number;
2441
+ percentage: number;
2442
+ confidenceAvailable: boolean;
2443
+ factorScoreLeft: number;
2444
+ constructor();
2370
2445
  ngOnInit(): void;
2371
- ngDoCheck(): void;
2372
- ngOnDestroy(): void;
2373
- static ɵfac: i0.ɵɵFactoryDeclaration<ArrowComponent, never>;
2374
- static ɵcmp: i0.ɵɵComponentDeclaration<ArrowComponent, "arrow", never, { "from": { "alias": "from"; "required": false; }; "to": { "alias": "to"; "required": false; }; "head": { "alias": "head"; "required": false; }; "tail": { "alias": "tail"; "required": false; }; "text": { "alias": "text"; "required": false; }; "toolTip": { "alias": "toolTip"; "required": false; }; "color": { "alias": "color"; "required": false; }; "width": { "alias": "width"; "required": false; }; "onlyVisible": { "alias": "onlyVisible"; "required": false; }; "fromX": { "alias": "fromX"; "required": false; }; "fromY": { "alias": "fromY"; "required": false; }; "toX": { "alias": "toX"; "required": false; }; "toY": { "alias": "toY"; "required": false; }; }, {}, never, never, false, never>;
2446
+ static ɵfac: i0.ɵɵFactoryDeclaration<WidgetParticipationRateComponent, never>;
2447
+ static ɵcmp: i0.ɵɵComponentDeclaration<WidgetParticipationRateComponent, "widget-participationrate", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
2375
2448
  }
2376
2449
 
2377
- declare class BadgeProgressionComponent {
2378
- showName: boolean;
2379
- badge: BadgeDto;
2380
- radius: number;
2381
- constructor();
2382
- badgeType(): BadgeTypeEnum;
2383
- static ɵfac: i0.ɵɵFactoryDeclaration<BadgeProgressionComponent, never>;
2384
- static ɵcmp: i0.ɵɵComponentDeclaration<BadgeProgressionComponent, "badge-progression", never, { "showName": { "alias": "showName"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, {}, never, never, false, never>;
2450
+ declare class TeamEffectivenessComponent extends ComponentWithViewStateBase<IResultsState> {
2451
+ private state;
2452
+ protected snackBar: MatSnackBar;
2453
+ score: number;
2454
+ benchmarkScore: number;
2455
+ benchmarkUpperQuartile: number;
2456
+ qualification: string;
2457
+ showTeamScore: boolean;
2458
+ private teamEffectivenessKey;
2459
+ constructor(state: ViewModelStateBase<ITeamReportResultsState>, snackBar: MatSnackBar);
2460
+ protected onDataUpdate(data: ITeamReportResultsState): void;
2461
+ static ɵfac: i0.ɵɵFactoryDeclaration<TeamEffectivenessComponent, never>;
2462
+ static ɵcmp: i0.ɵɵComponentDeclaration<TeamEffectivenessComponent, "teameffectiveness", never, {}, {}, never, never, false, never>;
2385
2463
  }
2386
2464
 
2387
- declare class BadgeStreakComponent {
2388
- showName: boolean;
2389
- badge: BadgeDto;
2390
- radius: number;
2391
- constructor();
2392
- getStreakBadgeType(): string;
2393
- static ɵfac: i0.ɵɵFactoryDeclaration<BadgeStreakComponent, never>;
2394
- static ɵcmp: i0.ɵɵComponentDeclaration<BadgeStreakComponent, "badge-streak", never, { "showName": { "alias": "showName"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, {}, never, never, false, never>;
2465
+ declare class ExportFactorScoresRequestDto {
2466
+ constructor(modelKey: string);
2467
+ modelKey: string;
2468
+ periodGrouping: string;
2469
+ dateRange: DateRangeDto;
2470
+ benchmark: BenchmarkTypeEnum;
2471
+ }
2472
+ declare class ExportTeamListRequestDto {
2473
+ constructor(modelKey: string);
2474
+ modelKey: string;
2395
2475
  }
2396
2476
 
2397
- declare class BadgeComponent {
2398
- showName: boolean;
2399
- badge: BadgeDto;
2400
- radius: number;
2401
- constructor();
2402
- isStreakBadge(): boolean;
2403
- isProgressionBadge(): boolean;
2404
- static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
2405
- static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "badge", never, { "showName": { "alias": "showName"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, {}, never, never, false, never>;
2477
+ declare class ExportService {
2478
+ private http;
2479
+ private config;
2480
+ private baseUrl;
2481
+ constructor(http: HttpClient, config: ApiConfig);
2482
+ exportFactorScores(request: ExportFactorScoresRequestDto): Observable<any>;
2483
+ exportTeamList(request: ExportTeamListRequestDto): Observable<any>;
2484
+ exportParticipationRate(request: ExportTeamListRequestDto): Observable<any>;
2485
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
2486
+ static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
2406
2487
  }
2407
2488
 
2408
- declare class BadgesComponent extends ComponentWithViewStateBase<IResultsState> {
2489
+ declare class DialogExportFactorScoresComponent extends ComponentWithViewStateBase<IViewState> {
2409
2490
  private state;
2410
2491
  protected snackBar: MatSnackBar;
2411
- loaded: boolean;
2412
- showNotearned: boolean;
2413
- earnedStreakBadges: BadgeDto[];
2414
- earnedProgressionBadges: BadgeDto[];
2415
- unearnedProgressionBadges: BadgeDto[];
2416
- unearnedStreakBadges: BadgeDto[];
2417
- constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2418
- calculateBadgeProgress(badge: BadgeDto): number;
2492
+ private exportService;
2493
+ private dialogRef;
2494
+ private formBuilder;
2495
+ form: FormGroup;
2496
+ sending: boolean;
2497
+ submitted: boolean;
2498
+ modelKey: string;
2499
+ periodGroupings: SelectItem[];
2500
+ benchmarkTypes: SelectItem[];
2501
+ constructor(state: ViewModelStateBase<IViewState>, snackBar: MatSnackBar, exportService: ExportService, dialogRef: MatDialogRef<DialogExportFactorScoresComponent>, formBuilder: FormBuilder);
2502
+ ngOnInit(): void;
2503
+ submit(): Promise<void>;
2419
2504
  protected onDataUpdate(data: IResultsState): void;
2420
- static ɵfac: i0.ɵɵFactoryDeclaration<BadgesComponent, never>;
2421
- static ɵcmp: i0.ɵɵComponentDeclaration<BadgesComponent, "badges", never, {}, {}, never, never, false, never>;
2505
+ private createForm;
2506
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogExportFactorScoresComponent, never>;
2507
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogExportFactorScoresComponent, "ng-component", never, {}, {}, never, never, false, never>;
2422
2508
  }
2423
2509
 
2424
- declare class BenchmarkIndicatorComponent {
2425
- delta: number;
2426
- benchmarkAvailable: boolean;
2427
- factorScore: FactorScoreDto;
2428
- constructor();
2429
- ngOnInit(): void;
2430
- static ɵfac: i0.ɵɵFactoryDeclaration<BenchmarkIndicatorComponent, never>;
2431
- static ɵcmp: i0.ɵɵComponentDeclaration<BenchmarkIndicatorComponent, "benchmark-indicator", never, { "factorScore": { "alias": "factorScore"; "required": false; }; }, {}, never, never, false, never>;
2510
+ declare class OpenExportFactorScoresDialogDirective {
2511
+ private dialog;
2512
+ constructor(dialog: MatDialog);
2513
+ onClick(): void;
2514
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenExportFactorScoresDialogDirective, never>;
2515
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenExportFactorScoresDialogDirective, "[exportFactorScoresDialog]", never, {}, {}, never, never, false, never>;
2432
2516
  }
2433
2517
 
2434
- declare class DeltaArrowComponent {
2435
- private datePipe;
2436
- deltaDateRangeFrom: string;
2437
- deltaDateRangeTo: string;
2438
- available: boolean;
2439
- comparedTo: string;
2440
- factorScore: FactorScoreDto;
2441
- delta: FactorScoreCollectionDeltaDto;
2442
- noDataIndicator: boolean;
2443
- constructor(datePipe: DatePipe);
2518
+ declare class DialogExportTeamListComponent extends ComponentWithViewStateBase<IResultsState> {
2519
+ private state;
2520
+ protected snackBar: MatSnackBar;
2521
+ protected userSettings: IUserSettingStrategy;
2522
+ private exportService;
2523
+ private dialogRef;
2524
+ private formBuilder;
2525
+ form: FormGroup;
2526
+ sending: boolean;
2527
+ modelKey: string;
2528
+ constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar, userSettings: IUserSettingStrategy, exportService: ExportService, dialogRef: MatDialogRef<DialogExportTeamListComponent>, formBuilder: FormBuilder);
2444
2529
  ngOnInit(): void;
2445
- static ɵfac: i0.ɵɵFactoryDeclaration<DeltaArrowComponent, never>;
2446
- static ɵcmp: i0.ɵɵComponentDeclaration<DeltaArrowComponent, "delta-arrow", never, { "factorScore": { "alias": "factorScore"; "required": false; }; "delta": { "alias": "delta"; "required": false; }; "noDataIndicator": { "alias": "noDataIndicator"; "required": false; }; }, {}, never, never, false, never>;
2530
+ exportTeamSummaries(): Promise<void>;
2531
+ exportParticipationRate(): Promise<void>;
2532
+ protected onDataUpdate(data: IResultsState): void;
2533
+ private createForm;
2534
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogExportTeamListComponent, never>;
2535
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogExportTeamListComponent, "ng-component", never, {}, {}, never, never, false, never>;
2447
2536
  }
2448
2537
 
2449
- declare class DoItYourselfComponent {
2450
- constructor();
2451
- ngOnInit(): void;
2452
- static ɵfac: i0.ɵɵFactoryDeclaration<DoItYourselfComponent, never>;
2453
- static ɵcmp: i0.ɵɵComponentDeclaration<DoItYourselfComponent, "doityourself", never, {}, {}, never, never, false, never>;
2538
+ declare class OpenExportTeamListDialogDirective {
2539
+ private dialog;
2540
+ constructor(dialog: MatDialog);
2541
+ onClick(): void;
2542
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenExportTeamListDialogDirective, never>;
2543
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenExportTeamListDialogDirective, "[exportTeamListDialog]", never, {}, {}, never, never, false, never>;
2544
+ }
2545
+
2546
+ declare class DialogTeamFilterComponent extends ComponentWithViewStateBase<IResultsState> {
2547
+ tags: string[];
2548
+ private state;
2549
+ protected userSettings: IUserSettingStrategy;
2550
+ protected snackBar: MatSnackBar;
2551
+ private dialogRef;
2552
+ private formBuilder;
2553
+ form: UntypedFormGroup;
2554
+ sending: boolean;
2555
+ submitted: boolean;
2556
+ filterSet: boolean;
2557
+ constructor(tags: string[], state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, snackBar: MatSnackBar, dialogRef: MatDialogRef<DialogTeamFilterComponent>, formBuilder: UntypedFormBuilder);
2558
+ ngOnInit(): void;
2559
+ submit(): Promise<void>;
2560
+ clear(): Promise<void>;
2561
+ private createForm;
2562
+ protected onDataUpdate(data: IResultsState): void;
2563
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogTeamFilterComponent, never>;
2564
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogTeamFilterComponent, "ng-component", never, {}, {}, never, never, false, never>;
2454
2565
  }
2455
2566
 
2456
- declare class DoItYourselfWorkshopsComponent extends ComponentWithViewStateBase<IActionState> {
2457
- protected snackBar: MatSnackBar;
2458
- private state;
2459
- factorScore: FactorScoreDto;
2460
- resources: FeedbackResourceDto[];
2461
- InterventionTypeEnum: typeof InterventionTypeEnum;
2462
- InterventionStateEnum: typeof InterventionStateEnum;
2463
- InterventionOwnerEnum: typeof InterventionOwnerEnum;
2464
- private baseUrl;
2465
- constructor(snackBar: MatSnackBar, state: ViewModelStateBase<IResultsState>);
2466
- protected onDataUpdate(data: IResultsState): void;
2467
- getResourceUrl(item: FeedbackResourceDto): string;
2468
- static ɵfac: i0.ɵɵFactoryDeclaration<DoItYourselfWorkshopsComponent, never>;
2469
- static ɵcmp: i0.ɵɵComponentDeclaration<DoItYourselfWorkshopsComponent, "doityourselfworkshops", never, { "factorScore": { "alias": "factorScore"; "required": false; }; "resources": { "alias": "resources"; "required": false; }; }, {}, never, never, false, never>;
2567
+ declare class OpenTeamFilterDialogDirective {
2568
+ private dialog;
2569
+ tags: string[];
2570
+ constructor(dialog: MatDialog);
2571
+ onClick(): void;
2572
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenTeamFilterDialogDirective, never>;
2573
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenTeamFilterDialogDirective, "[teamFilterDialog]", never, { "tags": { "alias": "tags"; "required": false; }; }, {}, never, never, false, never>;
2470
2574
  }
2471
2575
 
2472
2576
  declare class FactorAxisComponent extends ComponentWithViewStateBase<IResultsState> {
@@ -2503,6 +2607,56 @@ declare class FactorAxisComponent extends ComponentWithViewStateBase<IResultsSta
2503
2607
  static ɵcmp: i0.ɵɵComponentDeclaration<FactorAxisComponent, "factor-axis", never, { "dimensionSelector": { "alias": "dimensionSelector"; "required": false; }; "showIndividualScore": { "alias": "showIndividualScore"; "required": false; }; "showTeamRange": { "alias": "showTeamRange"; "required": false; }; }, {}, never, never, false, never>;
2504
2608
  }
2505
2609
 
2610
+ declare class TipBadgeComponent extends ComponentWithViewStateBase<IResultsState> {
2611
+ protected state: ViewModelStateBase<ITeamReportResultsState>;
2612
+ protected snackBar: MatSnackBar;
2613
+ dimension: string;
2614
+ label: string;
2615
+ key: string;
2616
+ feedbackKey: string;
2617
+ impact: number;
2618
+ class: string;
2619
+ subscribed: boolean;
2620
+ baseUrl: string;
2621
+ constructor(state: ViewModelStateBase<ITeamReportResultsState>, snackBar: MatSnackBar);
2622
+ protected onDataUpdate(data: IResultsState): void;
2623
+ static ɵfac: i0.ɵɵFactoryDeclaration<TipBadgeComponent, never>;
2624
+ static ɵcmp: i0.ɵɵComponentDeclaration<TipBadgeComponent, "tip-badge", never, { "dimension": { "alias": "dimension"; "required": false; }; }, {}, never, never, false, never>;
2625
+ }
2626
+
2627
+ declare class DialogNotesComponent {
2628
+ notes: string[];
2629
+ constructor(notes: string[]);
2630
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogNotesComponent, never>;
2631
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogNotesComponent, "ng-component", never, {}, {}, never, never, false, never>;
2632
+ }
2633
+
2634
+ declare class FilterTagsComponent {
2635
+ protected userSettings: IUserSettingStrategy;
2636
+ tags: string[];
2637
+ constructor(userSettings: IUserSettingStrategy);
2638
+ filterByTag(tag: string): Promise<void>;
2639
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterTagsComponent, never>;
2640
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterTagsComponent, "filter-tags", never, { "tags": { "alias": "tags"; "required": false; }; }, {}, never, never, false, never>;
2641
+ }
2642
+
2643
+ declare class LimitationsApplyComponent {
2644
+ notes: string[];
2645
+ constructor();
2646
+ ngOnInit(): void;
2647
+ static ɵfac: i0.ɵɵFactoryDeclaration<LimitationsApplyComponent, never>;
2648
+ static ɵcmp: i0.ɵɵComponentDeclaration<LimitationsApplyComponent, "limitationsapply", never, { "notes": { "alias": "notes"; "required": false; }; }, {}, never, never, false, never>;
2649
+ }
2650
+
2651
+ declare class OpenNotesDialogDirective {
2652
+ private dialog;
2653
+ notes: string[];
2654
+ constructor(dialog: MatDialog);
2655
+ onClick(): void;
2656
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenNotesDialogDirective, never>;
2657
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenNotesDialogDirective, "[notesDialog]", never, { "notes": { "alias": "notes"; "required": false; }; }, {}, never, never, false, never>;
2658
+ }
2659
+
2506
2660
  declare class FactorsComponent extends ComponentWithViewStateBase<IResultsState> {
2507
2661
  private state;
2508
2662
  protected snackBar: MatSnackBar;
@@ -2523,193 +2677,160 @@ declare class FactorsComponent extends ComponentWithViewStateBase<IResultsState>
2523
2677
  static ɵcmp: i0.ɵɵComponentDeclaration<FactorsComponent, "factors", never, {}, {}, never, never, false, never>;
2524
2678
  }
2525
2679
 
2526
- declare class FilterTagsComponent {
2527
- protected userSettings: IUserSettingStrategy;
2528
- tags: string[];
2529
- constructor(userSettings: IUserSettingStrategy);
2530
- filterByTag(tag: string): Promise<void>;
2531
- static ɵfac: i0.ɵɵFactoryDeclaration<FilterTagsComponent, never>;
2532
- static ɵcmp: i0.ɵɵComponentDeclaration<FilterTagsComponent, "filter-tags", never, { "tags": { "alias": "tags"; "required": false; }; }, {}, never, never, false, never>;
2680
+ declare class TrendDataSetDto {
2681
+ name: string;
2682
+ variables: VariableDto[];
2683
+ generatorNotes: string[];
2533
2684
  }
2534
-
2535
- declare class FocusAreasComponent extends ComponentWithViewStateBase<IResultsState> {
2536
- private state;
2537
- protected snackBar: MatSnackBar;
2538
- limit: number;
2539
- focusAreas: FactorScoreDto[];
2540
- count: number;
2541
- baseUrl: string;
2542
- constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2543
- protected onDataUpdate(data: IResultsState): void;
2544
- getCoreFactor(item: FactorScoreDto): string;
2545
- static ɵfac: i0.ɵɵFactoryDeclaration<FocusAreasComponent, never>;
2546
- static ɵcmp: i0.ɵɵComponentDeclaration<FocusAreasComponent, "focusareas", never, { "limit": { "alias": "limit"; "required": false; }; }, {}, never, never, false, never>;
2685
+ declare class VariableDto {
2686
+ name: string;
2687
+ color: string;
2688
+ series: MeasurementDto[];
2689
+ }
2690
+ declare class MeasurementDto {
2691
+ name: string;
2692
+ value: number;
2693
+ min: number;
2694
+ max: number;
2547
2695
  }
2548
2696
 
2549
- declare class FooterComponent extends ComponentWithViewStateBase<IViewState> {
2550
- private state;
2551
- protected snackBar: MatSnackBar;
2552
- branding: BrandingSettingsDto;
2553
- constructor(state: ViewModelStateBase<IViewState>, snackBar: MatSnackBar);
2554
- protected onDataUpdate(data: IViewState): void;
2555
- static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
2556
- static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "liberators-footer", never, {}, {}, never, never, false, never>;
2697
+ declare class TrendDataRequestDto {
2698
+ type: string;
2699
+ teamKey: string;
2700
+ clientKey: string;
2701
+ teamKeys: string[];
2702
+ clientKeys: string[];
2703
+ includeSpread: boolean;
2704
+ dateRange: DateRangeDto;
2705
+ factorKeys: string[];
2706
+ periodGrouping: DeltaPeriodEnum;
2707
+ includeActions: IncludeActionsModeEnum;
2557
2708
  }
2558
2709
 
2559
- declare class ImpactIndicatorComponent {
2560
- private datePipe;
2561
- factorScore: FactorScoreDto;
2562
- constructor(datePipe: DatePipe);
2563
- ngOnInit(): void;
2564
- static ɵfac: i0.ɵɵFactoryDeclaration<ImpactIndicatorComponent, never>;
2565
- static ɵcmp: i0.ɵɵComponentDeclaration<ImpactIndicatorComponent, "impact-indicator", never, { "factorScore": { "alias": "factorScore"; "required": false; }; }, {}, never, never, false, never>;
2710
+ declare class TrendService {
2711
+ private http;
2712
+ private config;
2713
+ private baseUrl;
2714
+ constructor(http: HttpClient, config: ApiConfig);
2715
+ team(request: TrendDataRequestDto): rxjs.Observable<TrendDataSetDto>;
2716
+ static ɵfac: i0.ɵɵFactoryDeclaration<TrendService, never>;
2717
+ static ɵprov: i0.ɵɵInjectableDeclaration<TrendService>;
2566
2718
  }
2567
2719
 
2568
- declare class LimitationsApplyComponent {
2569
- notes: string[];
2570
- constructor();
2720
+ declare class TrendsComponent extends ComponentWithViewStateBase<IResultsState> {
2721
+ private formBuilder;
2722
+ protected snackBar: MatSnackBar;
2723
+ private factorService;
2724
+ private trendService;
2725
+ protected route: ActivatedRoute;
2726
+ private state;
2727
+ units: SelectItem[];
2728
+ unitType: string;
2729
+ chartContainer: ElementRef<HTMLDivElement>;
2730
+ factors: SelectItem[];
2731
+ data: any[];
2732
+ generatorNotes: string[];
2733
+ loading: boolean;
2734
+ form: UntypedFormGroup;
2735
+ view: [number, number];
2736
+ legendPosition: LegendPosition;
2737
+ customColors: any[];
2738
+ periodGroupings: SelectItem[];
2739
+ includeActionOptions: SelectItem[];
2740
+ constructor(formBuilder: UntypedFormBuilder, snackBar: MatSnackBar, factorService: FactorService, trendService: TrendService, route: ActivatedRoute, state: ViewModelStateBase<IResultsState>);
2571
2741
  ngOnInit(): void;
2572
- static ɵfac: i0.ɵɵFactoryDeclaration<LimitationsApplyComponent, never>;
2573
- static ɵcmp: i0.ɵɵComponentDeclaration<LimitationsApplyComponent, "limitationsapply", never, { "notes": { "alias": "notes"; "required": false; }; }, {}, never, never, false, never>;
2742
+ onFormSubmit(): void;
2743
+ onResize(): void;
2744
+ private createForm;
2745
+ compareFactorOptions(o1: SelectItem, o2: SelectItem): boolean;
2746
+ protected onDataUpdate(data: IResultsState): void;
2747
+ static ɵfac: i0.ɵɵFactoryDeclaration<TrendsComponent, never>;
2748
+ static ɵcmp: i0.ɵɵComponentDeclaration<TrendsComponent, "trends", never, { "units": { "alias": "units"; "required": false; }; "unitType": { "alias": "unitType"; "required": false; }; }, {}, never, never, false, never>;
2574
2749
  }
2575
2750
 
2576
- declare class ModelFactorBreakdownComponent implements OnInit {
2577
- factor: {
2578
- points: any[];
2579
- name?: string;
2580
- };
2581
- pageSize: number;
2582
- currentPage: number;
2583
- pageCount: number;
2584
- pagedPoints: any[];
2585
- points: PointDto[];
2586
- ngOnInit(): Promise<void>;
2587
- updatePaging(): void;
2588
- showPage(page: number): void;
2589
- nextPage(): void;
2590
- prevPage(): void;
2591
- hasNext(): boolean;
2592
- hasPrev(): boolean;
2593
- static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorBreakdownComponent, never>;
2594
- static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorBreakdownComponent, "model-factor-breakdown", never, { "factor": { "alias": "factor"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, {}, never, never, false, never>;
2751
+ declare class BadgeComponent {
2752
+ showName: boolean;
2753
+ badge: BadgeDto;
2754
+ radius: number;
2755
+ constructor();
2756
+ isStreakBadge(): boolean;
2757
+ isProgressionBadge(): boolean;
2758
+ static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
2759
+ static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "badge", never, { "showName": { "alias": "showName"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, {}, never, never, false, never>;
2595
2760
  }
2596
2761
 
2597
- declare class ModelFactorComponent extends ComponentWithViewStateBase<IResultsState> {
2762
+ declare class BadgesComponent extends ComponentWithViewStateBase<IResultsState> {
2598
2763
  private state;
2599
- private userSettingsService;
2600
2764
  protected snackBar: MatSnackBar;
2601
- dimension: FactorStructureDto;
2602
- factorExtraClass: string;
2603
- currentFactor: FactorScoreDto;
2604
- filter: ModelFilter;
2605
- direction: string;
2606
- factorScore: FactorScoreDto;
2607
- benchmarkScore: number;
2608
- dimensionKey: string;
2609
- subDimensions: FactorStructureDto[];
2610
- benchmark: string;
2611
- showBenchmark: boolean;
2612
- description: string;
2613
- notes: string[];
2614
- confidenceAvailable: boolean;
2615
- teamKey: string;
2616
- effects: EffectDto[];
2617
- points: PointDto[];
2618
- openInterventions: number;
2619
- completedInterventions: number;
2620
- dataAvailable: boolean;
2621
- score: number;
2622
- factorScoreWidth: number;
2623
- factorScoreLeft: number;
2624
- feedbackAvailable: boolean;
2625
- delta: FactorScoreCollectionDeltaDto;
2626
- dateRange: DateRangeDto;
2627
- impededInterventions: number;
2628
- name: string;
2629
- baseUrl: string;
2630
- private subscription;
2631
- InterventionStateEnum: typeof InterventionStateEnum;
2632
- breakdownPage: number;
2633
- lastMeasuredDots: Array<number>;
2634
- lastMeasuredOpacity: number;
2635
- lastMeasuredTooltip: string;
2636
- constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar);
2637
- ngOnInit(): void;
2638
- ngOnDestroy(): void;
2765
+ loaded: boolean;
2766
+ showNotearned: boolean;
2767
+ earnedStreakBadges: BadgeDto[];
2768
+ earnedProgressionBadges: BadgeDto[];
2769
+ unearnedProgressionBadges: BadgeDto[];
2770
+ unearnedStreakBadges: BadgeDto[];
2771
+ constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2772
+ calculateBadgeProgress(badge: BadgeDto): number;
2639
2773
  protected onDataUpdate(data: IResultsState): void;
2640
- static ɵfac: i0.ɵɵFactoryDeclaration<ModelFactorComponent, never>;
2641
- static ɵcmp: i0.ɵɵComponentDeclaration<ModelFactorComponent, "model-factor", never, { "dimension": { "alias": "dimension"; "required": false; }; "factorExtraClass": { "alias": "factorExtraClass"; "required": false; }; }, {}, never, never, false, never>;
2774
+ static ɵfac: i0.ɵɵFactoryDeclaration<BadgesComponent, never>;
2775
+ static ɵcmp: i0.ɵɵComponentDeclaration<BadgesComponent, "badges", never, {}, {}, never, never, false, never>;
2642
2776
  }
2643
2777
 
2644
- declare class ModelSwitcherComponent extends ComponentWithViewStateBase<IResultsState> {
2645
- private state;
2778
+ declare class BadgeStreakComponent {
2779
+ showName: boolean;
2780
+ badge: BadgeDto;
2781
+ radius: number;
2782
+ constructor();
2783
+ getStreakBadgeType(): string;
2784
+ static ɵfac: i0.ɵɵFactoryDeclaration<BadgeStreakComponent, never>;
2785
+ static ɵcmp: i0.ɵɵComponentDeclaration<BadgeStreakComponent, "badge-streak", never, { "showName": { "alias": "showName"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, {}, never, never, false, never>;
2786
+ }
2787
+
2788
+ declare class UpdateInProgressComponent extends ComponentWithViewStateBase<IResultsState> {
2789
+ protected state: ViewModelStateBase<ITeamReportResultsState>;
2646
2790
  protected snackBar: MatSnackBar;
2647
- modelDefinition: ModelDefinitionDto;
2648
- canSwitchModels: boolean;
2649
- constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2791
+ delayedReloading: boolean;
2792
+ private subscription;
2793
+ constructor(state: ViewModelStateBase<ITeamReportResultsState>, snackBar: MatSnackBar);
2650
2794
  ngOnInit(): void;
2651
- protected onDataUpdate(data: IResultsState): void;
2652
- static ɵfac: i0.ɵɵFactoryDeclaration<ModelSwitcherComponent, never>;
2653
- static ɵcmp: i0.ɵɵComponentDeclaration<ModelSwitcherComponent, "model-switcher", never, {}, {}, never, never, false, never>;
2795
+ ngOnDestroy(): void;
2796
+ static ɵfac: i0.ɵɵFactoryDeclaration<UpdateInProgressComponent, never>;
2797
+ static ɵcmp: i0.ɵɵComponentDeclaration<UpdateInProgressComponent, "update-in-progress", never, {}, {}, never, never, false, never>;
2654
2798
  }
2655
2799
 
2656
- declare class ModelComponent extends ComponentWithViewStateBase<IResultsState> {
2800
+ declare class DialogModelFilterComponent extends ComponentWithViewStateBase<IResultsState> {
2657
2801
  private state;
2658
- private dialog;
2802
+ protected userSettings: IUserSettingStrategy;
2659
2803
  protected snackBar: MatSnackBar;
2660
- factors: FactorStructureDto[];
2661
- showSubFactorArrows: boolean;
2662
- showModel: boolean;
2663
- dateRange: DateRangeDto;
2664
- deltaDateRange: DateRangeDto;
2665
- coreEffects: EffectDto[];
2666
- pointCount: number;
2667
- benchmark: string;
2668
- pointNames: string;
2669
- pointType: string;
2670
- deltaTeams: number;
2671
- deltaTeamNames: string;
2672
- deltaAvailable: boolean;
2673
- isLoggedIn: boolean;
2674
- canSwitchModels: boolean;
2675
- modelDefinition: ModelDefinitionDto;
2676
- qualifiedBy: QualifiedByEnum;
2677
- deltaType: DeltaPeriodEnum;
2678
- isSubscriber: boolean;
2679
- QualifiedByEnum: typeof QualifiedByEnum;
2680
- globalNotes: string[];
2681
- constructor(state: ViewModelStateBase<IResultsState>, dialog: MatDialog, snackBar: MatSnackBar);
2804
+ private dialogRef;
2805
+ private formBuilder;
2806
+ form: UntypedFormGroup;
2807
+ sending: boolean;
2808
+ submitted: boolean;
2809
+ models: ModelSummaryDto[];
2810
+ constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, snackBar: MatSnackBar, dialogRef: MatDialogRef<DialogModelFilterComponent>, formBuilder: UntypedFormBuilder);
2682
2811
  ngOnInit(): void;
2683
- private determineScreenSize;
2812
+ submit(): Promise<void>;
2813
+ private createForm;
2684
2814
  protected onDataUpdate(data: IResultsState): void;
2685
- static ɵfac: i0.ɵɵFactoryDeclaration<ModelComponent, never>;
2686
- static ɵcmp: i0.ɵɵComponentDeclaration<ModelComponent, "model", never, {}, {}, never, never, false, never>;
2815
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogModelFilterComponent, never>;
2816
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogModelFilterComponent, "ng-component", never, {}, {}, never, never, false, never>;
2817
+ }
2818
+ declare class OpenModelFilterDialog {
2819
+ private dialog;
2820
+ constructor(dialog: MatDialog);
2821
+ onClick(): void;
2822
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenModelFilterDialog, never>;
2823
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenModelFilterDialog, "[modelFilterDialog]", never, {}, {}, never, never, false, never>;
2687
2824
  }
2688
2825
 
2689
- declare class NavButtonComponent implements OnInit, OnDestroy {
2690
- private router;
2691
- private brandingProvider;
2692
- hover: boolean;
2693
- active: boolean;
2694
- accentColor: string;
2695
- private paletteItems;
2696
- private subscription;
2697
- routerLink: string[];
2698
- url: string;
2699
- icon: string;
2700
- name: string;
2701
- alertCount: number;
2702
- backgroundColor: string;
2703
- color: string;
2704
- mouseover(eventData: Event): void;
2705
- mouseleave(eventData: Event): void;
2706
- constructor(router: Router, brandingProvider: BrandingProvider);
2707
- private isUrlSame;
2708
- ngOnInit(): void;
2709
- private setColor;
2710
- ngOnDestroy(): void;
2711
- static ɵfac: i0.ɵɵFactoryDeclaration<NavButtonComponent, never>;
2712
- static ɵcmp: i0.ɵɵComponentDeclaration<NavButtonComponent, "nav-button", never, { "routerLink": { "alias": "routerLink"; "required": false; }; "url": { "alias": "url"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "name": { "alias": "name"; "required": false; }; "alertCount": { "alias": "alertCount"; "required": false; }; }, {}, never, never, false, never>;
2826
+ declare class BadgeProgressionComponent {
2827
+ showName: boolean;
2828
+ badge: BadgeDto;
2829
+ radius: number;
2830
+ constructor();
2831
+ badgeType(): BadgeTypeEnum;
2832
+ static ɵfac: i0.ɵɵFactoryDeclaration<BadgeProgressionComponent, never>;
2833
+ static ɵcmp: i0.ɵɵComponentDeclaration<BadgeProgressionComponent, "badge-progression", never, { "showName": { "alias": "showName"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, {}, never, never, false, never>;
2713
2834
  }
2714
2835
 
2715
2836
  declare class ParticipantsComponent extends ComponentWithViewStateBase<IResultsState> {
@@ -2737,545 +2858,586 @@ declare class ParticipantsComponent extends ComponentWithViewStateBase<IResultsS
2737
2858
  static ɵcmp: i0.ɵɵComponentDeclaration<ParticipantsComponent, "participants", never, {}, {}, never, never, false, never>;
2738
2859
  }
2739
2860
 
2740
- declare class QuickTipsComponent extends ComponentWithViewStateBase<IActionState> {
2741
- private state;
2742
- protected snackBar: MatSnackBar;
2743
- quickTip: FeedbackQuickTipDto;
2744
- dimensionKey: string;
2745
- extraClass: string;
2746
- InterventionTypeEnum: typeof InterventionTypeEnum;
2747
- InterventionStateEnum: typeof InterventionStateEnum;
2748
- InterventionOwnerEnum: typeof InterventionOwnerEnum;
2749
- quickTips: FeedbackQuickTipDto[];
2750
- tipIndex: number;
2751
- tipCount: number;
2752
- stateSubscription: Subscription;
2753
- constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2754
- nextTip(): void;
2755
- previousTip(): void;
2756
- protected onDataUpdate(data: IResultsState): void;
2757
- static ɵfac: i0.ɵɵFactoryDeclaration<QuickTipsComponent, never>;
2758
- static ɵcmp: i0.ɵɵComponentDeclaration<QuickTipsComponent, "quicktips", never, { "dimensionKey": { "alias": "dimensionKey"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, false, never>;
2861
+ declare class VideoComponent {
2862
+ videoUrl: string;
2863
+ videoTitle: string;
2864
+ constructor();
2865
+ ngOnInit(): void;
2866
+ openVideo(): void;
2867
+ static ɵfac: i0.ɵɵFactoryDeclaration<VideoComponent, never>;
2868
+ static ɵcmp: i0.ɵɵComponentDeclaration<VideoComponent, "explainervideo", never, { "videoUrl": { "alias": "videoUrl"; "required": false; }; "videoTitle": { "alias": "videoTitle"; "required": false; }; }, {}, never, never, false, never>;
2759
2869
  }
2760
2870
 
2761
- declare class RecommendationComponent extends ComponentWithViewStateBase<IActionState> {
2762
- private state;
2763
- protected snackBar: MatSnackBar;
2764
- private router;
2765
- item: FactorScoreDto;
2766
- howToImproveExpanded: boolean;
2767
- researchExpanded: boolean;
2768
- recommendations: FactorScoreDto[];
2769
- resources: FeedbackResourceDto[];
2770
- index: number;
2771
- definition: string;
2772
- influences: FactorEffectDto[];
2773
- predictors: FactorEffectDto[];
2774
- delta: FactorScoreCollectionDeltaDto;
2775
- qualifiedBy: QualifiedByEnum;
2776
- model: ModelStructureDto;
2777
- benchmarkAvailable: boolean;
2778
- constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar, router: Router);
2871
+ declare class UserProfileService {
2872
+ private http;
2873
+ private config;
2874
+ private baseUrl;
2875
+ constructor(http: HttpClient, config: ApiConfig);
2876
+ update(userProfile: UserProfileDto): Observable<any>;
2877
+ setAvatar(file: File): Observable<any>;
2878
+ clearAvatar(): Observable<any>;
2879
+ sendMFAEnrollment(): Observable<any>;
2880
+ resetMFAEnrollment(): Observable<any>;
2881
+ createAPITokens(): Observable<any>;
2882
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileService, never>;
2883
+ static ɵprov: i0.ɵɵInjectableDeclaration<UserProfileService>;
2884
+ }
2885
+
2886
+ declare class AccountService$1 {
2887
+ private http;
2888
+ private config;
2889
+ private baseUrl;
2890
+ constructor(http: HttpClient, config: ApiConfig);
2891
+ sendResetPassword(email: string): Observable<any>;
2892
+ static ɵfac: i0.ɵɵFactoryDeclaration<AccountService$1, never>;
2893
+ static ɵprov: i0.ɵɵInjectableDeclaration<AccountService$1>;
2894
+ }
2895
+
2896
+ declare class UserProfileComponent extends ComponentWithViewStateBase<IResultsState> {
2897
+ protected state: ViewModelStateBase<IResultsState>;
2898
+ private authService;
2899
+ private userProfileService;
2900
+ private accountService;
2901
+ private formBuilder;
2902
+ protected snackbar: MatSnackBar;
2903
+ protected route: ActivatedRoute;
2904
+ form: UntypedFormGroup;
2905
+ loading: boolean;
2906
+ userProfile: UserProfileDto;
2907
+ changeAvatar: boolean;
2908
+ color: string;
2909
+ email: string;
2910
+ usesMFA: boolean;
2911
+ allowMFA: boolean;
2912
+ allowPasswordChange: boolean;
2913
+ showEmailInput: boolean;
2914
+ allowAPI: any;
2915
+ constructor(state: ViewModelStateBase<IResultsState>, authService: AuthService, userProfileService: UserProfileService, accountService: AccountService$1, formBuilder: UntypedFormBuilder, snackbar: MatSnackBar, route: ActivatedRoute);
2779
2916
  ngOnInit(): void;
2780
- getFactor(factorKey: string): FactorStructureDto;
2917
+ private createForm;
2918
+ onSubmit(formDirective: FormGroupDirective): Promise<void>;
2919
+ setChangeEmail(): void;
2920
+ uploadAvatar($fileInput: any): void;
2921
+ clearAvatar(): void;
2922
+ sendPasswordReset(): void;
2923
+ sendMFAEnrollment(): void;
2924
+ resetMFAEnrollment(): void;
2925
+ createAPITokens(): void;
2781
2926
  protected onDataUpdate(data: IResultsState): void;
2782
- static ɵfac: i0.ɵɵFactoryDeclaration<RecommendationComponent, never>;
2783
- static ɵcmp: i0.ɵɵComponentDeclaration<RecommendationComponent, "recommendation", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, false, never>;
2927
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileComponent, never>;
2928
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileComponent, "userprofile", never, {}, {}, never, never, false, never>;
2784
2929
  }
2785
2930
 
2786
- declare class RecommendationsComponent extends ComponentWithViewStateBase<IActionState> {
2787
- private state;
2788
- protected snackBar: MatSnackBar;
2789
- private router;
2790
- limit: number;
2791
- skip: number;
2792
- recommendations: FactorScoreDto[];
2793
- expanded: number;
2794
- factors: ModelStructureDto;
2795
- factorsCollection: FactorScoreCollectionDto;
2796
- deltaDateRange: DateRangeDto;
2797
- constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar, router: Router);
2798
- protected onDataUpdate(data: IResultsState): void;
2799
- private scroll;
2800
- static ɵfac: i0.ɵɵFactoryDeclaration<RecommendationsComponent, never>;
2801
- static ɵcmp: i0.ɵɵComponentDeclaration<RecommendationsComponent, "recommendations", never, { "limit": { "alias": "limit"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; }, {}, never, never, false, never>;
2931
+ declare class DateRangePipe implements PipeTransform {
2932
+ private datePipe;
2933
+ constructor(datePipe: DatePipe);
2934
+ transform(dateRange: DateRangeDto): string;
2935
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePipe, never>;
2936
+ static ɵpipe: i0.ɵɵPipeDeclaration<DateRangePipe, "dateRange", false>;
2802
2937
  }
2803
2938
 
2804
- declare class ResearchComponent {
2805
- constructor();
2806
- ngOnInit(): void;
2807
- static ɵfac: i0.ɵɵFactoryDeclaration<ResearchComponent, never>;
2808
- static ɵcmp: i0.ɵɵComponentDeclaration<ResearchComponent, "research", never, {}, {}, never, never, false, never>;
2939
+ declare class DateRangePipeModule {
2940
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePipeModule, never>;
2941
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DateRangePipeModule, [typeof DateRangePipe], never, [typeof DateRangePipe]>;
2942
+ static ɵinj: i0.ɵɵInjectorDeclaration<DateRangePipeModule>;
2809
2943
  }
2810
2944
 
2811
- declare class ResultIndicatorComponent {
2812
- qualification: string;
2813
- result: number;
2814
- factorScore: FactorScoreDto;
2815
- constructor();
2816
- ngOnInit(): void;
2817
- static ɵfac: i0.ɵɵFactoryDeclaration<ResultIndicatorComponent, never>;
2818
- static ɵcmp: i0.ɵɵComponentDeclaration<ResultIndicatorComponent, "result-indicator", never, { "factorScore": { "alias": "factorScore"; "required": false; }; }, {}, never, never, false, never>;
2945
+ declare class DialogSubscribeComponent {
2946
+ private state;
2947
+ subscribeUrl: string;
2948
+ companyUrl: string;
2949
+ title: string;
2950
+ button: string;
2951
+ discount: boolean;
2952
+ constructor(state: ViewModelStateBase<IViewState>);
2953
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogSubscribeComponent, never>;
2954
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogSubscribeComponent, "ng-component", never, {}, {}, never, never, false, never>;
2819
2955
  }
2820
2956
 
2821
- declare class RoadmapComponent extends ComponentWithViewStateBase<IResultsState> {
2822
- private state;
2823
- protected snackBar: MatSnackBar;
2824
- show: boolean;
2825
- subscribeUrl: string;
2826
- constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2827
- protected onDataUpdate(data: IResultsState): void;
2828
- static ɵfac: i0.ɵɵFactoryDeclaration<RoadmapComponent, never>;
2829
- static ɵcmp: i0.ɵɵComponentDeclaration<RoadmapComponent, "roadmap", never, {}, {}, never, never, false, never>;
2957
+ declare class OpenSubscribeDialogDirective {
2958
+ private dialog;
2959
+ constructor(dialog: MatDialog);
2960
+ onClick(): void;
2961
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenSubscribeDialogDirective, never>;
2962
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenSubscribeDialogDirective, "[subscribeDialog]", never, {}, {}, never, never, false, never>;
2830
2963
  }
2831
2964
 
2832
- declare class TeamEffectivenessComponent extends ComponentWithViewStateBase<IResultsState> {
2833
- private state;
2834
- protected snackBar: MatSnackBar;
2835
- score: number;
2836
- benchmarkScore: number;
2837
- benchmarkUpperQuartile: number;
2838
- qualification: string;
2839
- showTeamScore: boolean;
2840
- private teamEffectivenessKey;
2841
- constructor(state: ViewModelStateBase<ITeamReportResultsState>, snackBar: MatSnackBar);
2842
- protected onDataUpdate(data: ITeamReportResultsState): void;
2843
- static ɵfac: i0.ɵɵFactoryDeclaration<TeamEffectivenessComponent, never>;
2844
- static ɵcmp: i0.ɵɵComponentDeclaration<TeamEffectivenessComponent, "teameffectiveness", never, {}, {}, never, never, false, never>;
2965
+ declare class DialogSubscribeModule {
2966
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogSubscribeModule, never>;
2967
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DialogSubscribeModule, [typeof DialogSubscribeComponent, typeof OpenSubscribeDialogDirective], [typeof i2$2.MatDialogModule, typeof i2$1.CommonModule], [typeof DialogSubscribeComponent, typeof OpenSubscribeDialogDirective]>;
2968
+ static ɵinj: i0.ɵɵInjectorDeclaration<DialogSubscribeModule>;
2845
2969
  }
2846
2970
 
2847
- declare class TermsService {
2971
+ declare class ResourceDownloadService {
2848
2972
  private http;
2849
2973
  private config;
2850
2974
  private baseUrl;
2851
2975
  constructor(http: HttpClient, config: ApiConfig);
2852
- accept(): Observable<any>;
2853
- static ɵfac: i0.ɵɵFactoryDeclaration<TermsService, never>;
2854
- static ɵprov: i0.ɵɵInjectableDeclaration<TermsService>;
2976
+ get(publicKey: string, brandingSettings: ContentBrandingDto): Promise<ResourceDownloadRedirectUrlDto>;
2977
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResourceDownloadService, never>;
2978
+ static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDownloadService>;
2855
2979
  }
2856
-
2857
- declare class TermsUpdatedComponent extends ComponentWithViewStateBase<IResultsState> {
2858
- private termsService;
2859
- protected state: ViewModelStateBase<IResultsState>;
2860
- protected snackBar: MatSnackBar;
2861
- legal: LegalDto;
2862
- termsUpdated: boolean;
2863
- sending: boolean;
2864
- constructor(termsService: TermsService, state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar);
2865
- accept(): Promise<void>;
2866
- protected onDataUpdate(data: IResultsState): void;
2867
- static ɵfac: i0.ɵɵFactoryDeclaration<TermsUpdatedComponent, never>;
2868
- static ɵcmp: i0.ɵɵComponentDeclaration<TermsUpdatedComponent, "termsupdated", never, {}, {}, never, never, false, never>;
2980
+ declare class ResourceDownloadRedirectUrlDto {
2981
+ cdnUrl: string;
2869
2982
  }
2870
2983
 
2871
- declare class TipBadgeComponent extends ComponentWithViewStateBase<IResultsState> {
2872
- protected state: ViewModelStateBase<ITeamReportResultsState>;
2873
- protected snackBar: MatSnackBar;
2874
- dimension: string;
2875
- label: string;
2876
- key: string;
2877
- feedbackKey: string;
2878
- impact: number;
2879
- class: string;
2880
- subscribed: boolean;
2881
- baseUrl: string;
2882
- constructor(state: ViewModelStateBase<ITeamReportResultsState>, snackBar: MatSnackBar);
2883
- protected onDataUpdate(data: IResultsState): void;
2884
- static ɵfac: i0.ɵɵFactoryDeclaration<TipBadgeComponent, never>;
2885
- static ɵcmp: i0.ɵɵComponentDeclaration<TipBadgeComponent, "tip-badge", never, { "dimension": { "alias": "dimension"; "required": false; }; }, {}, never, never, false, never>;
2984
+ declare class DialogResourceDownloadComponent {
2985
+ private brandingProvider;
2986
+ private snackBar;
2987
+ private dialogRef;
2988
+ private downloadService;
2989
+ publicKey: string;
2990
+ cdnUrl: string;
2991
+ error: boolean;
2992
+ private contentBranding;
2993
+ constructor(brandingProvider: BrandingProvider, snackBar: MatSnackBar, data: string, dialogRef: MatDialogRef<DialogResourceDownloadComponent>, downloadService: ResourceDownloadService);
2994
+ ngOnInit(): Promise<void>;
2995
+ initiateDownload(): Promise<void>;
2996
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogResourceDownloadComponent, never>;
2997
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogResourceDownloadComponent, "ng-component", never, {}, {}, never, never, false, never>;
2998
+ }
2999
+ declare class OpenResourceDownloadDialogDirective {
3000
+ private dialog;
3001
+ publicKey: string;
3002
+ constructor(dialog: MatDialog);
3003
+ onClick(): void;
3004
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenResourceDownloadDialogDirective, never>;
3005
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenResourceDownloadDialogDirective, "[resourceDownloadDialog]", never, { "publicKey": { "alias": "publicKey"; "required": false; }; }, {}, never, never, false, never>;
2886
3006
  }
2887
3007
 
2888
- declare class FactorService {
2889
- toSelectList(model: ModelStructureDto): SelectItem[];
2890
- static ɵfac: i0.ɵɵFactoryDeclaration<FactorService, never>;
2891
- static ɵprov: i0.ɵɵInjectableDeclaration<FactorService>;
3008
+ declare class ResourceDownloadModule {
3009
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResourceDownloadModule, never>;
3010
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ResourceDownloadModule, [typeof DialogResourceDownloadComponent, typeof OpenResourceDownloadDialogDirective], [typeof i2$2.MatDialogModule, typeof i3$2.MatSnackBarModule, typeof BrandingModule, typeof i2$1.CommonModule], [typeof DialogResourceDownloadComponent, typeof OpenResourceDownloadDialogDirective]>;
3011
+ static ɵinj: i0.ɵɵInjectorDeclaration<ResourceDownloadModule>;
2892
3012
  }
2893
3013
 
2894
- declare class TrendDataSetDto {
2895
- name: string;
2896
- variables: VariableDto[];
2897
- generatorNotes: string[];
3014
+ declare class GuideCollectionDto {
3015
+ guides: GuideDto[];
3016
+ active: GuideDto;
2898
3017
  }
2899
- declare class VariableDto {
3018
+ declare class GuideDto {
3019
+ key: string;
2900
3020
  name: string;
2901
- color: string;
2902
- series: MeasurementDto[];
3021
+ steps: GuideStepDto[];
2903
3022
  }
2904
- declare class MeasurementDto {
2905
- name: string;
2906
- value: number;
2907
- min: number;
2908
- max: number;
3023
+ declare class GuideStepDto {
3024
+ key: string;
3025
+ title: string;
3026
+ body: string;
3027
+ url: string;
3028
+ completed: boolean;
3029
+ media: GuideStepMediaDto[];
3030
+ }
3031
+ declare class GuideStepMediaDto {
3032
+ type: GuideMediaTypeEnum;
3033
+ sourceUrl: string;
3034
+ clickUrl: string;
3035
+ }
3036
+ declare class GuideStateDto {
3037
+ constructor();
3038
+ activeGuideKey: string;
3039
+ completedSteps: string[];
3040
+ }
3041
+ declare enum GuideMediaTypeEnum {
3042
+ image = "Image",
3043
+ video = "Video"
2909
3044
  }
2910
3045
 
2911
- declare class TrendDataRequestDto {
2912
- type: string;
2913
- teamKey: string;
2914
- clientKey: string;
2915
- teamKeys: string[];
2916
- clientKeys: string[];
2917
- includeSpread: boolean;
2918
- dateRange: DateRangeDto;
2919
- factorKeys: string[];
2920
- periodGrouping: DeltaPeriodEnum;
2921
- includeActions: IncludeActionsModeEnum;
3046
+ interface IGuideState extends IViewState {
3047
+ guides: GuideCollectionDto;
2922
3048
  }
2923
3049
 
2924
- declare class TrendService {
2925
- private http;
3050
+ declare const GuidesConfigToken: InjectionToken<GuideConfigDto>;
3051
+ declare class GuidesClientConfig {
3052
+ private config?;
3053
+ constructor(config?: GuideConfigDto);
3054
+ set(config: GuideConfigDto): void;
3055
+ get(): GuideConfigDto;
3056
+ static ɵfac: i0.ɵɵFactoryDeclaration<GuidesClientConfig, [{ optional: true; }]>;
3057
+ static ɵprov: i0.ɵɵInjectableDeclaration<GuidesClientConfig>;
3058
+ }
3059
+ declare class GuideConfigDto {
3060
+ autoOpen: boolean;
3061
+ }
3062
+
3063
+ interface IGuideStateService {
3064
+ activeGuideUpdated: BehaviorSubject<GuideDto>;
3065
+ dismiss(): Promise<void>;
3066
+ startGuide(guide: GuideDto): Promise<void>;
3067
+ stepToggle(stepKey: string): Promise<void>;
3068
+ }
3069
+
3070
+ declare const GUIDESTATE_PROVIDER: InjectionToken<IGuideStateService>;
3071
+ declare class GuidePopupService {
3072
+ private state;
3073
+ private dialog;
3074
+ private guideStateService;
2926
3075
  private config;
2927
- private baseUrl;
2928
- constructor(http: HttpClient, config: ApiConfig);
2929
- team(request: TrendDataRequestDto): rxjs.Observable<TrendDataSetDto>;
2930
- static ɵfac: i0.ɵɵFactoryDeclaration<TrendService, never>;
2931
- static ɵprov: i0.ɵɵInjectableDeclaration<TrendService>;
3076
+ showResumeGuideOption: BehaviorSubject<boolean>;
3077
+ private activeGuide;
3078
+ private guides;
3079
+ private alreadyOpened;
3080
+ constructor(state: ViewModelStateBase<IGuideState>, dialog: MatDialog, guideStateService: IGuideStateService, config: GuidesClientConfig);
3081
+ startGuide<T>(dialogComponent: ComponentType<T>, guide: GuideDto): Promise<void>;
3082
+ startGuideByKey<T>(dialogComponent: ComponentType<T>, guideKey: string): Promise<void>;
3083
+ stepToggle(step: GuideStepDto): Promise<void>;
3084
+ open<T>(dialogComponent: ComponentType<T>): void;
3085
+ resumeGuide<T>(dialogComponent: ComponentType<T>): void;
3086
+ closeWithResume(): Promise<void>;
3087
+ dismiss(): Promise<void>;
3088
+ static ɵfac: i0.ɵɵFactoryDeclaration<GuidePopupService, never>;
3089
+ static ɵprov: i0.ɵɵInjectableDeclaration<GuidePopupService>;
2932
3090
  }
2933
3091
 
2934
- declare class TrendsComponent extends ComponentWithViewStateBase<IResultsState> {
2935
- private formBuilder;
2936
- protected snackBar: MatSnackBar;
2937
- private factorService;
2938
- private trendService;
2939
- protected route: ActivatedRoute;
3092
+ declare class StartGuideDirective {
3093
+ private guidePopupService;
3094
+ guideKey: string;
3095
+ constructor(guidePopupService: GuidePopupService);
3096
+ onClick(): void;
3097
+ static ɵfac: i0.ɵɵFactoryDeclaration<StartGuideDirective, never>;
3098
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StartGuideDirective, "[startGuide]", never, { "guideKey": { "alias": "guideKey"; "required": false; }; }, {}, never, never, false, never>;
3099
+ }
3100
+
3101
+ declare class DialogGuideComponent extends ComponentWithViewStateBase<IGuideState> {
2940
3102
  private state;
2941
- units: SelectItem[];
2942
- unitType: string;
2943
- chartContainer: ElementRef<HTMLDivElement>;
2944
- factors: SelectItem[];
2945
- data: any[];
2946
- generatorNotes: string[];
2947
- loading: boolean;
2948
- form: UntypedFormGroup;
2949
- view: [number, number];
2950
- legendPosition: LegendPosition;
2951
- customColors: any[];
2952
- periodGroupings: SelectItem[];
2953
- includeActionOptions: SelectItem[];
2954
- constructor(formBuilder: UntypedFormBuilder, snackBar: MatSnackBar, factorService: FactorService, trendService: TrendService, route: ActivatedRoute, state: ViewModelStateBase<IResultsState>);
3103
+ guidePopupService: GuidePopupService;
3104
+ private guideStateService;
3105
+ private guidesDialog;
3106
+ protected snackBar: MatSnackBar;
3107
+ private dialog;
3108
+ smallScreen: boolean;
3109
+ activeStep: GuideStepDto;
3110
+ guide: GuideDto;
3111
+ constructor(state: ViewModelStateBase<IGuideState>, guidePopupService: GuidePopupService, guideStateService: IGuideStateService, guidesDialog: ComponentType<any>, snackBar: MatSnackBar, dialog: MatDialog);
2955
3112
  ngOnInit(): void;
2956
- onFormSubmit(): void;
2957
- onResize(): void;
2958
- private createForm;
2959
- compareFactorOptions(o1: SelectItem, o2: SelectItem): boolean;
2960
- protected onDataUpdate(data: IResultsState): void;
2961
- static ɵfac: i0.ɵɵFactoryDeclaration<TrendsComponent, never>;
2962
- static ɵcmp: i0.ɵɵComponentDeclaration<TrendsComponent, "trends", never, { "units": { "alias": "units"; "required": false; }; "unitType": { "alias": "unitType"; "required": false; }; }, {}, never, never, false, never>;
3113
+ toGuides(): Promise<void>;
3114
+ dismiss(): Promise<void>;
3115
+ handleCheckChange(item: GuideStepDto, checked: boolean): Promise<void>;
3116
+ next(item: GuideStepDto): Promise<void>;
3117
+ complete(item: GuideStepDto): Promise<void>;
3118
+ showSteps(): boolean;
3119
+ select(item: GuideStepDto): void;
3120
+ isLastStep(item: GuideStepDto): boolean;
3121
+ private selectNextOpenItem;
3122
+ protected onDataUpdate(data: IGuideState): void;
3123
+ onWindowResize(): void;
3124
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogGuideComponent, never>;
3125
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogGuideComponent, "ng-component", never, {}, {}, never, never, false, never>;
3126
+ }
3127
+ declare class OpenGuideDialogDirective {
3128
+ private dialog;
3129
+ private guidePopupService;
3130
+ private guideDialog;
3131
+ constructor(dialog: MatDialog, guidePopupService: GuidePopupService, guideDialog: ComponentType<any>);
3132
+ onClick(): void;
3133
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenGuideDialogDirective, never>;
3134
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenGuideDialogDirective, "[guideDialog]", never, {}, {}, never, never, false, never>;
2963
3135
  }
3136
+ declare const DIALOG_GUIDE_TOKEN: InjectionToken<ComponentType<any>>;
2964
3137
 
2965
- declare class TryNowProfessionalComponent extends ComponentWithViewStateBase<IResultsState> {
3138
+ declare class DialogGuidesComponent extends ComponentWithViewStateBase<IGuideState> {
2966
3139
  private state;
3140
+ guidePopupService: GuidePopupService;
3141
+ private guideStateService;
3142
+ private guideDialog;
3143
+ dialog: MatDialog;
2967
3144
  protected snackBar: MatSnackBar;
2968
- show: boolean;
2969
- subscribeUrl: string;
2970
- constructor(state: ViewModelStateBase<ITeamReportResultsState>, snackBar: MatSnackBar);
2971
- protected onDataUpdate(data: ITeamReportResultsState): void;
2972
- static ɵfac: i0.ɵɵFactoryDeclaration<TryNowProfessionalComponent, never>;
2973
- static ɵcmp: i0.ɵɵComponentDeclaration<TryNowProfessionalComponent, "trynow-professional", never, {}, {}, never, never, false, never>;
3145
+ guides: GuideDto[];
3146
+ activeGuideKey: string;
3147
+ private subscription;
3148
+ constructor(state: ViewModelStateBase<IGuideState>, guidePopupService: GuidePopupService, guideStateService: IGuideStateService, guideDialog: ComponentType<any>, dialog: MatDialog, snackBar: MatSnackBar);
3149
+ ngOnInit(): void;
3150
+ setActiveGuide(guide: GuideDto): Promise<void>;
3151
+ protected onDataUpdate(data: IGuideState): void;
3152
+ ngOnDestroy(): void;
3153
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogGuidesComponent, never>;
3154
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogGuidesComponent, "ng-component", never, {}, {}, never, never, false, never>;
3155
+ }
3156
+ declare class OpenGuidesDialogDirective {
3157
+ private dialog;
3158
+ private guidesDialog;
3159
+ constructor(dialog: MatDialog, guidesDialog: ComponentType<any>);
3160
+ onClick(): void;
3161
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenGuidesDialogDirective, never>;
3162
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenGuidesDialogDirective, "[guidesDialog]", never, {}, {}, never, never, false, never>;
2974
3163
  }
3164
+ declare const DIALOG_GUIDES_TOKEN: InjectionToken<ComponentType<any>>;
2975
3165
 
2976
- declare class UpdateInProgressComponent extends ComponentWithViewStateBase<IResultsState> {
2977
- protected state: ViewModelStateBase<ITeamReportResultsState>;
3166
+ declare class ResumeGuideHoverComponent extends ComponentWithViewStateBase<IGuideState> {
3167
+ private state;
3168
+ private guidePopupService;
3169
+ private guideDialog;
2978
3170
  protected snackBar: MatSnackBar;
2979
- delayedReloading: boolean;
2980
- private subscription;
2981
- constructor(state: ViewModelStateBase<ITeamReportResultsState>, snackBar: MatSnackBar);
3171
+ private dialog;
3172
+ showResumeGuide: boolean;
3173
+ constructor(state: ViewModelStateBase<IGuideState>, guidePopupService: GuidePopupService, guideDialog: ComponentType<any>, snackBar: MatSnackBar, dialog: MatDialog);
3174
+ protected onDataUpdate(): void;
3175
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResumeGuideHoverComponent, never>;
3176
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResumeGuideHoverComponent, "resumeguidehover", never, {}, {}, never, never, false, never>;
3177
+ }
3178
+
3179
+ declare class ImageSliderComponent {
3180
+ private intervalId;
3181
+ index: number;
3182
+ maxIndex: number;
3183
+ total: number;
3184
+ items: GuideStepMediaDto[];
2982
3185
  ngOnInit(): void;
3186
+ ngAfterContentChecked(): void;
3187
+ private nextImage;
3188
+ select(index: number): void;
2983
3189
  ngOnDestroy(): void;
2984
- static ɵfac: i0.ɵɵFactoryDeclaration<UpdateInProgressComponent, never>;
2985
- static ɵcmp: i0.ɵɵComponentDeclaration<UpdateInProgressComponent, "update-in-progress", never, {}, {}, never, never, false, never>;
3190
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageSliderComponent, never>;
3191
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageSliderComponent, "imageslider", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
2986
3192
  }
2987
3193
 
2988
- declare class UserProfileService {
2989
- private http;
2990
- private config;
2991
- private baseUrl;
2992
- constructor(http: HttpClient, config: ApiConfig);
2993
- update(userProfile: UserProfileDto): Observable<any>;
2994
- setAvatar(file: File): Observable<any>;
2995
- clearAvatar(): Observable<any>;
2996
- sendMFAEnrollment(): Observable<any>;
2997
- resetMFAEnrollment(): Observable<any>;
2998
- createAPITokens(): Observable<any>;
2999
- static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileService, never>;
3000
- static ɵprov: i0.ɵɵInjectableDeclaration<UserProfileService>;
3194
+ declare class GuidesModule {
3195
+ static ɵfac: i0.ɵɵFactoryDeclaration<GuidesModule, never>;
3196
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GuidesModule, [typeof StartGuideDirective, typeof OpenGuideDialogDirective, typeof OpenGuidesDialogDirective, typeof DialogGuidesComponent, typeof ResumeGuideHoverComponent, typeof DialogGuideComponent, typeof ImageSliderComponent], [typeof i2$2.MatDialogModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i2$1.CommonModule, typeof BrandingModule, typeof CheckboxModule, typeof i9.StorageServiceModule], [typeof StartGuideDirective, typeof OpenGuideDialogDirective, typeof OpenGuidesDialogDirective, typeof DialogGuidesComponent, typeof ResumeGuideHoverComponent, typeof DialogGuideComponent, typeof ImageSliderComponent]>;
3197
+ static ɵinj: i0.ɵɵInjectorDeclaration<GuidesModule>;
3198
+ }
3199
+
3200
+ declare class ResultsModule {
3201
+ static ɵfac: i0.ɵɵFactoryDeclaration<ResultsModule, never>;
3202
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ResultsModule, [typeof ArrowComponent, typeof DeltaArrowComponent, typeof BenchmarkIndicatorComponent, typeof ResultIndicatorComponent, typeof FocusAreasComponent, typeof ImpactIndicatorComponent, typeof AgeIndicatorComponent, typeof RoadmapComponent, typeof TryNowProfessionalComponent, typeof ModelComponent, typeof QuickTipsComponent, typeof ModelFactorComponent, typeof RecommendationComponent, typeof RecommendationsComponent, typeof ModelSwitcherComponent, typeof ResearchComponent, typeof DoItYourselfWorkshopsComponent, typeof DoItYourselfComponent, typeof ModelFactorBreakdownComponent, typeof FooterComponent, typeof DialogSettingsComponent, typeof NavButtonComponent, typeof TermsUpdatedComponent, typeof OpenSettingsDialogDirective, typeof WidgetFactorScoreComponent, typeof WidgetParticipationRateComponent, typeof TeamEffectivenessComponent, typeof DialogExportFactorScoresComponent, typeof OpenExportFactorScoresDialogDirective, typeof DialogExportTeamListComponent, typeof OpenExportTeamListDialogDirective, typeof DialogTeamFilterComponent, typeof OpenTeamFilterDialogDirective, typeof FactorAxisComponent, typeof TipBadgeComponent, typeof DialogNotesComponent, typeof FilterTagsComponent, typeof LimitationsApplyComponent, typeof OpenNotesDialogDirective, typeof FactorsComponent, typeof TrendsComponent, typeof BadgeComponent, typeof BadgesComponent, typeof BadgeStreakComponent, typeof UpdateInProgressComponent, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof BadgeProgressionComponent, typeof ParticipantsComponent, typeof VideoComponent, typeof UserProfileComponent], [typeof i5.ClipboardModule, typeof i51.NgxChartsModule, typeof SlugifyPipeModule, typeof i2$2.MatDialogModule, typeof i12.MatTooltipModule, typeof i55.MatNativeDateModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i3$1.ReactiveFormsModule, typeof i55.MatOptionModule, typeof i6.MatInputModule, typeof i59.MatSlideToggleModule, typeof BrandingModule, typeof i2.MatSelectModule, typeof i62.MatProgressSpinnerModule, typeof i22.MatDatepickerModule, typeof DateRangePipeModule, typeof i65.SatPopoverModule, typeof ActionsModule, typeof i2$1.CommonModule, typeof DialogSupportModule, typeof DialogSubscribeModule, typeof ResourceDownloadModule, typeof LoadingModule, typeof FactorInformationDialogModule, typeof GuidesModule], [typeof ArrowComponent, typeof DeltaArrowComponent, typeof BenchmarkIndicatorComponent, typeof TryNowProfessionalComponent, typeof ResultIndicatorComponent, typeof AgeIndicatorComponent, typeof FocusAreasComponent, typeof ImpactIndicatorComponent, typeof VideoComponent, typeof ModelComponent, typeof QuickTipsComponent, typeof ModelFactorComponent, typeof RoadmapComponent, typeof TermsUpdatedComponent, typeof FooterComponent, typeof NavButtonComponent, typeof RecommendationComponent, typeof ModelSwitcherComponent, typeof RecommendationsComponent, typeof FilterTagsComponent, typeof DoItYourselfWorkshopsComponent, typeof ModelFactorBreakdownComponent, typeof ResearchComponent, typeof LimitationsApplyComponent, typeof DoItYourselfComponent, typeof DialogSettingsComponent, typeof OpenSettingsDialogDirective, typeof TeamEffectivenessComponent, typeof WidgetFactorScoreComponent, typeof WidgetParticipationRateComponent, typeof DialogExportFactorScoresComponent, typeof UpdateInProgressComponent, typeof OpenExportFactorScoresDialogDirective, typeof DialogExportTeamListComponent, typeof OpenNotesDialogDirective, typeof OpenExportTeamListDialogDirective, typeof OpenTeamFilterDialogDirective, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof TipBadgeComponent, typeof FactorsComponent, typeof BadgesComponent, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof TrendsComponent, typeof BadgeComponent, typeof BadgeProgressionComponent, typeof BadgeStreakComponent, typeof ParticipantsComponent, typeof UserProfileComponent]>;
3203
+ static ɵinj: i0.ɵɵInjectorDeclaration<ResultsModule>;
3204
+ }
3205
+
3206
+ declare class ModelVisualizationModule {
3207
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelVisualizationModule, never>;
3208
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ModelVisualizationModule, [typeof ModelCanvasComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent], [typeof i2$1.CommonModule, typeof i3$1.FormsModule, typeof i3.RouterModule, typeof ResultsModule, typeof i65.SatPopoverModule, typeof FactorInformationDialogModule, typeof ProgressbarModule, typeof i4.MatFormFieldModule, typeof i3$1.ReactiveFormsModule, typeof DateRangePipeModule], [typeof ModelCanvasComponent, typeof ModelFactorIndicatorComponent, typeof ModelFactorCoreComponent, typeof ModelFactorBenchmarkComponent]>;
3209
+ static ɵinj: i0.ɵɵInjectorDeclaration<ModelVisualizationModule>;
3001
3210
  }
3002
3211
 
3003
3212
  declare class AccountService {
3004
3213
  private http;
3005
3214
  private config;
3006
- private baseUrl;
3007
3215
  constructor(http: HttpClient, config: ApiConfig);
3008
3216
  sendResetPassword(email: string): Observable<any>;
3217
+ getManageUrl(): Observable<any>;
3009
3218
  static ɵfac: i0.ɵɵFactoryDeclaration<AccountService, never>;
3010
3219
  static ɵprov: i0.ɵɵInjectableDeclaration<AccountService>;
3011
3220
  }
3012
3221
 
3013
- declare class UserProfileComponent extends ComponentWithViewStateBase<IResultsState> {
3014
- protected state: ViewModelStateBase<IResultsState>;
3222
+ declare class DialogAccountComponent extends ComponentWithViewStateBase<IResultsState> {
3015
3223
  private authService;
3016
- private userProfileService;
3224
+ protected snackBar: MatSnackBar;
3017
3225
  private accountService;
3018
- private formBuilder;
3019
- protected snackbar: MatSnackBar;
3020
- protected route: ActivatedRoute;
3021
- form: UntypedFormGroup;
3226
+ dialogRef: MatDialogRef<DialogAccountComponent>;
3227
+ private state;
3228
+ subscriptionKey: string;
3229
+ userName: string;
3022
3230
  loading: boolean;
3023
- userProfile: UserProfileDto;
3024
- changeAvatar: boolean;
3025
- color: string;
3231
+ isAdmin: boolean;
3026
3232
  email: string;
3027
- usesMFA: boolean;
3028
- allowMFA: boolean;
3029
- allowPasswordChange: boolean;
3030
- showEmailInput: boolean;
3031
- allowAPI: any;
3032
- constructor(state: ViewModelStateBase<IResultsState>, authService: AuthService, userProfileService: UserProfileService, accountService: AccountService, formBuilder: UntypedFormBuilder, snackbar: MatSnackBar, route: ActivatedRoute);
3233
+ constructor(authService: AuthService, snackBar: MatSnackBar, accountService: AccountService, dialogRef: MatDialogRef<DialogAccountComponent>, state: ViewModelStateBase<IResultsState>);
3033
3234
  ngOnInit(): void;
3034
- private createForm;
3035
- onSubmit(formDirective: FormGroupDirective): Promise<void>;
3036
- setChangeEmail(): void;
3037
- uploadAvatar($fileInput: any): void;
3038
- clearAvatar(): void;
3235
+ redirectToPortal(): Promise<void>;
3039
3236
  sendPasswordReset(): void;
3040
- sendMFAEnrollment(): void;
3041
- resetMFAEnrollment(): void;
3042
- createAPITokens(): void;
3237
+ signout(): void;
3043
3238
  protected onDataUpdate(data: IResultsState): void;
3044
- static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileComponent, never>;
3045
- static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileComponent, "userprofile", never, {}, {}, never, never, false, never>;
3239
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogAccountComponent, never>;
3240
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogAccountComponent, "ng-component", never, {}, {}, never, never, false, never>;
3241
+ }
3242
+ declare class OpenAccountDialogDirective {
3243
+ private dialog;
3244
+ constructor(dialog: MatDialog);
3245
+ onClick(): void;
3246
+ static ɵfac: i0.ɵɵFactoryDeclaration<OpenAccountDialogDirective, never>;
3247
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OpenAccountDialogDirective, "[accountDialog]", never, {}, {}, never, never, false, never>;
3046
3248
  }
3047
3249
 
3048
- declare class VideoComponent {
3049
- videoUrl: string;
3050
- videoTitle: string;
3051
- constructor();
3052
- ngOnInit(): void;
3053
- openVideo(): void;
3054
- static ɵfac: i0.ɵɵFactoryDeclaration<VideoComponent, never>;
3055
- static ɵcmp: i0.ɵɵComponentDeclaration<VideoComponent, "explainervideo", never, { "videoUrl": { "alias": "videoUrl"; "required": false; }; "videoTitle": { "alias": "videoTitle"; "required": false; }; }, {}, never, never, false, never>;
3250
+ declare class DialogAccountModule {
3251
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogAccountModule, never>;
3252
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DialogAccountModule, [typeof DialogAccountComponent, typeof OpenAccountDialogDirective], [typeof i2$2.MatDialogModule, typeof i2$1.CommonModule], [typeof DialogAccountComponent, typeof OpenAccountDialogDirective]>;
3253
+ static ɵinj: i0.ɵɵInjectorDeclaration<DialogAccountModule>;
3056
3254
  }
3057
3255
 
3058
- declare class WidgetFactorScoreComponent {
3059
- direction: string;
3060
- factorScore: FactorScoreDto;
3061
- factorScores: FactorScoreCollectionDto;
3062
- delta: FactorScoreCollectionDeltaDto;
3063
- benchmarkName: string;
3064
- factorScoreWidth: number;
3065
- score: number;
3066
- benchmark: number;
3067
- confidenceAvailable: boolean;
3068
- factorScoreLeft: number;
3069
- points: PointDto[];
3070
- constructor();
3071
- ngOnInit(): void;
3072
- static ɵfac: i0.ɵɵFactoryDeclaration<WidgetFactorScoreComponent, never>;
3073
- static ɵcmp: i0.ɵɵComponentDeclaration<WidgetFactorScoreComponent, "widget-factorscore", never, { "factorScore": { "alias": "factorScore"; "required": false; }; "factorScores": { "alias": "factorScores"; "required": false; }; "delta": { "alias": "delta"; "required": false; }; }, {}, never, never, false, never>;
3256
+ declare class ResetPasswordRequestDto {
3257
+ email: string;
3074
3258
  }
3075
3259
 
3076
- declare class WidgetParticipationRateComponent {
3077
- direction: string;
3078
- data: ParticipationRateDto;
3079
- factorScoreWidth: number;
3080
- percentage: number;
3081
- confidenceAvailable: boolean;
3082
- factorScoreLeft: number;
3260
+ declare class BackButtonDirective {
3261
+ private location;
3262
+ private router;
3263
+ constructor(location: Location, router: Router);
3264
+ onClick(): void;
3265
+ static ɵfac: i0.ɵɵFactoryDeclaration<BackButtonDirective, never>;
3266
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BackButtonDirective, "[backButton]", never, {}, {}, never, never, false, never>;
3267
+ }
3268
+
3269
+ declare class BackButtonDirectiveModule {
3270
+ static ɵfac: i0.ɵɵFactoryDeclaration<BackButtonDirectiveModule, never>;
3271
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BackButtonDirectiveModule, [typeof BackButtonDirective], never, [typeof BackButtonDirective]>;
3272
+ static ɵinj: i0.ɵɵInjectorDeclaration<BackButtonDirectiveModule>;
3273
+ }
3274
+
3275
+ declare class ClickableTooltipDirective {
3276
+ private matTooltip;
3277
+ onClick(): void;
3278
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickableTooltipDirective, never>;
3279
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickableTooltipDirective, "[matTooltip]", never, {}, {}, never, never, true, never>;
3280
+ }
3281
+
3282
+ declare class GuardsModule {
3283
+ static ɵfac: i0.ɵɵFactoryDeclaration<GuardsModule, never>;
3284
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GuardsModule, never, never, never>;
3285
+ static ɵinj: i0.ɵɵInjectorDeclaration<GuardsModule>;
3286
+ }
3287
+
3288
+ declare class ValidChangeTokenGuard implements CanActivate {
3289
+ private router;
3290
+ constructor(router: Router);
3291
+ canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
3292
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValidChangeTokenGuard, never>;
3293
+ static ɵprov: i0.ɵɵInjectableDeclaration<ValidChangeTokenGuard>;
3294
+ }
3295
+
3296
+ declare class ValidKeyGuard implements CanActivate {
3297
+ private router;
3298
+ constructor(router: Router);
3299
+ canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
3300
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValidKeyGuard, never>;
3301
+ static ɵprov: i0.ɵɵInjectableDeclaration<ValidKeyGuard>;
3302
+ }
3303
+
3304
+ declare class ValidKeySnapshotKeyGuard implements CanActivate {
3305
+ private router;
3306
+ constructor(router: Router);
3307
+ canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
3308
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValidKeySnapshotKeyGuard, never>;
3309
+ static ɵprov: i0.ɵɵInjectableDeclaration<ValidKeySnapshotKeyGuard>;
3310
+ }
3311
+
3312
+ declare class ValidKeyTeamKeyGuard implements CanActivate {
3313
+ private router;
3314
+ constructor(router: Router);
3315
+ canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
3316
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValidKeyTeamKeyGuard, never>;
3317
+ static ɵprov: i0.ɵɵInjectableDeclaration<ValidKeyTeamKeyGuard>;
3318
+ }
3319
+
3320
+ declare class ErrorDto {
3083
3321
  constructor();
3084
- ngOnInit(): void;
3085
- static ɵfac: i0.ɵɵFactoryDeclaration<WidgetParticipationRateComponent, never>;
3086
- static ɵcmp: i0.ɵɵComponentDeclaration<WidgetParticipationRateComponent, "widget-participationrate", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
3322
+ error: string;
3323
+ url: string;
3324
+ userAgent: string;
3325
+ stackTrace: string;
3326
+ serverStackTrace: string;
3327
+ details: ErrorDetailDto[];
3328
+ loggingSeverity: LoggingSeverityEnum;
3329
+ }
3330
+ declare class ApiErrorDto {
3331
+ code: number;
3332
+ type: string;
3333
+ message: string;
3334
+ stack: string;
3335
+ loggingSeverity: LoggingSeverityEnum;
3336
+ }
3337
+ declare class ErrorDetailDto {
3338
+ type: string;
3339
+ value: any;
3340
+ }
3341
+ declare enum LoggingSeverityEnum {
3342
+ information = 0,
3343
+ warning = 1,
3344
+ exception = 2
3087
3345
  }
3088
3346
 
3089
- declare class ExportFactorScoresRequestDto {
3090
- constructor(modelKey: string);
3091
- modelKey: string;
3092
- periodGrouping: string;
3093
- dateRange: DateRangeDto;
3094
- benchmark: BenchmarkTypeEnum;
3347
+ declare class ErrorServiceConfig {
3348
+ private config?;
3349
+ constructor(config?: ErrorServiceConfigDto);
3350
+ set(config: ErrorServiceConfigDto): void;
3351
+ get(): ErrorServiceConfigDto;
3352
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorServiceConfig, [{ optional: true; }]>;
3353
+ static ɵprov: i0.ɵɵInjectableDeclaration<ErrorServiceConfig>;
3095
3354
  }
3096
- declare class ExportTeamListRequestDto {
3097
- constructor(modelKey: string);
3098
- modelKey: string;
3355
+ declare class ErrorServiceConfigDto {
3356
+ errorSink: boolean;
3357
+ endpoint: string;
3358
+ enabled: boolean;
3099
3359
  }
3360
+ declare const ErrorConfigToken: InjectionToken<ErrorServiceConfigDto>;
3100
3361
 
3101
- declare class ExportService {
3362
+ declare class FrontAndBackendErrorHandler implements ErrorHandler {
3363
+ private router;
3364
+ private zone;
3102
3365
  private http;
3103
3366
  private config;
3104
- private baseUrl;
3105
- constructor(http: HttpClient, config: ApiConfig);
3106
- exportFactorScores(request: ExportFactorScoresRequestDto): Observable<any>;
3107
- exportTeamList(request: ExportTeamListRequestDto): Observable<any>;
3108
- exportParticipationRate(request: ExportTeamListRequestDto): Observable<any>;
3109
- static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
3110
- static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
3111
- }
3112
-
3113
- declare class DialogExportFactorScoresComponent extends ComponentWithViewStateBase<IViewState> {
3114
- private state;
3115
- protected snackBar: MatSnackBar;
3116
- private exportService;
3117
- private dialogRef;
3118
- private formBuilder;
3119
- form: FormGroup;
3120
- sending: boolean;
3121
- submitted: boolean;
3122
- modelKey: string;
3123
- periodGroupings: SelectItem[];
3124
- benchmarkTypes: SelectItem[];
3125
- constructor(state: ViewModelStateBase<IViewState>, snackBar: MatSnackBar, exportService: ExportService, dialogRef: MatDialogRef<DialogExportFactorScoresComponent>, formBuilder: FormBuilder);
3126
- ngOnInit(): void;
3127
- submit(): Promise<void>;
3128
- protected onDataUpdate(data: IResultsState): void;
3129
- private createForm;
3130
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogExportFactorScoresComponent, never>;
3131
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogExportFactorScoresComponent, "ng-component", never, {}, {}, never, never, false, never>;
3367
+ constructor(router: Router, zone: NgZone, http: HttpClient, config: ErrorServiceConfig);
3368
+ handleError(originError: any): void;
3369
+ static ɵfac: i0.ɵɵFactoryDeclaration<FrontAndBackendErrorHandler, never>;
3370
+ static ɵprov: i0.ɵɵInjectableDeclaration<FrontAndBackendErrorHandler>;
3132
3371
  }
3133
3372
 
3134
- declare class OpenExportFactorScoresDialogDirective {
3135
- private dialog;
3136
- constructor(dialog: MatDialog);
3137
- onClick(): void;
3138
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenExportFactorScoresDialogDirective, never>;
3139
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenExportFactorScoresDialogDirective, "[exportFactorScoresDialog]", never, {}, {}, never, never, false, never>;
3373
+ declare class ErrorServiceModule {
3374
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorServiceModule, never>;
3375
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ErrorServiceModule, never, [typeof i3.RouterModule, typeof i2$1.CommonModule], never>;
3376
+ static ɵinj: i0.ɵɵInjectorDeclaration<ErrorServiceModule>;
3140
3377
  }
3141
3378
 
3142
- declare class DialogExportTeamListComponent extends ComponentWithViewStateBase<IResultsState> {
3379
+ declare class GuideStateInBackEndService implements IGuideStateService {
3380
+ private http;
3381
+ private config;
3143
3382
  private state;
3144
- protected snackBar: MatSnackBar;
3145
- protected userSettings: IUserSettingStrategy;
3146
- private exportService;
3147
- private dialogRef;
3148
- private formBuilder;
3149
- form: FormGroup;
3150
- sending: boolean;
3151
- modelKey: string;
3152
- constructor(state: ViewModelStateBase<IResultsState>, snackBar: MatSnackBar, userSettings: IUserSettingStrategy, exportService: ExportService, dialogRef: MatDialogRef<DialogExportTeamListComponent>, formBuilder: FormBuilder);
3153
- ngOnInit(): void;
3154
- exportTeamSummaries(): Promise<void>;
3155
- exportParticipationRate(): Promise<void>;
3156
- protected onDataUpdate(data: IResultsState): void;
3157
- private createForm;
3158
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogExportTeamListComponent, never>;
3159
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogExportTeamListComponent, "ng-component", never, {}, {}, never, never, false, never>;
3160
- }
3161
-
3162
- declare class OpenExportTeamListDialogDirective {
3163
- private dialog;
3164
- constructor(dialog: MatDialog);
3165
- onClick(): void;
3166
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenExportTeamListDialogDirective, never>;
3167
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenExportTeamListDialogDirective, "[exportTeamListDialog]", never, {}, {}, never, never, false, never>;
3383
+ activeGuideUpdated: BehaviorSubject<GuideDto>;
3384
+ private guideState;
3385
+ constructor(http: HttpClient, config: ApiConfig, state: ViewModelStateBase<IGuideState>);
3386
+ dismiss(): Promise<void>;
3387
+ startGuide(guide: GuideDto): Promise<void>;
3388
+ stepToggle(stepKey: string): Promise<void>;
3389
+ static ɵfac: i0.ɵɵFactoryDeclaration<GuideStateInBackEndService, never>;
3390
+ static ɵprov: i0.ɵɵInjectableDeclaration<GuideStateInBackEndService>;
3168
3391
  }
3169
3392
 
3170
- declare class DialogModelFilterComponent extends ComponentWithViewStateBase<IResultsState> {
3393
+ declare class GuideStateInBrowserService implements IGuideStateService {
3394
+ private storage;
3171
3395
  private state;
3172
- protected userSettings: IUserSettingStrategy;
3173
- protected snackBar: MatSnackBar;
3174
- private dialogRef;
3175
- private formBuilder;
3176
- form: UntypedFormGroup;
3177
- sending: boolean;
3178
- submitted: boolean;
3179
- models: ModelSummaryDto[];
3180
- constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, snackBar: MatSnackBar, dialogRef: MatDialogRef<DialogModelFilterComponent>, formBuilder: UntypedFormBuilder);
3181
- ngOnInit(): void;
3182
- submit(): Promise<void>;
3183
- private createForm;
3184
- protected onDataUpdate(data: IResultsState): void;
3185
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogModelFilterComponent, never>;
3186
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogModelFilterComponent, "ng-component", never, {}, {}, never, never, false, never>;
3187
- }
3188
- declare class OpenModelFilterDialog {
3189
- private dialog;
3190
- constructor(dialog: MatDialog);
3191
- onClick(): void;
3192
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenModelFilterDialog, never>;
3193
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenModelFilterDialog, "[modelFilterDialog]", never, {}, {}, never, never, false, never>;
3396
+ activeGuideUpdated: BehaviorSubject<GuideDto>;
3397
+ private guideState;
3398
+ constructor(storage: StorageService, state: ViewModelStateBase<IGuideState>);
3399
+ dismiss(): Promise<void>;
3400
+ startGuide(guide: GuideDto): Promise<void>;
3401
+ stepToggle(stepKey: string): Promise<void>;
3402
+ static ɵfac: i0.ɵɵFactoryDeclaration<GuideStateInBrowserService, never>;
3403
+ static ɵprov: i0.ɵɵInjectableDeclaration<GuideStateInBrowserService>;
3194
3404
  }
3195
3405
 
3196
- declare class DialogSettingsComponent extends ComponentWithViewStateBase<IResultsState> {
3197
- dialogRef: MatDialogRef<DialogSettingsComponent>;
3198
- private factorService;
3199
- private userSettingsService;
3200
- protected snackBar: MatSnackBar;
3201
- private formBuilder;
3202
- private state;
3203
- form: FormGroup;
3204
- sending: boolean;
3205
- private settings;
3206
- factors: SelectItem[];
3207
- isSingleTeam: boolean;
3208
- isSubscriber: boolean;
3209
- modelFilterSettings: ModelFilter;
3210
- customFactorsSelected: boolean;
3211
- benchmarkTypes: SelectItem[];
3212
- deltaPeriods: SelectItem[];
3213
- interventionFilterTypes: SelectItem[];
3214
- qualifyByTypes: SelectItem[];
3215
- constructor(dialogRef: MatDialogRef<DialogSettingsComponent>, factorService: FactorService, userSettingsService: UserSettingService, snackBar: MatSnackBar, formBuilder: FormBuilder, state: ViewModelStateBase<IResultsState>);
3216
- ngOnInit(): void;
3217
- submit(): void;
3218
- resetOverviewFactors(): void;
3219
- verifyOverviewFactors(): void;
3220
- private createForm;
3221
- protected onDataUpdate(data: IResultsState): void;
3222
- private arraysHaveSameElements;
3223
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogSettingsComponent, never>;
3224
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogSettingsComponent, "ng-component", never, {}, {}, never, never, false, never>;
3406
+ declare class CallbackPipe implements PipeTransform {
3407
+ transform<T>(items: any[], callback: (item: T) => boolean): T[];
3408
+ static ɵfac: i0.ɵɵFactoryDeclaration<CallbackPipe, never>;
3409
+ static ɵpipe: i0.ɵɵPipeDeclaration<CallbackPipe, "callback", false>;
3225
3410
  }
3226
- declare class OpenSettingsDialogDirective {
3227
- private dialog;
3228
- showSettingStacking: boolean;
3229
- constructor(dialog: MatDialog);
3230
- onClick(): void;
3231
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenSettingsDialogDirective, never>;
3232
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenSettingsDialogDirective, "[settingsDialog]", never, { "showSettingStacking": { "alias": "showSettingStacking"; "required": false; }; }, {}, never, never, false, never>;
3411
+
3412
+ declare class CallbackPipeModule {
3413
+ static ɵfac: i0.ɵɵFactoryDeclaration<CallbackPipeModule, never>;
3414
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CallbackPipeModule, [typeof CallbackPipe], never, [typeof CallbackPipe]>;
3415
+ static ɵinj: i0.ɵɵInjectorDeclaration<CallbackPipeModule>;
3233
3416
  }
3234
3417
 
3235
- declare class DialogTeamFilterComponent extends ComponentWithViewStateBase<IResultsState> {
3236
- tags: string[];
3237
- private state;
3238
- protected userSettings: IUserSettingStrategy;
3239
- protected snackBar: MatSnackBar;
3240
- private dialogRef;
3241
- private formBuilder;
3242
- form: UntypedFormGroup;
3243
- sending: boolean;
3244
- submitted: boolean;
3245
- filterSet: boolean;
3246
- constructor(tags: string[], state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, snackBar: MatSnackBar, dialogRef: MatDialogRef<DialogTeamFilterComponent>, formBuilder: UntypedFormBuilder);
3247
- ngOnInit(): void;
3248
- submit(): Promise<void>;
3249
- clear(): Promise<void>;
3250
- private createForm;
3251
- protected onDataUpdate(data: IResultsState): void;
3252
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogTeamFilterComponent, never>;
3253
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogTeamFilterComponent, "ng-component", never, {}, {}, never, never, false, never>;
3418
+ declare class SegmentNamePipe implements PipeTransform {
3419
+ constructor();
3420
+ transform(segment: SegmentEnum): string;
3421
+ static ɵfac: i0.ɵɵFactoryDeclaration<SegmentNamePipe, never>;
3422
+ static ɵpipe: i0.ɵɵPipeDeclaration<SegmentNamePipe, "segmentName", false>;
3254
3423
  }
3255
3424
 
3256
- declare class OpenTeamFilterDialogDirective {
3257
- private dialog;
3258
- tags: string[];
3259
- constructor(dialog: MatDialog);
3260
- onClick(): void;
3261
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenTeamFilterDialogDirective, never>;
3262
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenTeamFilterDialogDirective, "[teamFilterDialog]", never, { "tags": { "alias": "tags"; "required": false; }; }, {}, never, never, false, never>;
3425
+ declare class SegmentNamePipeModule {
3426
+ static ɵfac: i0.ɵɵFactoryDeclaration<SegmentNamePipeModule, never>;
3427
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SegmentNamePipeModule, [typeof SegmentNamePipe], never, [typeof SegmentNamePipe]>;
3428
+ static ɵinj: i0.ɵɵInjectorDeclaration<SegmentNamePipeModule>;
3263
3429
  }
3264
3430
 
3265
- declare class DialogNotesComponent {
3266
- notes: string[];
3267
- constructor(notes: string[]);
3268
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogNotesComponent, never>;
3269
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogNotesComponent, "ng-component", never, {}, {}, never, never, false, never>;
3431
+ declare class TruncatePipe implements PipeTransform {
3432
+ transform(value: string, limit?: number): string;
3433
+ static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
3434
+ static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "truncate", false>;
3270
3435
  }
3271
3436
 
3272
- declare class OpenNotesDialogDirective {
3273
- private dialog;
3274
- notes: string[];
3275
- constructor(dialog: MatDialog);
3276
- onClick(): void;
3277
- static ɵfac: i0.ɵɵFactoryDeclaration<OpenNotesDialogDirective, never>;
3278
- static ɵdir: i0.ɵɵDirectiveDeclaration<OpenNotesDialogDirective, "[notesDialog]", never, { "notes": { "alias": "notes"; "required": false; }; }, {}, never, never, false, never>;
3437
+ declare class TruncatePipeModule {
3438
+ static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipeModule, never>;
3439
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TruncatePipeModule, [typeof TruncatePipe], never, [typeof TruncatePipe]>;
3440
+ static ɵinj: i0.ɵɵInjectorDeclaration<TruncatePipeModule>;
3279
3441
  }
3280
3442
 
3281
3443
  declare class LocalUserDto {
@@ -3301,12 +3463,6 @@ declare class UserNameAndKeyDto {
3301
3463
  avatarUrl: string;
3302
3464
  }
3303
3465
 
3304
- declare class ResultsModule {
3305
- static ɵfac: i0.ɵɵFactoryDeclaration<ResultsModule, never>;
3306
- static ɵmod: i0.ɵɵNgModuleDeclaration<ResultsModule, [typeof ArrowComponent, typeof DeltaArrowComponent, typeof BenchmarkIndicatorComponent, typeof ResultIndicatorComponent, typeof FocusAreasComponent, typeof ImpactIndicatorComponent, typeof AgeIndicatorComponent, typeof RoadmapComponent, typeof TryNowProfessionalComponent, typeof ModelComponent, typeof QuickTipsComponent, typeof ModelFactorComponent, typeof RecommendationComponent, typeof RecommendationsComponent, typeof ModelSwitcherComponent, typeof ResearchComponent, typeof DoItYourselfWorkshopsComponent, typeof DoItYourselfComponent, typeof ModelFactorBreakdownComponent, typeof FooterComponent, typeof DialogSettingsComponent, typeof NavButtonComponent, typeof TermsUpdatedComponent, typeof OpenSettingsDialogDirective, typeof WidgetFactorScoreComponent, typeof WidgetParticipationRateComponent, typeof TeamEffectivenessComponent, typeof DialogExportFactorScoresComponent, typeof OpenExportFactorScoresDialogDirective, typeof DialogExportTeamListComponent, typeof OpenExportTeamListDialogDirective, typeof DialogTeamFilterComponent, typeof OpenTeamFilterDialogDirective, typeof FactorAxisComponent, typeof TipBadgeComponent, typeof DialogNotesComponent, typeof FilterTagsComponent, typeof LimitationsApplyComponent, typeof OpenNotesDialogDirective, typeof FactorsComponent, typeof TrendsComponent, typeof BadgeComponent, typeof BadgesComponent, typeof BadgeStreakComponent, typeof UpdateInProgressComponent, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof BadgeProgressionComponent, typeof ParticipantsComponent, typeof VideoComponent, typeof UserProfileComponent], [typeof i5.ClipboardModule, typeof i51.NgxChartsModule, typeof SlugifyPipeModule, typeof i2$2.MatDialogModule, typeof i12.MatTooltipModule, typeof i55.MatNativeDateModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i3$1.ReactiveFormsModule, typeof i55.MatOptionModule, typeof i6.MatInputModule, typeof i59.MatSlideToggleModule, typeof BrandingModule, typeof i2.MatSelectModule, typeof i62.MatProgressSpinnerModule, typeof i22.MatDatepickerModule, typeof DateRangePipeModule, typeof i65.SatPopoverModule, typeof ActionsModule, typeof i2$1.CommonModule, typeof DialogSupportModule, typeof DialogSubscribeModule, typeof ResourceDownloadModule, typeof LoadingModule, typeof FactorInformationDialogModule, typeof GuidesModule], [typeof ArrowComponent, typeof DeltaArrowComponent, typeof BenchmarkIndicatorComponent, typeof TryNowProfessionalComponent, typeof ResultIndicatorComponent, typeof AgeIndicatorComponent, typeof FocusAreasComponent, typeof ImpactIndicatorComponent, typeof VideoComponent, typeof ModelComponent, typeof QuickTipsComponent, typeof ModelFactorComponent, typeof RoadmapComponent, typeof TermsUpdatedComponent, typeof FooterComponent, typeof NavButtonComponent, typeof RecommendationComponent, typeof ModelSwitcherComponent, typeof RecommendationsComponent, typeof FilterTagsComponent, typeof DoItYourselfWorkshopsComponent, typeof ModelFactorBreakdownComponent, typeof ResearchComponent, typeof LimitationsApplyComponent, typeof DoItYourselfComponent, typeof DialogSettingsComponent, typeof OpenSettingsDialogDirective, typeof TeamEffectivenessComponent, typeof WidgetFactorScoreComponent, typeof WidgetParticipationRateComponent, typeof DialogExportFactorScoresComponent, typeof UpdateInProgressComponent, typeof OpenExportFactorScoresDialogDirective, typeof DialogExportTeamListComponent, typeof OpenNotesDialogDirective, typeof OpenExportTeamListDialogDirective, typeof OpenTeamFilterDialogDirective, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof TipBadgeComponent, typeof FactorsComponent, typeof BadgesComponent, typeof DialogModelFilterComponent, typeof OpenModelFilterDialog, typeof TrendsComponent, typeof BadgeComponent, typeof BadgeProgressionComponent, typeof BadgeStreakComponent, typeof ParticipantsComponent, typeof UserProfileComponent]>;
3307
- static ɵinj: i0.ɵɵInjectorDeclaration<ResultsModule>;
3308
- }
3309
-
3310
3466
  declare class DismissPopupService {
3311
3467
  private dismissedPopups;
3312
3468
  constructor();
@@ -3396,5 +3552,5 @@ declare class ViewModelStateConfigDto {
3396
3552
  }
3397
3553
  declare const ViewModelStateConfigToken: InjectionToken<ViewModelStateConfigDto>;
3398
3554
 
3399
- export { AactionConfigToken, AccountService$1 as AccountService, ActionClientConfig, ActionCollectionDto, ActionConfigDto, ActionDto, ActionListComponent, ActionListFilter, ActionManageComponent, ActionOptionDto, ActionOptionsDto, ActionPrefillDto, ActionService, ActionTeamDto, ActionTileComponent, ActionsModule, AgeIndicatorComponent, AlertAnnouncementComponent, AlertClientConfig, AlertConfigDto, AlertConfigToken, AlertDto, AlertFilterDto, AlertResponseDto, AlertService, AlertsComponent, AlertsModule, ApiConfig, ApiConfigDto, ApiConfigToken, ApiErrorDto, ArrowComponent, BackButtonDirective, BackButtonDirectiveModule, BadgeCollectionDto, BadgeComponent, BadgeDto, BadgeProgressionComponent, BadgeStreakComponent, BadgeTypeEnum, BadgesComponent, BenchmarkIndicatorComponent, BenchmarkOptionDto, BenchmarkTypeEnum, BrandBackgroundDirective, BrandConditionalBackgroundColorDirective, BrandConditionalColorDirective, BrandHoverColorDirective, BrandingModule, BrandingProvider, BrandingSettingsDto, CallbackPipe, CallbackPipeModule, ChannelDefaultBrandingDto, ChannelDto, CheckboxComponent, CheckboxModule, ClickableTooltipDirective, ClientInfoDto, ComponentBase, ComponentWithViewStateBase, ContactService, ContentBrandingDto, ContextItemDto, ContextTypes, DIALOG_GUIDES_TOKEN, DIALOG_GUIDE_TOKEN, DateRangeDto, DateRangePipe, DateRangePipeModule, DefinitionDto, DeltaArrowComponent, DeltaPeriodEnum, DialogAccountComponent, DialogAccountModule, DialogActionFiltersComponent, DialogActionManageComponent, DialogAlertsComponent, DialogExportActionsComponent, DialogExportFactorScoresComponent, DialogExportTeamListComponent, DialogFactorInformationComponent, DialogGuideComponent, DialogGuidesComponent, DialogModelFilterComponent, DialogNotesComponent, DialogResourceDownloadComponent, DialogSettingsComponent, DialogSubscribeComponent, DialogSubscribeModule, DialogSupportComponent, DialogSupportModule, DialogTeamFilterComponent, DimensionResultDto, DismissAlertRequestDto, DismissPopupService, DismissedAlertsService, DoItYourselfComponent, DoItYourselfWorkshopsComponent, EffectDto, EffectTypeEnum, ErrorConfigToken, ErrorDetailDto, ErrorDto, ErrorServiceConfig, ErrorServiceConfigDto, ErrorServiceModule, ExpandComponent, ExpandItemDto, ExpandModule, ExportActionsRequestDto, ExportFactorScoresRequestDto, ExportTeamListRequestDto, FactorAxisComponent, FactorEffectDto, FactorInformationDialogModule, FactorRecommendationDto, FactorScoreCollectionBenchmarkDto, FactorScoreCollectionCompositionDto, FactorScoreCollectionCompositionSegmentDto, FactorScoreCollectionDeltaDto, FactorScoreCollectionDto, FactorScoreCollectionFiltersDto, FactorScoreCompositionPointDto, FactorScoreCompositionPointsDto, FactorScoreDto, FactorService, FactorStructureConstraintDto, FactorStructureDto, FactorStructureSegmentDto, FactorsComponent, FeedbackQuickTipDto, FeedbackResourceDto, FilterTagsComponent, FocusAreasComponent, FooterComponent, FrontAndBackendErrorHandler, GUIDESTATE_PROVIDER, GuardsModule, GuideCollectionDto, GuideConfigDto, GuideDto, GuideMediaTypeEnum, GuidePopupService, GuideSettingsDto, GuideStateDto, GuideStateInBackEndService, GuideStateInBrowserService, GuideStepDto, GuideStepMediaDto, GuidesClientConfig, GuidesConfigToken, GuidesModule, ImageSliderComponent, ImpactIndicatorComponent, IncludeActionsModeEnum, InterventionFilterType, InterventionOwnerEnum, InterventionOwnerToStringPipe, InterventionSortEnum, InterventionStateEnum, InterventionStateToStringPipe, InterventionSummaryDto, InterventionTypeEnum, InterventionTypeToStringPipe, InviteUrlDto, KeyValueDto, LegalDocumentDto, LegalDto, LimitationsApplyComponent, LoadModes, LoadingComponent, LoadingModule, LocalUserDto, LoggingSeverityEnum, MatTagsComponent, MatTagsModule, MeasurementDto, MetaDataInputComponent, MetadataInputModule, ModelComponent, ModelDefinitionDto, ModelDemoUrlDto, ModelFactorBreakdownComponent, ModelFactorComponent, ModelFilter, ModelStructureDto, ModelSummaryDto, ModelSwitcherComponent, MultiEmailInputComponent, MultiEmailInputModule, NavButtonComponent, NavigationUrlDto, NavigationUrlTypeEnum, NgAddToCalendarModule, NoReloadStrategy, OpenAccountDialogDirective, OpenActionFiltersDialogDirective, OpenAddActionDialogDirective, OpenAlertsDialogDirective, OpenContactSalesDialog, OpenEditActionDialogDirective, OpenExportActionsDialogDirective, OpenExportFactorScoresDialogDirective, OpenExportTeamListDialogDirective, OpenFactorInformationDialogDirective, OpenFeedbackDialogDirective, OpenGuideDialogDirective, OpenGuidesDialogDirective, OpenLookingForHelpDialog, OpenModelFilterDialog, OpenNotesDialogDirective, OpenReportBugDialogDirective, OpenResourceDownloadDialogDirective, OpenSettingsDialogDirective, OpenSubscribeDialogDirective, OpenSupportDialogDirective, OpenTeamFilterDialogDirective, PaginatedResponse, PaginatorComponent, PaginatorModule, PaginatorPageEvent, PagingOptions, PaletteItem, ParticipantDto, ParticipantsComponent, ParticipationRateDto, PointDto, PointTypeEnum, ProcessingDataDto, QualificationEnum, QualifiedByEnum, QuantitySelectorComponent, QuantitySelectorModule, QuestionnaireTypeDto, QuickTipsComponent, RecommendationComponent, RecommendationsComponent, ReloadOnPushStrategy, ResearchComponent, ResetPasswordRequestDto, ResourceDownloadModule, ResourceDownloadRedirectUrlDto, ResourceDownloadService, ResultIndicatorComponent, ResultsClientConfig, ResultsClientDto, ResultsConfigToken, ResultsModule, ResumeGuideHoverComponent, RoadmapComponent, SegmentEnum, SegmentNamePipe, SegmentNamePipeModule, SelectItem, SelectListComponent, SelectListItem, SelectListItemApiDto, SelectListModule, SessionIdInterceptor, SessionIdProvider, SiteDefaultFooterComponent, SiteDefaultHeaderComponent, SiteMicroFooterComponent, SlugifyPipe, SlugifyPipeModule, SnapshotDto, SnapshotInviteUrlsComponent, SnapshotInviteUrlsModule, SnapshotMetaDataDto, StartGuideDirective, SubscriptionTierEnum, TabItemDto, TabNavigatorComponent, TabNavigatorModule, TeamDto, TeamEffectivenessComponent, TeamFlagMatchDto, TeamListFilter, TeamListResponseDto, TeamMetaDataDto, TeamNameAndKeyDto, TeamNotificationSettingsDto, TeamSortEnum, TeamStatusEnum, TeamTraitDto, TermsService, TermsUpdatedComponent, TipBadgeComponent, TopicSelectorComponent, TopicSelectorDto, TopicSelectorModule, TrendDataRequestDto, TrendDataSetDto, TrendService, TrendsComponent, TruncatePipe, TruncatePipeModule, TryNowProfessionalComponent, UpdateInProgressComponent, UserGlobalSettingsDto, UserInfoDto, UserListFilter, UserListResponseDto, UserNameAndKeyDto, UserProfileComponent, UserProfileDto, UserProfileService, UserSettingService, UserSettingsDto, UserSpecificSettingsDto, VIEWSTATE_LOAD_STRATEGY, VIEWSTATE_PROVIDER, VIEWSTATE_RELOAD_STRATEGY, VIEWSTATE_USERSETTINGS_STRATEGY, ValidChangeTokenGuard, ValidKeyGuard, ValidKeySnapshotKeyGuard, ValidKeyTeamKeyGuard, VariableDto, VideoComponent, ViewModelStateBase, ViewModelStateConfig, ViewModelStateConfigDto, ViewModelStateConfigToken, ViewModelStateModule, WidgetFactorScoreComponent, WidgetParticipationRateComponent, compareInputValidator, domainValidator, maxSelectedValidator, minTopicsSelectedValidator, presetCheckValidator };
3555
+ export { AactionConfigToken, AccountService, ActionClientConfig, ActionCollectionDto, ActionConfigDto, ActionDto, ActionListComponent, ActionListFilter, ActionManageComponent, ActionOptionDto, ActionOptionsDto, ActionPrefillDto, ActionService, ActionTeamDto, ActionTileComponent, ActionsModule, AgeIndicatorComponent, AlertAnnouncementComponent, AlertClientConfig, AlertConfigDto, AlertConfigToken, AlertDto, AlertFilterDto, AlertResponseDto, AlertService, AlertsComponent, AlertsModule, ApiConfig, ApiConfigDto, ApiConfigToken, ApiErrorDto, ArrowComponent, ArrowUpdateService, BackButtonDirective, BackButtonDirectiveModule, BadgeCollectionDto, BadgeComponent, BadgeDto, BadgeProgressionComponent, BadgeStreakComponent, BadgeTypeEnum, BadgesComponent, BenchmarkIndicatorComponent, BenchmarkOptionDto, BenchmarkTypeEnum, BrandBackgroundDirective, BrandConditionalBackgroundColorDirective, BrandConditionalColorDirective, BrandHoverColorDirective, BrandingModule, BrandingProvider, BrandingSettingsDto, CallbackPipe, CallbackPipeModule, ChannelDefaultBrandingDto, ChannelDto, CheckboxComponent, CheckboxModule, ClickableTooltipDirective, ClientInfoDto, ComponentBase, ComponentWithViewStateBase, ContactService, ContentBrandingDto, ContextItemDto, ContextTypes, DIALOG_GUIDES_TOKEN, DIALOG_GUIDE_TOKEN, DateRangeDto, DateRangePipe, DateRangePipeModule, DefinitionDto, DeltaArrowComponent, DeltaPeriodEnum, DialogAccountComponent, DialogAccountModule, DialogActionFiltersComponent, DialogActionManageComponent, DialogAlertsComponent, DialogExportActionsComponent, DialogExportFactorScoresComponent, DialogExportTeamListComponent, DialogFactorInformationComponent, DialogGuideComponent, DialogGuidesComponent, DialogModelFilterComponent, DialogNotesComponent, DialogResourceDownloadComponent, DialogSettingsComponent, DialogSubscribeComponent, DialogSubscribeModule, DialogSupportComponent, DialogSupportModule, DialogTeamFilterComponent, DimensionResultDto, DismissAlertRequestDto, DismissPopupService, DismissedAlertsService, DoItYourselfComponent, DoItYourselfWorkshopsComponent, EffectDto, EffectTypeEnum, ErrorConfigToken, ErrorDetailDto, ErrorDto, ErrorServiceConfig, ErrorServiceConfigDto, ErrorServiceModule, ExpandComponent, ExpandItemDto, ExpandModule, ExportActionsRequestDto, ExportFactorScoresRequestDto, ExportTeamListRequestDto, FactorAxisComponent, FactorEffectDto, FactorInformationDialogModule, FactorRecommendationDto, FactorScoreCollectionBenchmarkDto, FactorScoreCollectionCompositionDto, FactorScoreCollectionCompositionSegmentDto, FactorScoreCollectionDeltaDto, FactorScoreCollectionDto, FactorScoreCollectionFiltersDto, FactorScoreCompositionPointDto, FactorScoreCompositionPointsDto, FactorScoreDto, FactorService, FactorStructureConstraintDto, FactorStructureDto, FactorStructureSegmentDto, FactorsComponent, FeedbackQuickTipDto, FeedbackResourceDto, FilterTagsComponent, FocusAreasComponent, FooterComponent, FrontAndBackendErrorHandler, GUIDESTATE_PROVIDER, GuardsModule, GuideCollectionDto, GuideConfigDto, GuideDto, GuideMediaTypeEnum, GuidePopupService, GuideSettingsDto, GuideStateDto, GuideStateInBackEndService, GuideStateInBrowserService, GuideStepDto, GuideStepMediaDto, GuidesClientConfig, GuidesConfigToken, GuidesModule, ImageSliderComponent, ImpactIndicatorComponent, IncludeActionsModeEnum, InterventionFilterType, InterventionOwnerEnum, InterventionOwnerToStringPipe, InterventionSortEnum, InterventionStateEnum, InterventionStateToStringPipe, InterventionSummaryDto, InterventionTypeEnum, InterventionTypeToStringPipe, InviteUrlDto, KeyValueDto, LegalDocumentDto, LegalDto, LimitationsApplyComponent, LoadModes, LoadingComponent, LoadingModule, LocalUserDto, LoggingSeverityEnum, MatTagsComponent, MatTagsModule, MeasurementDto, MetaDataInputComponent, MetadataInputModule, ModelCanvasComponent, ModelComponent, ModelDefinitionDto, ModelDemoUrlDto, ModelFactorBenchmarkComponent, ModelFactorBreakdownComponent, ModelFactorComponent, ModelFactorCoreComponent, ModelFactorIndicatorComponent, ModelFilter, ModelStructureDto, ModelSummaryDto, ModelSwitcherComponent, ModelVisualizationLayer, ModelVisualizationModule, MultiEmailInputComponent, MultiEmailInputModule, NavButtonComponent, NavigationUrlDto, NavigationUrlTypeEnum, NgAddToCalendarModule, NoReloadStrategy, OpenAccountDialogDirective, OpenActionFiltersDialogDirective, OpenAddActionDialogDirective, OpenAlertsDialogDirective, OpenContactSalesDialog, OpenEditActionDialogDirective, OpenExportActionsDialogDirective, OpenExportFactorScoresDialogDirective, OpenExportTeamListDialogDirective, OpenFactorInformationDialogDirective, OpenFeedbackDialogDirective, OpenGuideDialogDirective, OpenGuidesDialogDirective, OpenLookingForHelpDialog, OpenModelFilterDialog, OpenNotesDialogDirective, OpenReportBugDialogDirective, OpenResourceDownloadDialogDirective, OpenSettingsDialogDirective, OpenSubscribeDialogDirective, OpenSupportDialogDirective, OpenTeamFilterDialogDirective, PaginatedResponse, PaginatorComponent, PaginatorModule, PaginatorPageEvent, PagingOptions, PaletteItem, ParticipantDto, ParticipantsComponent, ParticipationRateDto, PointDto, PointTypeEnum, ProcessingDataDto, ProgressbarComponent, ProgressbarModule, QualificationEnum, QualifiedByEnum, QuantitySelectorComponent, QuantitySelectorModule, QuestionnaireTypeDto, QuickTipsComponent, RecommendationComponent, RecommendationsComponent, ReloadOnPushStrategy, ResearchComponent, ResetPasswordRequestDto, ResourceDownloadModule, ResourceDownloadRedirectUrlDto, ResourceDownloadService, ResultIndicatorComponent, ResultsClientConfig, ResultsClientDto, ResultsConfigToken, ResultsModule, ResumeGuideHoverComponent, RoadmapComponent, SegmentEnum, SegmentNamePipe, SegmentNamePipeModule, SelectItem, SelectListComponent, SelectListItem, SelectListItemApiDto, SelectListModule, SessionIdInterceptor, SessionIdProvider, SiteDefaultFooterComponent, SiteDefaultHeaderComponent, SiteMicroFooterComponent, SlugifyPipe, SlugifyPipeModule, SnapshotDto, SnapshotInviteUrlsComponent, SnapshotInviteUrlsModule, SnapshotMetaDataDto, StartGuideDirective, SubscriptionTierEnum, TabItemDto, TabNavigatorComponent, TabNavigatorModule, TeamDto, TeamEffectivenessComponent, TeamFlagMatchDto, TeamListFilter, TeamListResponseDto, TeamMetaDataDto, TeamNameAndKeyDto, TeamNotificationSettingsDto, TeamSortEnum, TeamStatusEnum, TeamTraitDto, TermsService, TermsUpdatedComponent, TipBadgeComponent, TopicSelectorComponent, TopicSelectorDto, TopicSelectorModule, TrendDataRequestDto, TrendDataSetDto, TrendService, TrendsComponent, TruncatePipe, TruncatePipeModule, TryNowProfessionalComponent, UpdateInProgressComponent, UserGlobalSettingsDto, UserInfoDto, UserListFilter, UserListResponseDto, UserNameAndKeyDto, UserProfileComponent, UserProfileDto, UserProfileService, UserSettingService, UserSettingsDto, UserSpecificSettingsDto, VIEWSTATE_LOAD_STRATEGY, VIEWSTATE_PROVIDER, VIEWSTATE_RELOAD_STRATEGY, VIEWSTATE_USERSETTINGS_STRATEGY, ValidChangeTokenGuard, ValidKeyGuard, ValidKeySnapshotKeyGuard, ValidKeyTeamKeyGuard, VariableDto, VideoComponent, ViewModelStateBase, ViewModelStateConfig, ViewModelStateConfigDto, ViewModelStateConfigToken, ViewModelStateModule, WidgetFactorScoreComponent, WidgetParticipationRateComponent, compareInputValidator, domainValidator, maxSelectedValidator, minTopicsSelectedValidator, presetCheckValidator };
3400
3556
  export type { ContactDto, ContactTypeDto, IActionState, IAggregateRootSource, IAggregateRootStreamFactory, IAlertState, IReloadStrategy, IResultsState, ITeamReportResultsState, IUserSettingStrategy, IViewState };