primevue-mirror/components/lib/rating/style/RatingStyle.d.ts

32 lines
620 B
TypeScript
Raw Normal View History

/**
*
* Rating component is a star based selection input.
*
* [Live Demo](https://www.primevue.org/rating/)
*
* @module ratingstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum RatingClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-rating',
2024-05-22 13:52:02 +00:00
/**
* Class name of the option element
*/
option = 'p-rating-option',
2024-05-22 13:52:02 +00:00
/**
* Class name of the on icon element
*/
onIcon = 'p-rating-on-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the off icon element
*/
offIcon = 'p-rating-off-icon'
}
2023-10-02 13:15:41 +00:00
export interface RatingStyle extends BaseStyle {}