2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* FloatLabel appears on top of the input field when focused.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/inputtext/)
|
|
|
|
*
|
|
|
|
* @module floatlabelstyle
|
|
|
|
*
|
|
|
|
*/
|
2024-01-30 08:01:40 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum FloatLabelClasses {
|
2024-05-22 17:19:32 +00:00
|
|
|
/**
|
|
|
|
* Class name of the root element
|
|
|
|
*/
|
2024-05-22 13:45:58 +00:00
|
|
|
root = 'p-floatlabel'
|
2024-05-08 11:40:44 +00:00
|
|
|
}
|
|
|
|
|
2024-01-30 08:01:40 +00:00
|
|
|
export interface FloatLabelStyle extends BaseStyle {}
|