@volverjs/ui-vue
Version:
@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.
46 lines (45 loc) • 940 B
TypeScript
export declare const VvDialogEvents: string[];
export declare const VvDialogProps: {
/**
* Dialog title
*/
title: StringConstructor;
/**
* Show / hide dialog programmatically
*/
modelValue: {
type: BooleanConstructor;
default: undefined;
};
/**
* Dialog transition
*/
transition: {
type: StringConstructor;
default: string;
};
/**
* Dialog size
* @deprecated use modifiers instead
*/
size: StringConstructor;
/**
* Keep open dialog on click outside
*/
keepOpen: {
type: BooleanConstructor;
default: boolean;
};
/**
* Close button label
*/
labelClose: {
type: StringConstructor;
default: string;
};
id: (StringConstructor | NumberConstructor)[];
modifiers: {
type: PropType<string | string[]>;
default: undefined;
};
};