Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump the angular group across 1 directory with 7 updates #362

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
695 changes: 431 additions & 264 deletions package-lock.json
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@
"@angular-eslint/builder": "^17.3.0",
"@angular-eslint/eslint-plugin": "^17.3.0",
"@angular-eslint/eslint-plugin-template": "^17.3.0",
"@angular-eslint/schematics": "17.3.0",
"@angular-eslint/schematics": "17.5.2",
"@angular-eslint/template-parser": "^17.3.0",
"@angular/cli": "^17.3.2",
"@angular/compiler-cli": "^17.0.0",

Unchanged files with check annotations Beta

];
itemFields = { thumbnail: false };
params: any = this.datasourceService.queryParams(

Check warning on line 51 in src/app/dashboard/dashboard.component.ts

GitHub Actions / Run tests

Unexpected any. Specify a different type

Check warning on line 51 in src/app/dashboard/dashboard.component.ts

GitHub Actions / eslint

Unexpected any. Specify a different type
this.itemsPerPage,
this.currentPage,
this.sortColumn,
this.subtitle = facility.toUpperCase() + " Public Dataset Access";
}
onRowClick(event: any): void {

Check warning on line 74 in src/app/dashboard/dashboard.component.ts

GitHub Actions / Run tests

Unexpected any. Specify a different type

Check warning on line 74 in src/app/dashboard/dashboard.component.ts

GitHub Actions / eslint

Unexpected any. Specify a different type
this.router.navigateByUrl("/detail/" + encodeURIComponent(event.doi));
}
this.publication$ = this.datasourceService.getPublication(id);
this.publicationJson$ = this.publication$.pipe(
map(({ thumbnail, ...publication }) =>

Check warning on line 104 in src/app/publisheddata-details/publisheddata-details.component.ts

GitHub Actions / Run tests

'thumbnail' is defined but never used

Check warning on line 104 in src/app/publisheddata-details/publisheddata-details.component.ts

GitHub Actions / eslint

'thumbnail' is defined but never used
JSON.stringify(publication, null, 2),
),
);
return this.datasourceService.postJob(new Job(job));
}
public retriveDialogOptions(): any {

Check warning on line 43 in src/app/retrieve.service.ts

GitHub Actions / Run tests

Unexpected any. Specify a different type

Check warning on line 43 in src/app/retrieve.service.ts

GitHub Actions / eslint

Unexpected any. Specify a different type
return {
width: "auto",
data: {
constructor(
public dialogRef: MatDialogRef<DialogComponent>,
@Inject(MAT_DIALOG_DATA) public data: any,

Check warning on line 26 in src/app/shared/modules/dialog/dialog.component.ts

GitHub Actions / Run tests

Unexpected any. Specify a different type

Check warning on line 26 in src/app/shared/modules/dialog/dialog.component.ts

GitHub Actions / eslint

Unexpected any. Specify a different type
private confirmationDialog: MatDialog,
) {}
export interface CheckboxEvent {
event: MatCheckboxChange;
row: any;

Check warning on line 33 in src/app/shared/modules/table/table.component.ts

GitHub Actions / Run tests

Unexpected any. Specify a different type

Check warning on line 33 in src/app/shared/modules/table/table.component.ts

GitHub Actions / eslint

Unexpected any. Specify a different type
}
@Component({
encapsulation: ViewEncapsulation.None,
})
export class TableComponent implements OnInit {
@Input() data: any[] = [];

Check warning on line 43 in src/app/shared/modules/table/table.component.ts

GitHub Actions / Run tests

Unexpected any. Specify a different type

Check warning on line 43 in src/app/shared/modules/table/table.component.ts

GitHub Actions / eslint

Unexpected any. Specify a different type
@Input() columns: TableColumn[] = [];
displayedColumns: string[] = [];
listItems: string[] = [];
@Input() select?: boolean;
@Input() allChecked?: boolean;
@Input() oneChecked?: boolean;
selection = new SelectionModel<any>(true, []);

Check warning on line 51 in src/app/shared/modules/table/table.component.ts

GitHub Actions / Run tests

Unexpected any. Specify a different type

Check warning on line 51 in src/app/shared/modules/table/table.component.ts

GitHub Actions / eslint

Unexpected any. Specify a different type
@Input() paginate?: boolean;
@Input() currentPage?: number;
@Output() pageChange = new EventEmitter<PageChangeEvent>();
@Output() sortChange = new EventEmitter<SortChangeEvent>();
@Output() rowClick = new EventEmitter<any>();

Check warning on line 61 in src/app/shared/modules/table/table.component.ts

GitHub Actions / Run tests

Unexpected any. Specify a different type

Check warning on line 61 in src/app/shared/modules/table/table.component.ts

GitHub Actions / eslint

Unexpected any. Specify a different type
@Output() selectAll = new EventEmitter<MatCheckboxChange>();
@Output() selectOne = new EventEmitter<CheckboxEvent>();
this.sortChange.emit(event);
}
onRowClick(event: any) {

Check warning on line 73 in src/app/shared/modules/table/table.component.ts

GitHub Actions / Run tests

Unexpected any. Specify a different type

Check warning on line 73 in src/app/shared/modules/table/table.component.ts

GitHub Actions / eslint

Unexpected any. Specify a different type
this.rowClick.emit(event);
}