mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
ACS-8772: Migrate node tooltip to Angular signals (#11498)
This commit is contained in:
@@ -28,14 +28,14 @@ export class TaskListCloudSortingModel {
|
||||
}
|
||||
|
||||
export class TaskListRequestSortingModel extends TaskListCloudSortingModel {
|
||||
orderBy: string;
|
||||
direction: string;
|
||||
declare orderBy: string;
|
||||
declare direction: string;
|
||||
|
||||
isFieldProcessVariable: boolean;
|
||||
processVariableData?: {
|
||||
processDefinitionKey: string;
|
||||
type: string;
|
||||
}
|
||||
};
|
||||
|
||||
constructor(obj: TaskListRequestSortingModel) {
|
||||
super(obj);
|
||||
|
||||
@@ -51,7 +51,7 @@ export const mockPreselectedFoodUsers = [
|
||||
|
||||
@Injectable()
|
||||
export class IdentityUserServiceMock extends IdentityUserService {
|
||||
queryParams: { search: string; application?: string; roles?: string[]; groups?: string[] };
|
||||
declare queryParams: { search: string; application?: string; roles?: string[]; groups?: string[] };
|
||||
|
||||
getCurrentUserInfo(): IdentityUserModel {
|
||||
return mockKielbasaSausage;
|
||||
|
||||
+4
-4
@@ -18,7 +18,7 @@
|
||||
export class ProcessListCloudSortingModel {
|
||||
orderBy: string;
|
||||
direction: string;
|
||||
constructor(obj: any) {
|
||||
constructor(obj: any) {
|
||||
if (obj) {
|
||||
this.orderBy = obj.orderBy;
|
||||
this.direction = obj.direction;
|
||||
@@ -26,14 +26,14 @@ export class ProcessListCloudSortingModel {
|
||||
}
|
||||
}
|
||||
export class ProcessListRequestSortingModel extends ProcessListCloudSortingModel {
|
||||
orderBy: string;
|
||||
direction: string;
|
||||
declare orderBy: string;
|
||||
declare direction: string;
|
||||
|
||||
isFieldProcessVariable: boolean;
|
||||
processVariableData?: {
|
||||
processDefinitionKey: string;
|
||||
type: string;
|
||||
}
|
||||
};
|
||||
|
||||
constructor(obj: ProcessListRequestSortingModel) {
|
||||
super(obj);
|
||||
|
||||
+1
-1
@@ -260,7 +260,7 @@ export class TaskListCloudComponent extends BaseTaskListCloudComponent<ProcessLi
|
||||
processVariableFilters: ProcessVariableFilterModel[];
|
||||
|
||||
rows: TaskInstanceCloudListViewModel[] = [];
|
||||
dataAdapter: TasksListDatatableAdapter | undefined;
|
||||
declare dataAdapter: TasksListDatatableAdapter | undefined;
|
||||
|
||||
private isReloadingSubject$ = new BehaviorSubject<boolean>(false);
|
||||
isLoading$ = combineLatest([this.isLoadingPreferences$, this.isReloadingSubject$]).pipe(
|
||||
|
||||
Reference in New Issue
Block a user