Updated Angular Material element examples

This commit is contained in:
Sercan Yemen
2018-08-28 07:53:09 +03:00
parent 8fc20fef8f
commit 62b64cb78c
116 changed files with 934 additions and 898 deletions

View File

@@ -5,15 +5,15 @@ import {FormBuilder, FormGroup, Validators} from '@angular/forms';
@Component({
selector: 'form-field-theming-example',
templateUrl: 'form-field-theming-example.html',
styleUrls: ['form-field-theming-example.css']
styleUrls: ['form-field-theming-example.css'],
})
export class FormFieldThemingExample {
options: FormGroup;
constructor(fb: FormBuilder) {
this.options = fb.group({
'color': 'primary',
'fontSize': [16, Validators.min(10)],
color: 'primary',
fontSize: [16, Validators.min(10)],
});
}