SelectButton remove old classes

This commit is contained in:
tugcekucukoglu 2024-04-02 12:19:42 +03:00
parent 5ba2a6b9d5
commit e1e1387caf
3 changed files with 1 additions and 33 deletions

View file

@ -58,14 +58,6 @@ export interface SelectButtonPassThroughOptions {
* Used to pass attributes to the root's DOM element.
*/
root?: SelectButtonPassThroughOptionType;
/**
* Used to pass attributes to the button's DOM element.
*/
button?: SelectButtonPassThroughOptionType;
/**
* Used to pass attributes to the label's DOM element.
*/
label?: SelectButtonPassThroughOptionType;
/**
* Used to manage all lifecycle hooks.
* @see {@link BaseComponent.ComponentHooks}

View file

@ -6,15 +6,7 @@ const classes = {
{
'p-invalid': props.invalid
}
],
button: ({ instance, option }) => [
'p-selectbutton-button',
{
'p-highlight': instance.isSelected(option),
'p-disabled': instance.isOptionDisabled(option)
}
],
label: 'p-selectbutton-label'
]
};
export default BaseStyle.extend({