Checkboxes Config Flavors
The VueVentus Checkboxes Config maps to the .checkboxes 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.
Checkboxes Config Default
Contributor:@oberocks
// ./src/app.vv.ts
import { VvConfig } from '@obewds/vueventus'
import type { ConfigVv } from '@obewds/vueventus'
let appVv: ConfigVv = VvConfig
appVv.checkboxes.border = ''
appVv.checkboxes.outline = ''
appVv.checkboxes.placeholder = ''
appVv.checkboxes.ring = 'focus:ring-offset-2 focus:ring-2'
appVv.checkboxes.rounding = 'rounded'
appVv.checkboxes.shadow = ''
appVv.checkboxes.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.checkboxes.transition = appVv.transitions.classes('colors', 'inOut', '300')
export default appVv