color
attribute
mat-button-toggle
https://material.angular.io/components/button-toggle/overview
Error: Can't resolve all parameters for <name-of-component>: (?).
wherein the concerned constructor parameter is BreakpointObserver
. I’ve tried injecting on the spec file, still doesn’t resolve any. I am using v10 of Angular and Angular/Material
this.matDialog
.open<ConfirmationDialogComponent, {
width: '450px',
height: '313px',
}, boolean>(
ConfirmationDialogComponent,
{
disableClose: true
}
)
Hey, has anyone built an apply (submit) style of select component?
I've a multi select that I'd like to only take on apply, rather than as each option is selected.
It feels oddly complex to implement, like I have to maintain a selected field on each option and then apply them on submit?