Angular Material File Input
npm install @nng-components/angular-material-file-inputAn Angular Material File Input.
@see DEMO stackblitz
@see LIVE DEMO
Choose the version corresponding to your Angular version:
Angular | @nng-components/angular-material-file-input
----------- | -------------------
20 | 20.x+
19 | 19.x+
18 | 18.x+
17 | 17.x+
16 | 16.x+
```
npm install --save @nng-components/angular-material-file-input
`
import { NgxMatFileInputModule } from '@nng-components/angular-material-file-input';
@NgModule({
...
imports: [
...
NgxMatFileInputModule
]
...
})
export class AppModule { }
`
@see src/app/demo-fileinput/demo-fileinput.module.ts
``
#### You can provide a custom icon by using the directive ngxMatFileInputIcon
``
#### You can use with all properties of MatFormField such as appearance variants, hint...
``
#### List of @Input
| @Input | Type | Default value | Description |
|--------------- |---------- |--------------- |---------------------------------------------------------------------- |
| disabled | boolean | null | If true, the file input is readonly. |
| multiple | boolean | false | If true, the file input allows the user to select more than one file. |
| accept | string | null | Limiting accepted file types (For example: accept="image/png, image/jpeg" or accept=".png, .jpg, .jpeg" — Accept PNG or JPEG files.) |
| color | ThemePalette | null | Theme color palette for the component. |
``