claude-web/node_modules/primevue/orderlist/style/index.d.ts

24 lines
476 B
TypeScript
Raw Permalink Normal View History

2026-02-23 02:23:38 +00:00
/**
*
* OrderList is used to managed the order of a collection.
*
* [Live Demo](https://primevue.org/orderlist)
*
* @module orderliststyle
*
*/
import type { BaseStyle } from '@primevue/core/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 {}