2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* InputOtp is used to enter one time passwords.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/inputotp/)
|
|
|
|
*
|
|
|
|
* @module inputotpstyle
|
|
|
|
*
|
|
|
|
*/
|
2024-02-21 18:38:16 +00:00
|
|
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum InputOtpClasses {
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the root element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
root = 'p-inputotp',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the input element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
pcInput = 'p-inputotp-input'
|
|
|
|
}
|
|
|
|
|
2024-02-21 18:38:16 +00:00
|
|
|
export interface InputOtpStyle extends BaseStyle {}
|