FileReaderComponent
This component allows you to create a file picker input wrapper component.
It depends on FilePicker.
Example

<file-reader-component
:supported-extensions="['.docx', '.text']"
:max-size="10"
/>
Props
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| vid | Allows you to indicate the vid for the ValidationProvider | String | false | "" |
| value | Inner value of the component | — | false | null |
| horizontal | Allows you to indicate if the component will be horizontal or not | Boolean | false | true |
| labelInside | Allows you to indicate if the label will be inside of the input | Boolean | false | false |
| labelOnBorder | Allows you to indicate if the label will be on the border of the input | Boolean | false | false |
| validationMode | Validation mode for ValidationProvider | String | false | "aggressive" |
| supportedExtensions | Allows you to indicate the supported file extensions | Array | false | |
| maxSize | Allows you to indicate the max size for the files you will select | Number | false | undefined |
| isRequired | Allows you to indicate if the input is required | Boolean | false | true |