Update Config.d.ts

pull/6275/head^2
tugcekucukoglu 2024-10-01 13:07:41 +03:00
parent 097525b558
commit 9c821d5fac
1 changed files with 7 additions and 5 deletions

View File

@ -59,6 +59,7 @@ import type { InputNumberPassThroughOptions } from 'primevue/inputnumber';
import type { InputOtpPassThroughOptions } from 'primevue/inputotp';
import type { InputSwitchPassThroughOptions } from 'primevue/inputswitch';
import type { InputTextPassThroughOptions } from 'primevue/inputtext';
import type { KeyFilterDirectivePassThroughOptions } from 'primevue/keyfilter';
import type { KnobPassThroughOptions } from 'primevue/knob';
import type { ListboxPassThroughOptions } from 'primevue/listbox';
import type { MegaMenuPassThroughOptions } from 'primevue/megamenu';
@ -289,12 +290,13 @@ export interface PrimeVuePTOptions {
treetable?: DefaultPassThrough<TreeTablePassThroughOptions>;
virtualscroller?: DefaultPassThrough<VirtualScrollerPassThroughOptions>;
directives?: {
badge?: BadgeDirectivePassThroughOptions;
tooltip?: TooltipDirectivePassThroughOptions;
styleclass?: StyleClassDirectivePassThroughOptions;
focustrap?: FocusTrapDirectivePassThroughOptions;
ripple?: RippleDirectivePassThroughOptions;
animate?: AnimateOnScrollDirectivePassThroughOptions;
badge?: BadgeDirectivePassThroughOptions;
focustrap?: FocusTrapDirectivePassThroughOptions;
keyfilter?: KeyFilterDirectivePassThroughOptions;
ripple?: RippleDirectivePassThroughOptions;
styleclass?: StyleClassDirectivePassThroughOptions;
tooltip?: TooltipDirectivePassThroughOptions;
};
global?: {
css?: ((options: any) => string | undefined) | string | undefined;