mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Fixed #5480
This commit is contained in:
parent
70f90968c6
commit
d397280a22
3 changed files with 5 additions and 6 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
2
packages/primevue/src/password/Password.d.ts
vendored
2
packages/primevue/src/password/Password.d.ts
vendored
|
@ -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.
|
||||
*/
|
||||
|
|
5
packages/primevue/src/textarea/Textarea.d.ts
vendored
5
packages/primevue/src/textarea/Textarea.d.ts
vendored
|
@ -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…
Add table
Add a link
Reference in a new issue