@the-liberators/ngx-scrumteamsurvey-tools 2.3.95 → 2.3.97

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
@@ -509,7 +509,7 @@ declare class GuideSettingsDto {
509
509
  completedSteps: string[];
510
510
  }
511
511
  declare class ModelFilter {
512
- constructor(interventionFilterType: InterventionFilterType);
512
+ constructor();
513
513
  interventionFilter: InterventionFilterType;
514
514
  advanced: boolean;
515
515
  layers: ModelVisualizationLayer[];
@@ -1868,7 +1868,8 @@ interface ITeamReportResultsState extends IResultsState, IViewState {
1868
1868
 
1869
1869
  declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsState> {
1870
1870
  private state;
1871
- private userSettingsService;
1871
+ protected userSettings: IUserSettingStrategy;
1872
+ private userSettingService;
1872
1873
  protected snackBar: MatSnackBar;
1873
1874
  factors: FactorStructureDto[];
1874
1875
  metrics: FactorStructureDto[];
@@ -1890,11 +1891,8 @@ declare class ModelCanvasComponent extends ComponentWithViewStateBase<IResultsSt
1890
1891
  isSubscriber: boolean;
1891
1892
  QualifiedByEnum: typeof QualifiedByEnum;
1892
1893
  globalNotes: string[];
1893
- private settingsSubscription;
1894
- settings: UserSettingsDto;
1895
- constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar);
1894
+ constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, userSettingService: UserSettingService, snackBar: MatSnackBar);
1896
1895
  ngOnInit(): void;
1897
- ngOnDestroy(): void;
1898
1896
  private determineScreenSize;
1899
1897
  protected onDataUpdate(data: IResultsState): void;
1900
1898
  toggleView(advanced: boolean): void;
@@ -1929,7 +1927,8 @@ declare class ArrowUpdateService {
1929
1927
 
1930
1928
  declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<IResultsState> {
1931
1929
  private state;
1932
- private userSettingsService;
1930
+ protected userSettings: IUserSettingStrategy;
1931
+ private userSettingService;
1933
1932
  protected snackBar: MatSnackBar;
1934
1933
  private arrowUpdateService;
1935
1934
  indicator: FactorStructureDto;
@@ -1946,9 +1945,8 @@ declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<I
1946
1945
  baseUrl: string;
1947
1946
  expandIndicators: boolean;
1948
1947
  InterventionStateEnum: typeof InterventionStateEnum;
1949
- settings: UserSettingsDto;
1950
- private settingsSubscription;
1951
- constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
1948
+ settingsSubscription: Subscription;
1949
+ constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, userSettingService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
1952
1950
  ngOnInit(): void;
1953
1951
  ngOnDestroy(): void;
1954
1952
  toggleIndicators(): void;
@@ -1960,7 +1958,8 @@ declare class ModelFactorIndicatorComponent extends ComponentWithViewStateBase<I
1960
1958
 
1961
1959
  declare class ModelFactorCoreComponent extends ComponentWithViewStateBase<IResultsState> {
1962
1960
  private state;
1963
- private userSettingsService;
1961
+ protected userSettings: IUserSettingStrategy;
1962
+ private userSettingService;
1964
1963
  protected snackBar: MatSnackBar;
1965
1964
  private arrowUpdateService;
1966
1965
  factor: FactorStructureDto;
@@ -1978,8 +1977,7 @@ declare class ModelFactorCoreComponent extends ComponentWithViewStateBase<IResul
1978
1977
  expandIndicators: boolean;
1979
1978
  InterventionStateEnum: typeof InterventionStateEnum;
1980
1979
  private settingsSubscription;
1981
- settings: UserSettingsDto;
1982
- constructor(state: ViewModelStateBase<IResultsState>, userSettingsService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
1980
+ constructor(state: ViewModelStateBase<IResultsState>, userSettings: IUserSettingStrategy, userSettingService: UserSettingService, snackBar: MatSnackBar, arrowUpdateService: ArrowUpdateService);
1983
1981
  ngOnInit(): void;
1984
1982
  ngOnDestroy(): void;
1985
1983
  toggleIndicators(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-liberators/ngx-scrumteamsurvey-tools",
3
- "version": "2.3.95",
3
+ "version": "2.3.97",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0",
6
6
  "@angular/core": "^20.3.0",