Typo fixes

pull/5806/head
tugcekucukoglu 2024-05-22 20:19:16 +03:00
parent 161916b41e
commit 9ba3cb8c61
5 changed files with 6 additions and 6 deletions

View File

@ -74,7 +74,7 @@ export interface PasswordPassThroughOptions {
* Used to pass attributes to the InputText component.
* @see {@link InputTextPassThroughOptions}
*/
ptInput?: InputTextPassThroughOptions<PasswordSharedPassThroughMethodOptions>;
pcInput?: InputTextPassThroughOptions<PasswordSharedPassThroughMethodOptions>;
/**
* Used to pass attributes to the mask icon's DOM element.
*/

View File

@ -4,7 +4,7 @@
ref="input"
:id="inputId"
:type="inputType"
:class="[cx('ptInput'), inputClass]"
:class="[cx('pcInput'), inputClass]"
:style="inputStyle"
:value="modelValue"
:aria-labelledby="ariaLabelledby"
@ -23,7 +23,7 @@
@keyup="onKeyUp"
@invalid="onInvalid"
v-bind="inputProps"
:pt="ptm('ptInput')"
:pt="ptm('pcInput')"
:unstyled="unstyled"
/>
<!-- TODO: hide* and show* deprecated since v4.0-->

View File

@ -17,7 +17,7 @@ export enum PasswordClasses {
/**
* Class name of the pt input element
*/
ptInput = 'p-password-input',
pcInput = 'p-password-input',
/**
* Class name of the mask icon element
*/

View File

@ -83,7 +83,7 @@ const classes = {
'p-inputwrapper-focus': instance.focused
}
],
ptInput: 'p-password-input',
pcInput: 'p-password-input',
maskIcon: 'p-password-toggle-mask-icon p-password-mask-icon',
unmaskIcon: 'p-password-toggle-mask-icon p-password-unmask-icon',
overlay: 'p-password-overlay p-component',

View File

@ -55438,7 +55438,7 @@
"description": "Used to pass attributes to the root's DOM element."
},
{
"name": "ptInput",
"name": "pcInput",
"optional": true,
"readonly": false,
"type": "InputTextPassThroughOptions<PasswordSharedPassThroughMethodOptions>",