primevue-mirror/components/lib/password/style/PasswordStyle.d.ts

48 lines
1.0 KiB
TypeScript
Raw Normal View History

/**
*
* Password displays strength indicator for password fields.
*
* [Live Demo](https://www.primevue.org/password/)
*
* @module passwordstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum PasswordClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-password',
2024-05-22 13:52:02 +00:00
/**
* Class name of the pt input element
*/
2024-05-22 17:19:16 +00:00
pcInput = 'p-password-input',
2024-05-22 13:52:02 +00:00
/**
* Class name of the mask icon element
*/
maskIcon = 'p-password-mask-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the unmask icon element
*/
unmaskIcon = 'p-password-unmask-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the overlay element
*/
overlay = 'p-password-overlay',
2024-05-22 13:52:02 +00:00
/**
* Class name of the meter element
*/
meter = 'p-password-meter',
2024-05-22 13:52:02 +00:00
/**
* Class name of the meter label element
*/
meterLabel = 'p-password-meter-label',
2024-05-22 13:52:02 +00:00
/**
* Class name of the meter text element
*/
meterText = 'p-password-meter-text'
}
2023-10-02 13:15:41 +00:00
export interface PasswordStyle extends BaseStyle {}