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 {
|
|
|
|
root = 'p-float-label'
|
|
|
|
}
|
|
|
|
|
2024-01-30 08:01:40 +00:00
|
|
|
export interface FloatLabelStyle extends BaseStyle {}
|