This repository was archived by the owner on Dec 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/assets/stack-blitz/src Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 3
3
This is the repository for the [ Angular Components documentation site] ( https://material.angular.io/ ) .
4
4
5
5
Versions of this site are also available for
6
- - [ Beta] ( https://next.material.angular.io/ )
7
6
- [ v5] ( https://v5.material.angular.io/ )
8
7
- [ v6] ( https://v6.material.angular.io/ )
9
8
- [ v7] ( https://v7.material.angular.io/ )
10
9
- [ v8] ( https://material.angular.io/ )
10
+ - [ v9-rc] ( https://next.material.angular.io/ )
11
11
12
12
## Contributing
13
13
Please open bugs against the Angular Material and CDK components, directives, documentation
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import {BrowserModule} from '@angular/platform-browser';
8
8
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic' ;
9
9
import { BrowserAnimationsModule } from '@angular/platform-browser/animations' ;
10
10
import { DemoMaterialModule } from './app/material-module' ;
11
+ import { MAT_FORM_FIELD_DEFAULT_OPTIONS } from '@angular/material/form-field' ;
11
12
12
13
import { MaterialDocsExample } from './app/material-docs-example' ;
13
14
@@ -24,7 +25,9 @@ import {MaterialDocsExample} from './app/material-docs-example';
24
25
entryComponents : [ MaterialDocsExample ] ,
25
26
declarations : [ MaterialDocsExample ] ,
26
27
bootstrap : [ MaterialDocsExample ] ,
27
- providers : [ ]
28
+ providers : [
29
+ { provide : MAT_FORM_FIELD_DEFAULT_OPTIONS , useValue : { appearance : 'fill' } } ,
30
+ ]
28
31
} )
29
32
export class AppModule { }
30
33
You can’t perform that action at this time.
0 commit comments