primevue-mirror/components/lib/inplace/style/InplaceStyle.d.ts

28 lines
610 B
TypeScript
Raw Normal View History

/**
*
* Inplace provides an easy to do editing and display at the same time where clicking the output displays the actual content.
*
* [Live Demo](https://www.primevue.org/inplace)
*
* @module inplacestyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum InplaceClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-inplace',
2024-05-22 13:52:02 +00:00
/**
* Class name of the display element
*/
display = 'p-inplace-display',
2024-05-22 13:52:02 +00:00
/**
* Class name of the content element
*/
content = 'p-inplace-content'
}
2023-10-02 13:15:41 +00:00
export interface InplaceStyle extends BaseStyle {}