UNPKG

@progress/kendo-vue-labels

Version:
57 lines (56 loc) 1.72 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue Error component. */ export interface ErrorProps { /** * Represents the id of the Error element. * The value should be also set to the editor's `ariaDescribedBy` property. */ id?: string; /** * Specifies the alignment of the Error text. * * The possible values are: * * (Default) `start` * * `end` */ direction?: string; } /** * @hidden */ export interface ErrorComputed { [key: string]: any; errorClassName: object; } /** * @hidden */ declare const Error: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ id: PropType<string>; direction: { type: PropType<string>; default: string; validator: (value: string) => any; }; }>, {}, {}, { errorClassName(): ErrorComputed['errorClassName']; }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ id: PropType<string>; direction: { type: PropType<string>; default: string; validator: (value: string) => any; }; }>> & Readonly<{}>, { direction: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { Error };