pull/6829/head
tugcekucukoglu 2024-11-21 15:38:10 +03:00
parent 70f90968c6
commit d397280a22
3 changed files with 5 additions and 6 deletions

View File

@ -10,7 +10,7 @@
import type { DefineComponent, DesignToken, EmitFn, Nullable, PassThrough } from '@primevue/core'; import type { DefineComponent, DesignToken, EmitFn, Nullable, PassThrough } from '@primevue/core';
import type { ComponentHooks } from '@primevue/core/basecomponent'; import type { ComponentHooks } from '@primevue/core/basecomponent';
import type { PassThroughOptions } from 'primevue/passthrough'; 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; 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. * Defines valid properties in InputText component.
*/ */
export interface InputTextProps extends InputHTMLAttributes { export interface InputTextProps {
/** /**
* Value of the component. * Value of the component.
*/ */

View File

@ -169,7 +169,7 @@ export interface PasswordMeterStateOptions {
/** /**
* Defines valid properties in Password component. * Defines valid properties in Password component.
*/ */
export interface PasswordProps extends InputHTMLAttributes { export interface PasswordProps {
/** /**
* Value of the component. * Value of the component.
*/ */

View File

@ -10,7 +10,7 @@
import type { DefineComponent, DesignToken, EmitFn, Nullable, PassThrough } from '@primevue/core'; import type { DefineComponent, DesignToken, EmitFn, Nullable, PassThrough } from '@primevue/core';
import type { ComponentHooks } from '@primevue/core/basecomponent'; import type { ComponentHooks } from '@primevue/core/basecomponent';
import type { PassThroughOptions } from 'primevue/passthrough'; import type { PassThroughOptions } from 'primevue/passthrough';
import { TextareaHTMLAttributes } from 'vue'; import 'vue';
export declare type TextareaPassThroughOptionType = TextareaPassThroughAttributes | ((options: TextareaPassThroughMethodOptions) => TextareaPassThroughAttributes | string) | string | null | undefined; 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. * 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. * Value of the component.
*/ */