Radios Config Flavors
The VueVentus Radios Config maps to the .radios property of your app VvConfig object. Global values should be set in your app.vv file, to be both provided and/or imported for use at the component level as a single source of truth for input element styling in your app.
Radios Config Default
Contributor:@oberocks
// ./src/app.vv.ts
import { VvConfig } from '@obewds/vueventus'
import type { ConfigVv } from '@obewds/vueventus'
let appVv: ConfigVv = VvConfig
appVv.radios.border = ''
appVv.radios.outline = ''
appVv.radios.placeholder = ''
appVv.radios.ring = 'focus:ring-offset-2 focus:ring-2'
appVv.radios.rounding = ''
appVv.radios.shadow = ''
appVv.radios.sizes = {
'xs' : 'h-3 w-3',
'md' : 'h-5 w-5',
'lg' : 'h-6 w-6',
'xl' : 'h-7 w-7',
'2xl': 'h-8 w-8',
}
appVv.radios.transition = appVv.transitions.classes('colors', 'inOut', '300')
export default appVv