Hi! I have a question how to use @angular-material-extensions/select-country.
I would like to use mat-select-country as a part of my form. But when I add it as a component it's not registrated by form. Here is how I add it:
<mat-select-country appearance="standard"
formControlName="country"
label="Select country"
(onCountrySelected)="onCountrySelected($event)"></mat-select-country>
And here is how I initiate:
ngOnInit() {
this.createHomeForm = this.formBuilder.group({
name: ['Name here', [Validators.required]],
country:['']
});
}
As a result I'm getting this "Error: No value accessor for form control with name: 'country'"
I'm using MatInputDialogData in my project.
when using it with ng server I get no issues.
when building it with ng b --prod --optimization=false I get :ERROR in ./node_modules/@angular-material-extensions/core/core.ngfactory.js
Module not found: Error: Can't resolve 'core' in 'C:\git\myProject\node_modules\@angular-material-extensions\core'
Hi, we had a password strength directive written for angularJs. I saw your extension for our new angular project and found it very much aligned to our requirement. So, instead of writing a new directive I decided to use your extension.
Thanks for your effort.
I have some requirements -
Note: If my required options are not already implemented I'm happy to collaborate and contribute.