2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Toolbar is a grouping component for buttons and other content.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/toolbar/)
|
|
|
|
*
|
|
|
|
* @module toolbarstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum ToolbarClasses {
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the root element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
root = 'p-toolbar',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the start element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
start = 'p-toolbar-start',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the center element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
center = 'p-toolbar-center',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the end element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
end = 'p-toolbar-end'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface ToolbarStyle extends BaseStyle {}
|