vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
13 lines (12 loc) • 729 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
import { ConfigurableProps } from '@vexip-ui/config';
export declare const bubbleProps: {
inherit: PropType<boolean>;
placement: PropType<"bottom" | "top" | "right" | "left" | "bottom-start" | "bottom-end" | "top-start" | "top-end" | "right-start" | "right-end" | "left-start" | "left-end">;
type: PropType<"default" | "success" | "error" | "warning" | "info" | "primary">;
background: PropType<string>;
shadow: PropType<string | boolean>;
contentClass: PropType<string | Record<string, any> | (string | Record<string, any>)[]>;
};
export type BubbleProps = ExtractPropTypes<typeof bubbleProps>;
export type BubbleCProps = ConfigurableProps<BubbleProps>;