2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* OrderList is used to managed the order of a collection.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://primevue.org/orderlist)
|
|
|
|
*
|
|
|
|
* @module orderliststyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum OrderListClasses {
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the root element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
root = 'p-orderlist',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the controls element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
controls = 'p-orderlist-controls'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface OrderListStyle extends BaseStyle {}
|