mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
Co-authored-by: Max Steinwand <msteinwand@kues.de> Co-authored-by: Benjamin Canac <canacb1@gmail.com> Co-authored-by: Romain Hamel <rom.hml@gmail.com>
162 lines
4.5 KiB
TypeScript
162 lines
4.5 KiB
TypeScript
import type { ModuleOptions } from '../module'
|
|
import { buttonGroupVariantWithRoot } from './button-group'
|
|
|
|
export default (options: Required<ModuleOptions>) => ({
|
|
slots: {
|
|
root: 'relative inline-flex items-center',
|
|
base: ['w-full rounded-[calc(var(--ui-radius)*1.5)] border-0 placeholder:text-[var(--ui-text-dimmed)] focus:outline-none disabled:cursor-not-allowed disabled:opacity-75', options.theme.transitions && 'transition-colors'],
|
|
leading: 'absolute inset-y-0 start-0 flex items-center',
|
|
leadingIcon: 'shrink-0 text-[var(--ui-text-dimmed)]',
|
|
leadingAvatar: 'shrink-0',
|
|
leadingAvatarSize: '',
|
|
trailing: 'absolute inset-y-0 end-0 flex items-center',
|
|
trailingIcon: 'shrink-0 text-[var(--ui-text-dimmed)]'
|
|
},
|
|
variants: {
|
|
...buttonGroupVariantWithRoot,
|
|
size: {
|
|
xs: {
|
|
base: 'px-2 py-1 text-xs gap-1',
|
|
leading: 'ps-2',
|
|
trailing: 'pe-2',
|
|
leadingIcon: 'size-4',
|
|
leadingAvatarSize: '3xs',
|
|
trailingIcon: 'size-4'
|
|
},
|
|
sm: {
|
|
base: 'px-2.5 py-1.5 text-xs gap-1.5',
|
|
leading: 'ps-2.5',
|
|
trailing: 'pe-2.5',
|
|
leadingIcon: 'size-4',
|
|
leadingAvatarSize: '3xs',
|
|
trailingIcon: 'size-4'
|
|
},
|
|
md: {
|
|
base: 'px-2.5 py-1.5 text-sm gap-1.5',
|
|
leading: 'ps-2.5',
|
|
trailing: 'pe-2.5',
|
|
leadingIcon: 'size-5',
|
|
leadingAvatarSize: '2xs',
|
|
trailingIcon: 'size-5'
|
|
},
|
|
lg: {
|
|
base: 'px-3 py-2 text-sm gap-2',
|
|
leading: 'ps-3',
|
|
trailing: 'pe-3',
|
|
leadingIcon: 'size-5',
|
|
leadingAvatarSize: '2xs',
|
|
trailingIcon: 'size-5'
|
|
},
|
|
xl: {
|
|
base: 'px-3 py-2 text-base gap-2',
|
|
leading: 'ps-3',
|
|
trailing: 'pe-3',
|
|
leadingIcon: 'size-6',
|
|
leadingAvatarSize: 'xs',
|
|
trailingIcon: 'size-6'
|
|
}
|
|
},
|
|
variant: {
|
|
outline: 'text-[var(--ui-text-highlighted)] bg-[var(--ui-bg)] ring ring-inset ring-[var(--ui-border-accented)]',
|
|
soft: 'text-[var(--ui-text-highlighted)] bg-[var(--ui-bg-elevated)]/50 hover:bg-[var(--ui-bg-elevated)] focus:bg-[var(--ui-bg-elevated)] disabled:bg-[var(--ui-bg-elevated)]/50',
|
|
subtle: 'text-[var(--ui-text-highlighted)] bg-[var(--ui-bg-elevated)] ring ring-inset ring-[var(--ui-border-accented)]',
|
|
ghost: 'text-[var(--ui-text-highlighted)] bg-transparent hover:bg-[var(--ui-bg-elevated)] focus:bg-[var(--ui-bg-elevated)] disabled:bg-transparent dark:disabled:bg-transparent',
|
|
none: 'text-[var(--ui-text-highlighted)] bg-transparent'
|
|
},
|
|
color: {
|
|
...Object.fromEntries((options.theme.colors || []).map((color: string) => [color, ''])),
|
|
neutral: ''
|
|
},
|
|
leading: {
|
|
true: ''
|
|
},
|
|
trailing: {
|
|
true: ''
|
|
},
|
|
loading: {
|
|
true: ''
|
|
},
|
|
highlight: {
|
|
true: ''
|
|
},
|
|
type: {
|
|
file: 'file:me-1.5 file:font-medium file:text-[var(--ui-text-muted)] file:outline-none'
|
|
}
|
|
},
|
|
compoundVariants: [...(options.theme.colors || []).map((color: string) => ({
|
|
color,
|
|
variant: ['outline', 'subtle'],
|
|
class: `focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-[var(--ui-${color})]`
|
|
})), ...(options.theme.colors || []).map((color: string) => ({
|
|
color,
|
|
highlight: true,
|
|
class: `ring ring-inset ring-[var(--ui-${color})]`
|
|
})), {
|
|
color: 'neutral',
|
|
variant: ['outline', 'subtle'],
|
|
class: 'focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-[var(--ui-border-inverted)]'
|
|
}, {
|
|
color: 'neutral',
|
|
highlight: true,
|
|
class: 'ring ring-inset ring-[var(--ui-border-inverted)]'
|
|
}, {
|
|
leading: true,
|
|
size: 'xs',
|
|
class: 'ps-7'
|
|
}, {
|
|
leading: true,
|
|
size: 'sm',
|
|
class: 'ps-8'
|
|
}, {
|
|
leading: true,
|
|
size: 'md',
|
|
class: 'ps-9'
|
|
}, {
|
|
leading: true,
|
|
size: 'lg',
|
|
class: 'ps-10'
|
|
}, {
|
|
leading: true,
|
|
size: 'xl',
|
|
class: 'ps-11'
|
|
}, {
|
|
trailing: true,
|
|
size: 'xs',
|
|
class: 'pe-7'
|
|
}, {
|
|
trailing: true,
|
|
size: 'sm',
|
|
class: 'pe-8'
|
|
}, {
|
|
trailing: true,
|
|
size: 'md',
|
|
class: 'pe-9'
|
|
}, {
|
|
trailing: true,
|
|
size: 'lg',
|
|
class: 'pe-10'
|
|
}, {
|
|
trailing: true,
|
|
size: 'xl',
|
|
class: 'pe-11'
|
|
}, {
|
|
loading: true,
|
|
leading: true,
|
|
class: {
|
|
leadingIcon: 'animate-spin'
|
|
}
|
|
}, {
|
|
loading: true,
|
|
leading: false,
|
|
trailing: true,
|
|
class: {
|
|
trailingIcon: 'animate-spin'
|
|
}
|
|
}],
|
|
defaultVariants: {
|
|
size: 'md',
|
|
color: 'primary',
|
|
variant: 'outline'
|
|
}
|
|
})
|