UNPKG

primevue

Version:

PrimeVue is a premium UI library for Vue featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBlock, wh

24 lines (21 loc) 476 B
/** * * OrderList is used to managed the order of a collection. * * [Live Demo](https://primevue.dev/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 {}