@wdns/vuetify-stepper-form
Version:
The Vuetify Stepper Form plugin provides a structured way to create multi-step forms using Vue 3, TypeScript, and Vuetify. It features a stepper layout that allows users to navigate between steps with form validation. The plugin is customizable and stream
35 lines (34 loc) • 1.6 kB
TypeScript
import { Props } from './types';
declare let __VLS_typeProps: Props;
type __VLS_PublicProps = {
modelValue?: any;
} & typeof __VLS_typeProps;
declare function __VLS_template(): {
slots: Partial<Record<NonNullable<string | number>, (_: any) => any>>;
refs: {
stepperFormRef: HTMLFormElement;
};
attrs: Partial<{}>;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {
disabled: import('vuetify/lib/components').VStepper["disabled"];
autoPageDelay: number;
direction: "horizontal" | "vertical";
editable: import('vuetify/lib/components').VStepperItem["editable"];
jumpAhead: boolean;
keepValuesOnUnmount: boolean;
navButtonSize: import('vuetify/lib/components').VBtn["size"];
tooltipLocation: import('vuetify/lib/components').VTooltip["location"];
tooltipOffset: string | number | number[];
tooltipTransition: import('vuetify/lib/components').VTooltip["transition"];
width: string;
transition: import('vuetify/lib/components').VStepperWindowItem["transition"];
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};