How do I override the style of primeng components?

Since >>> is deprecated have to use ::ng-deep instead. With material2 v6 and primeng v5.2.* :host { ::ng-deep .prime-slider-override { background-color: #26A3D1; background-image:none; border:none; color:white; .ui-slider-range { background: red; } } } <p-slider [(ngModel)]=”rangeValues” styleClass=”prime-slider-override”></p-slider>

What is let-* in Angular 2 templates?

update Angular 5 ngOutletContext was renamed to ngTemplateOutletContext See also CHANGELOG.md @ angular/angular original Templates (<template>, or <ng-template> since 4.x) are added as embedded views and get passed a context. With let-col the context property $implicit is made available as col within the template for bindings. With let-foo=”bar” the context property bar is made available … Read more