Fixed #5480
parent
70f90968c6
commit
d397280a22
|
@ -10,7 +10,7 @@
|
|||
import type { DefineComponent, DesignToken, EmitFn, Nullable, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { InputHTMLAttributes } from 'vue';
|
||||
import 'vue';
|
||||
|
||||
export declare type InputTextPassThroughOptionType<T = any> = InputTextPassThroughAttributes | ((options: InputTextPassThroughMethodOptions<T>) => InputTextPassThroughAttributes | string) | string | null | undefined;
|
||||
|
||||
|
@ -82,7 +82,7 @@ export interface InputTextContext {
|
|||
/**
|
||||
* Defines valid properties in InputText component.
|
||||
*/
|
||||
export interface InputTextProps extends InputHTMLAttributes {
|
||||
export interface InputTextProps {
|
||||
/**
|
||||
* Value of the component.
|
||||
*/
|
||||
|
|
|
@ -169,7 +169,7 @@ export interface PasswordMeterStateOptions {
|
|||
/**
|
||||
* Defines valid properties in Password component.
|
||||
*/
|
||||
export interface PasswordProps extends InputHTMLAttributes {
|
||||
export interface PasswordProps {
|
||||
/**
|
||||
* Value of the component.
|
||||
*/
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
import type { DefineComponent, DesignToken, EmitFn, Nullable, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { TextareaHTMLAttributes } from 'vue';
|
||||
import 'vue';
|
||||
|
||||
export declare type TextareaPassThroughOptionType = TextareaPassThroughAttributes | ((options: TextareaPassThroughMethodOptions) => TextareaPassThroughAttributes | string) | string | null | undefined;
|
||||
|
||||
|
@ -85,9 +85,8 @@ export interface TextareaContext {
|
|||
|
||||
/**
|
||||
* Defines valid properties in Textarea component. In addition to these, all properties of TextareaHTMLAttributes can be used in this component.
|
||||
* @extends TextareaHTMLAttributes
|
||||
*/
|
||||
export interface TextareaProps extends TextareaHTMLAttributes {
|
||||
export interface TextareaProps {
|
||||
/**
|
||||
* Value of the component.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue