@the-liberators/ngx-scrumteamsurvey-tools 2.3.92 → 2.3.94
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
|
@@ -506,7 +506,7 @@ declare class GuideSettingsDto {
|
|
|
506
506
|
completedSteps: string[];
|
|
507
507
|
}
|
|
508
508
|
declare class ModelFilter {
|
|
509
|
-
constructor(
|
|
509
|
+
constructor();
|
|
510
510
|
interventionFilter: InterventionFilterType;
|
|
511
511
|
advanced: boolean;
|
|
512
512
|
layers: ModelVisualizationLayer[];
|
|
@@ -1865,7 +1865,8 @@ interface ITeamReportResultsState extends IResultsState, IViewState {
|
|
|
1865
1865
|
|
|
1866
1866
|
declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsState> {
|
|
1867
1867
|
private state;
|
|
1868
|
-
|
|
1868
|
+
protected userSettings: IUserSettingStrategy;
|
|
1869
|
+
private userSettingService;
|
|
1869
1870
|
protected snackBar: MatSnackBar;
|
|
1870
1871
|
factors: FactorStructureDto[];
|
|
1871
1872
|
showIndicatorArrows: boolean;
|
|
@@ -1886,11 +1887,8 @@ declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsSt
|
|
|
1886
1887
|
isSubscriber: boolean;
|
|
1887
1888
|
QualifiedByEnum: typeof QualifiedByEnum;
|
|
1888
1889
|
globalNotes: string[];
|
|
1889
|
-
|
|
1890
|
-
settings: UserSettingsDto;
|
|
1891
|
-
constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar);
|
|
1890
|
+
constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, userSettingService: UserSettingService, snackBar: MatSnackBar);
|
|
1892
1891
|
ngOnInit(): void;
|
|
1893
|
-
ngOnDestroy(): void;
|
|
1894
1892
|
private determineScreenSize;
|
|
1895
1893
|
protected onDataUpdate(data: IResultsState): void;
|
|
1896
1894
|
toggleView(advanced: boolean): void;
|
|
@@ -1910,7 +1908,8 @@ declare class ArrowUpdateService {
|
|
|
1910
1908
|
|
|
1911
1909
|
declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<IResultsState> {
|
|
1912
1910
|
private state;
|
|
1913
|
-
|
|
1911
|
+
protected userSettings: IUserSettingStrategy;
|
|
1912
|
+
private userSettingService;
|
|
1914
1913
|
protected snackBar: MatSnackBar;
|
|
1915
1914
|
private arrowUpdateService;
|
|
1916
1915
|
indicator: FactorStructureDto;
|
|
@@ -1927,9 +1926,8 @@ declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<I
|
|
|
1927
1926
|
baseUrl: string;
|
|
1928
1927
|
expandIndicators: boolean;
|
|
1929
1928
|
InterventionStateEnum: typeof InterventionStateEnum;
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
|
|
1929
|
+
settingsSubscription: Subscription;
|
|
1930
|
+
constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, userSettingService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
|
|
1933
1931
|
ngOnInit(): void;
|
|
1934
1932
|
ngOnDestroy(): void;
|
|
1935
1933
|
toggleIndicators(): void;
|
|
@@ -1941,7 +1939,8 @@ declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<I
|
|
|
1941
1939
|
|
|
1942
1940
|
declare class ModelFactorCoreComponent extends ComponentWithViewStateBase<IResultsState> {
|
|
1943
1941
|
private state;
|
|
1944
|
-
|
|
1942
|
+
protected userSettings: IUserSettingStrategy;
|
|
1943
|
+
private userSettingService;
|
|
1945
1944
|
protected snackBar: MatSnackBar;
|
|
1946
1945
|
private arrowUpdateService;
|
|
1947
1946
|
factor: FactorStructureDto;
|
|
@@ -1959,8 +1958,7 @@ declare class ModelFactorCoreComponent extends ComponentWithViewStateBase<IResul
|
|
|
1959
1958
|
expandIndicators: boolean;
|
|
1960
1959
|
InterventionStateEnum: typeof InterventionStateEnum;
|
|
1961
1960
|
private settingsSubscription;
|
|
1962
|
-
|
|
1963
|
-
constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
|
|
1961
|
+
constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, userSettingService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
|
|
1964
1962
|
ngOnInit(): void;
|
|
1965
1963
|
ngOnDestroy(): void;
|
|
1966
1964
|
toggleIndicators(): void;
|