pull/5507/head
Cagatay Civici 2024-04-02 12:21:12 +03:00
commit da631a7d67
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({

View File

@ -47192,22 +47192,6 @@
"default": "",
"description": "Used to pass attributes to the root's DOM element."
},
{
"name": "button",
"optional": true,
"readonly": false,
"type": "SelectButtonPassThroughOptionType",
"default": "",
"description": "Used to pass attributes to the button's DOM element."
},
{
"name": "label",
"optional": true,
"readonly": false,
"type": "SelectButtonPassThroughOptionType",
"default": "",
"description": "Used to pass attributes to the label's DOM element."
},
{
"name": "hooks",
"optional": true,