UNPKG

@lui-ui/lui-vue

Version:

This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

17 lines (16 loc) 857 B
export type Variant = 'solid' | 'outline' | 'text' | 'link'; export type NarrowedVariant = 'solid' | 'outline'; export type Filter = 'darken' | 'lighten' | 'none'; export type Color = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info'; export type Rounded = false | true | 'full'; export type Block = true | false; export type Border = true | false; export type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; export type State = true | false | string | null; export type Description = string | null; export type MenuClasses = string | string[]; export type Value = any; export type CheckableModelValue = any; export type Text = string; export type StateIcon = false | true; export type Position = 'bottomLeft' | 'bottomRight' | 'bottom' | 'topLeft' | 'topRight' | 'top' | 'leftTop' | 'leftBottom' | 'left' | 'rightTop' | 'rightBottom' | 'right';