It's unclear what you're searching for, but I feel compelled to share some insights on selecting an HTML element with a specific class.
In Angular, one workaround to select an HTML element with a class is by creating a directive that targets the class of the desired element. Typically, this directive is written within the component.ts file - don't forget to declare it in the module as well!
For example:
@Directive({
selector: '.fc-day-header',
})
export class DayHeaderDirective {
}
Then, within our component, we can utilize ViewChildren to access these elements. In the ngAfterViewInit lifecycle hook, we can interact with them like so:
@ViewChildren(DayHeaderDirective,{read:ElementRef}) ths:QueryList<ElementRef>
ngAfterViewInit()
{
this.ths.forEach(x=>{
console.log(x.nativeElement.innerHTML)
})
}