vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
88 lines (87 loc) • 2.38 kB
TypeScript
import { type PropType } from "vue";
import type { ValidationError } from "../slds-form-element/validation-error";
declare const _default: import("vue").DefineComponent<{
/**
* Array of error objects from vuelidate.
*/
errors: {
type: PropType<ValidationError[]>;
default: () => ValidationError[];
};
disabled: BooleanConstructor;
/**
* Inline help text.
* When using the help slot this prop is ignored.
*/
help: StringConstructor;
inline: BooleanConstructor;
label: StringConstructor;
messageActive: {
type: StringConstructor;
default: string;
};
messageInactive: {
type: StringConstructor;
default: string;
};
/**
* Input value.
*/
modelValue: BooleanConstructor;
noMessage: BooleanConstructor;
required: BooleanConstructor;
rightToLeft: BooleanConstructor;
/**
* Indicates whether the input is stacked among other inputs.
*/
stacked: BooleanConstructor;
}, unknown, unknown, {}, {
handleInput(): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
/**
* Array of error objects from vuelidate.
*/
errors: {
type: PropType<ValidationError[]>;
default: () => ValidationError[];
};
disabled: BooleanConstructor;
/**
* Inline help text.
* When using the help slot this prop is ignored.
*/
help: StringConstructor;
inline: BooleanConstructor;
label: StringConstructor;
messageActive: {
type: StringConstructor;
default: string;
};
messageInactive: {
type: StringConstructor;
default: string;
};
/**
* Input value.
*/
modelValue: BooleanConstructor;
noMessage: BooleanConstructor;
required: BooleanConstructor;
rightToLeft: BooleanConstructor;
/**
* Indicates whether the input is stacked among other inputs.
*/
stacked: BooleanConstructor;
}>>, {
required: boolean;
disabled: boolean;
inline: boolean;
errors: ValidationError[];
stacked: boolean;
modelValue: boolean;
messageActive: string;
messageInactive: string;
noMessage: boolean;
rightToLeft: boolean;
}, {}>;
export default _default;