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

19 lines
442 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 {
root = 'p-inplace',
display = 'p-inplace-display',
content = 'p-inplace-content'
}
2023-10-02 13:15:41 +00:00
export interface InplaceStyle extends BaseStyle {}