@the-liberators/ngx-scrumteamsurvey-tools 2.3.90 → 2.3.92
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
|
@@ -928,7 +928,7 @@ declare class ActionManageComponent extends ComponentBase {
|
|
|
928
928
|
|
|
929
929
|
declare class ActionListComponent extends ComponentWithViewStateBase<IActionState> {
|
|
930
930
|
protected snackBar: MatSnackBar;
|
|
931
|
-
protected
|
|
931
|
+
protected userSettingsService: UserSettingService;
|
|
932
932
|
protected actionService: ActionService;
|
|
933
933
|
private state;
|
|
934
934
|
protected route: ActivatedRoute;
|
|
@@ -941,7 +941,9 @@ declare class ActionListComponent extends ComponentWithViewStateBase<IActionStat
|
|
|
941
941
|
filterCount: number;
|
|
942
942
|
keywordControl: FormControl;
|
|
943
943
|
isLoggedIn: boolean;
|
|
944
|
-
|
|
944
|
+
userSettings: UserSettingsDto;
|
|
945
|
+
subscription: Subscription;
|
|
946
|
+
constructor(snackBar: MatSnackBar, userSettingsService: UserSettingService, actionService: ActionService, state: ViewModelStateBase<IActionState>, route: ActivatedRoute);
|
|
945
947
|
ngOnInit(): Promise<void>;
|
|
946
948
|
setPaging(event: PaginatorPageEvent): Promise<void>;
|
|
947
949
|
setSort(sort: string): Promise<void>;
|