Refactored variant input usage

pull/5206/head
Cagatay Civici 2024-02-04 14:09:23 +03:00
parent 975580a23b
commit fa0a2f267a
2 changed files with 0 additions and 2 deletions

View File

@ -87,7 +87,6 @@ const classes = {
panel: ({ props, instance }) => [ panel: ({ props, instance }) => [
'p-treeselect-panel p-component', 'p-treeselect-panel p-component',
{ {
'p-input-filled': props.variant === 'filled' || instance.$primevue.config.inputStyle === 'filled',
'p-ripple-disabled': instance.$primevue.config.ripple === false 'p-ripple-disabled': instance.$primevue.config.ripple === false
} }
], ],

View File

@ -121,7 +121,6 @@ export default {
{ {
'layout-news-active': this.$appState.newsActive, 'layout-news-active': this.$appState.newsActive,
'p-ripple-disabled': this.$appState.ripple === false, 'p-ripple-disabled': this.$appState.ripple === false,
'p-input-filled': this.$primevue.config.inputStyle === 'filled',
'layout-dark': this.$appState.darkTheme, 'layout-dark': this.$appState.darkTheme,
'layout-light': !this.$appState.darkTheme 'layout-light': !this.$appState.darkTheme
} }