Button class style and dropdown icon customization

This commit is contained in:
Bahadır Sofuoğlu 2023-01-02 11:40:36 +03:00
parent c5c1e69a65
commit 3825bf7c60
4 changed files with 116 additions and 4 deletions

View file

@ -35,6 +35,12 @@ const SplitButtonProps = [
default: 'body',
description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.'
},
{
name: 'disabled',
type: 'boolean',
default: 'false',
description: 'When present, it specifies that the element should be disabled.'
},
{
name: 'class',
type: 'string',
@ -46,6 +52,36 @@ const SplitButtonProps = [
type: 'any',
default: 'null',
description: 'Inline of the component.'
},
{
name: 'buttonClass',
type: 'string',
default: 'null',
description: 'Style class of the button.'
},
{
name: 'menuButtonIcon',
type: 'string',
default: 'null',
description: 'Name of the menu button icon.'
},
{
name: 'menuButtonClass',
type: 'string',
default: 'null',
description: 'Style class of the menu button.'
},
{
name: 'menuClass',
type: 'string',
default: 'null',
description: 'Style class of the menu.'
},
{
name: 'menuStyle',
type: 'any',
default: 'null',
description: 'Inline style of the menu.'
}
];