mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-22 03:17:08 +00:00
Updated Angular Material element examples
This commit is contained in:
@@ -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)],
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user