Fixed #4290 - Update d.ts files

This commit is contained in:
mertsincan 2023-09-05 09:50:46 +01:00
parent bb0d506860
commit 91b27d7318
95 changed files with 913 additions and 2 deletions

View file

@ -10,6 +10,7 @@
import { HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { InputTextPassThroughOptionType } from '../inputtext';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, Nullable, PTOptions } from '../ts-helpers';
export declare type PasswordPassThroughOptionType = PasswordPassThroughAttributes | ((options: PasswordPassThroughMethodOptions) => PasswordPassThroughAttributes | string) | string | null | undefined;
@ -32,6 +33,10 @@ export interface PasswordPassThroughMethodOptions {
* Defines current inline state.
*/
state: PasswordState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -253,6 +258,11 @@ export interface PasswordProps extends InputHTMLAttributes {
* @type {PasswordPassThroughOptions}
*/
pt?: PTOptions<PasswordPassThroughOptions>;
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false