UNPKG

@skillbill/vuelace-3

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/@skillbill%2Fvuelace-3.svg)](https://badge.fury.io/js/@skillbill%2Fvuelace-3)

18 lines (16 loc) 455 B
import { VLInputRuleType } from '../utils/types'; import { VLFileInputErrorEvent } from '../VLFileInput'; export interface VLImageUploadProps { class?: string; name?: string; label: string; placeholder?: string; error?: string; helpText?: string; clearable?: boolean; required?: boolean; disabled?: boolean; imgStyle?: string; rules?: VLInputRuleType[]; onError?: (error: VLFileInputErrorEvent) => void; }