Fixed #4389 - Rename PTOptions and DefaultPTOptions types with PassThrough and DefaultPassThrough types

This commit is contained in:
mertsincan 2023-09-05 12:28:04 +01:00
parent 57ce4e0183
commit 5c94099fa7
95 changed files with 280 additions and 280 deletions

View file

@ -11,7 +11,7 @@ import { HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptionType } from '../button';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
import { VirtualScrollerItemOptions, VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../virtualscroller';
export declare type AutoCompletePassThroughOptionType = AutoCompletePassThroughAttributes | ((options: AutoCompletePassThroughMethodOptions) => AutoCompletePassThroughAttributes | string) | string | null | undefined;
@ -464,7 +464,7 @@ export interface AutoCompleteProps {
* Used to pass attributes to DOM elements inside the component.
* @type {AutoCompletePassThroughOptions}
*/
pt?: PTOptions<AutoCompletePassThroughOptions>;
pt?: PassThrough<AutoCompletePassThroughOptions>;
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}