2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* SplitButton groups a set of commands in an overlay with a default command.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/splitbutton/)
|
|
|
|
*
|
|
|
|
* @module splitbuttonstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum SplitButtonClasses {
|
|
|
|
root = 'p-splitbutton',
|
|
|
|
pcButton = 'p-splitbutton-button',
|
|
|
|
pcDropdown = 'p-splitbutton-dropdown'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface SplitButtonStyle extends BaseStyle {}
|