primevue-mirror/components/lib/card/style/CardStyle.d.ts

48 lines
934 B
TypeScript
Raw Normal View History

/**
*
* Card is a flexible container component.
*
* [Live Demo](https://www.primevue.org/card/)
*
* @module cardstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum CardClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-card',
2024-05-22 13:52:02 +00:00
/**
* Class name of the header element
*/
header = 'p-card-header',
2024-05-22 13:52:02 +00:00
/**
* Class name of the body element
*/
body = 'p-card-body',
2024-05-22 13:52:02 +00:00
/**
* Class name of the caption element
*/
caption = 'p-card-caption',
2024-05-22 13:52:02 +00:00
/**
* Class name of the title element
*/
title = 'p-card-title',
2024-05-22 13:52:02 +00:00
/**
* Class name of the subtitle element
*/
subtitle = 'p-card-subtitle',
2024-05-22 13:52:02 +00:00
/**
* Class name of the content element
*/
content = 'p-card-content',
2024-05-22 13:52:02 +00:00
/**
* Class name of the footer element
*/
footer = 'p-card-footer'
}
2023-10-02 13:15:41 +00:00
export interface CardStyle extends BaseStyle {}