mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
97 lines
2.6 KiB
TypeScript
97 lines
2.6 KiB
TypeScript
import type { ModuleOptions } from '../module'
|
|
import { buttonGroupVariant } from './button-group'
|
|
|
|
export default (options: Required<ModuleOptions>) => ({
|
|
slots: {
|
|
base: 'font-medium inline-flex items-center',
|
|
label: 'truncate',
|
|
leadingIcon: 'shrink-0',
|
|
leadingAvatar: 'shrink-0',
|
|
leadingAvatarSize: '',
|
|
trailingIcon: 'shrink-0'
|
|
},
|
|
variants: {
|
|
...buttonGroupVariant,
|
|
color: {
|
|
...Object.fromEntries((options.theme.colors || []).map((color: string) => [color, ''])),
|
|
neutral: ''
|
|
},
|
|
variant: {
|
|
solid: '',
|
|
outline: '',
|
|
soft: '',
|
|
subtle: ''
|
|
},
|
|
size: {
|
|
xs: {
|
|
base: 'text-[8px]/3 px-1 py-0.5 gap-1 rounded-sm',
|
|
leadingIcon: 'size-3',
|
|
leadingAvatarSize: '3xs',
|
|
trailingIcon: 'size-3'
|
|
},
|
|
sm: {
|
|
base: 'text-[10px]/3 px-1.5 py-1 gap-1 rounded-sm',
|
|
leadingIcon: 'size-3',
|
|
leadingAvatarSize: '3xs',
|
|
trailingIcon: 'size-3'
|
|
},
|
|
md: {
|
|
base: 'text-xs px-2 py-1 gap-1 rounded-md',
|
|
leadingIcon: 'size-4',
|
|
leadingAvatarSize: '3xs',
|
|
trailingIcon: 'size-4'
|
|
},
|
|
lg: {
|
|
base: 'text-sm px-2 py-1 gap-1.5 rounded-md',
|
|
leadingIcon: 'size-5',
|
|
leadingAvatarSize: '2xs',
|
|
trailingIcon: 'size-5'
|
|
},
|
|
xl: {
|
|
base: 'text-base px-2.5 py-1 gap-1.5 rounded-md',
|
|
leadingIcon: 'size-6',
|
|
leadingAvatarSize: '2xs',
|
|
trailingIcon: 'size-6'
|
|
}
|
|
}
|
|
},
|
|
compoundVariants: [...(options.theme.colors || []).map((color: string) => ({
|
|
color,
|
|
variant: 'solid',
|
|
class: `bg-${color} text-inverted`
|
|
})), ...(options.theme.colors || []).map((color: string) => ({
|
|
color,
|
|
variant: 'outline',
|
|
class: `text-${color} ring ring-inset ring-${color}/50`
|
|
})), ...(options.theme.colors || []).map((color: string) => ({
|
|
color,
|
|
variant: 'soft',
|
|
class: `bg-${color}/10 text-${color}`
|
|
})), ...(options.theme.colors || []).map((color: string) => ({
|
|
color,
|
|
variant: 'subtle',
|
|
class: `bg-${color}/10 text-${color} ring ring-inset ring-${color}/25`
|
|
})), {
|
|
color: 'neutral',
|
|
variant: 'solid',
|
|
class: 'text-inverted bg-inverted'
|
|
}, {
|
|
color: 'neutral',
|
|
variant: 'outline',
|
|
class: 'ring ring-inset ring-accented text-default bg-default'
|
|
}, {
|
|
color: 'neutral',
|
|
variant: 'soft',
|
|
class: 'text-default bg-elevated'
|
|
}, {
|
|
color: 'neutral',
|
|
variant: 'subtle',
|
|
class: 'ring ring-inset ring-accented text-default bg-elevated'
|
|
}],
|
|
defaultVariants: {
|
|
color: 'primary',
|
|
variant: 'solid',
|
|
size: 'md'
|
|
}
|
|
})
|