This commit is contained in:
tugcekucukoglu 2024-02-02 14:46:26 +03:00
parent 3141f09df0
commit 45a23e9211
30 changed files with 110 additions and 84 deletions

View file

@ -9,7 +9,7 @@ export default {
modelValue: null,
variant: {
type: String,
default: 'outlined'
default: null
},
invalid: {
type: Boolean,

View file

@ -28,7 +28,7 @@ const classes = {
'p-highlight': instance.active,
'p-disabled': props.disabled,
'p-invalid': props.invalid,
'p-variant-filled': props.variant === 'filled'
'p-variant-filled': props.variant === 'filled' || instance.$primevue.config.inputStyle === 'filled'
}
],
box: 'p-checkbox-box',