Since version 5 Bootstrap framework has removed jQuery as a requirement.
I want to know how this change affects the Angular application?
Can we use all provided Bootstrap functionalities in Angular (for example dropdowns)?
I know that Angular shouldn't be combined with JQuery - in earlier versions of Bootstrap, JQuery was recommened to import if we want to use all bootstrap functionalities and it was bad.
But Bootstrap 5 doesn't rely on JQuery anymore so is it safe to use it with my Angular applications?
As for now I don't want to use bootstrap alternatives like ng-bootstrap, that is why I'm asking is it okay and safe to use Bootstrap 5 in Angular?

