24 lines
462 B
TypeScript
24 lines
462 B
TypeScript
/**
|
|
*
|
|
* OrderList is used to managed the order of a collection.
|
|
*
|
|
* [Live Demo](https://primevue.org/orderlist)
|
|
*
|
|
* @module orderliststyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum OrderListClasses {
|
|
/**
|
|
* Class name of the root element
|
|
*/
|
|
root = 'p-orderlist',
|
|
/**
|
|
* Class name of the controls element
|
|
*/
|
|
controls = 'p-orderlist-controls'
|
|
}
|
|
|
|
export interface OrderListStyle extends BaseStyle {}
|