Fixed #4290 - Update d.ts files

pull/4114/head^2
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 { VNode } from 'vue';
import { AccordionTabPassThroughOptionType } from '../accordiontab';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type AccordionPassThroughOptionType = AccordionPassThroughAttributes | ((options: AccordionPassThroughMethodOptions) => AccordionPassThroughAttributes | string) | string | null | undefined;
@ -30,6 +31,10 @@ export interface AccordionPassThroughMethodOptions {
* Defines current inline state.
*/
state: AccordionState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
* Custom tab open event.
@ -149,6 +154,11 @@ export interface AccordionProps {
* @type {AccordionPassThroughOptions}
*/
pt?: PTOptions<AccordionPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { AnchorHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue';
import { AccordionPassThroughOptions } from '../accordion';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type AccordionTabPassThroughOptionType = AccordionTabPassThroughAttributes | ((options: AccordionTabPassThroughMethodOptions) => AccordionTabPassThroughAttributes | string) | string | null | undefined;
@ -35,6 +36,10 @@ export interface AccordionTabPassThroughMethodOptions {
* Defines current options.
*/
context: AccordionTabContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -132,6 +137,11 @@ export interface AccordionTabProps {
* @type {AccordionTabPassThroughOptions}
*/
pt?: PTOptions<AccordionTabPassThroughOptions>;
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
}
/**

View File

@ -10,6 +10,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 { VirtualScrollerItemOptions, VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../virtualscroller';
@ -37,6 +38,10 @@ export interface AutoCompletePassThroughMethodOptions {
* Defines current options.
*/
context: AutoCompleteContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -460,6 +465,11 @@ export interface AutoCompleteProps {
* @type {AutoCompletePassThroughOptions}
*/
pt?: PTOptions<AutoCompletePassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
import { VNode } from 'vue';
import { AvatarGroupPassThroughOptions } from '../avatargroup';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type AvatarPassThroughOptionType = AvatarPassThroughAttributes | ((options: AvatarPassThroughMethodOptions) => AvatarPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface AvatarPassThroughMethodOptions {
* Defines parent instance.
*/
parent: AvatarGroupPassThroughOptions;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -106,6 +111,11 @@ export interface AvatarProps {
* @type {AvatarPassThroughOptions}
*/
pt?: PTOptions<AvatarPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*
*/
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type AvatarGroupPassThroughOptionType = AvatarGroupPassThroughAttributes | null | undefined;
@ -44,6 +45,11 @@ export interface AvatarGroupProps {
* @type {AvatarGroupPassThroughOptions}
*/
pt?: PTOptions<AvatarGroupPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type BadgePassThroughOptionType = BadgePassThroughAttributes | ((options: BadgePassThroughMethodOptions) => BadgePassThroughAttributes | string) | string | null | undefined;
@ -25,6 +26,10 @@ export interface BadgePassThroughMethodOptions {
* Defines valid properties.
*/
props: BadgeProps;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -71,6 +76,11 @@ export interface BadgeProps {
* @type {BadgePassThroughOptions}
*/
pt?: PTOptions<BadgePassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*/
import { DirectiveBinding, ObjectDirective } from 'vue';
import { DirectiveHooks } from '../basedirective';
import { PassThroughOptions } from '../passthrough';
import { PTOptions } from '../ts-helpers';
export declare type BadgeDirectivePassThroughOptionType = BadgeDirectivePassThroughAttributes | ((options: BadgePassThroughMethodOptions) => BadgeDirectivePassThroughAttributes) | null | undefined;
@ -17,6 +18,10 @@ export declare type BadgeDirectivePassThroughOptionType = BadgeDirectivePassThro
*/
export interface BadgePassThroughMethodOptions {
context: BadgeContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -28,6 +33,11 @@ export interface BadgeDirectiveOptions {
* @type {BadgeDirectivePassThroughOptions}
*/
pt?: PTOptions<BadgeDirectivePassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type BlockUIPassThroughOptionType = BlockUIPassThroughAttributes | ((options: BlockUIPassThroughMethodOptions) => BlockUIPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface BlockUIPassThroughMethodOptions {
* Defines current inline state.
*/
state: BlockUIState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -98,6 +103,11 @@ export interface BlockUIProps {
* @type {BlockUIPassThroughOptions}
*/
pt?: PTOptions<BlockUIPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type BreadcrumbPassThroughOptionType = BreadcrumbPassThroughAttributes | ((options: BreadcrumbPassThroughMethodOptions) => BreadcrumbPassThroughAttributes | string) | string | null | undefined;
@ -30,6 +31,10 @@ export interface BreadcrumbPassThroughMethodOptions {
* Defines current options.
*/
context: BreadcrumbContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -145,6 +150,11 @@ export interface BreadcrumbProps {
* @type {BreadcrumbPassThroughOptions}
*/
pt?: PTOptions<BreadcrumbPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { ButtonHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ButtonPassThroughOptionType = ButtonPassThroughAttributes | ((options: ButtonPassThroughMethodOptions) => ButtonPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface ButtonPassThroughMethodOptions {
* Defines parent instance.
*/
parent: any;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -163,6 +168,11 @@ export interface ButtonProps extends ButtonHTMLAttributes {
* @type {ButtonPassThroughOptions}
*/
pt?: PTOptions<ButtonPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,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';
export declare type CalendarPassThroughOptionType = CalendarPassThroughAttributes | ((options: CalendarPassThroughMethodOptions) => CalendarPassThroughAttributes | string) | string | null | undefined;
@ -36,6 +37,10 @@ export interface CalendarPassThroughMethodOptions {
* Defines current options.
*/
context: CalendarContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -704,6 +709,11 @@ export interface CalendarProps {
* @type {CalendarPassThroughOptions}
*/
pt?: PTOptions<CalendarPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type CardPassThroughOptionType = CardPassThroughAttributes | null | undefined;
@ -69,6 +70,11 @@ export interface CardProps {
* @type {CardPassThroughOptions}
*/
pt?: PTOptions<CardPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { ButtonHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type CarouselPassThroughOptionType = CarouselPassThroughAttributes | ((options: CarouselPassThroughMethodOptions) => CarouselPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface CarouselPassThroughMethodOptions {
* Defines current options.
*/
context: CarouselContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -287,6 +292,11 @@ export interface CarouselProps {
* @type {CarouselPassThroughOptions}
*/
pt?: PTOptions<CarouselPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type CascadeSelectPassThroughOptionType = CascadeSelectPassThroughAttributes | ((options: CascadeSelectPassThroughMethodOptions) => CascadeSelectPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface CascadeSelectPassThroughMethodOptions {
* Defines current inline state.
*/
state: CascadeSelectState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -335,6 +340,11 @@ export interface CascadeSelectProps {
* @type {CascadeSelectPassThroughOptions}
*/
pt?: PTOptions<CascadeSelectPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { CanvasHTMLAttributes } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ChartPassThroughOptionType = ChartPassThroughAttributes | ((options: ChartPassThroughMethodOptions) => ChartPassThroughAttributes | string) | string | null | undefined;
@ -25,6 +26,10 @@ export interface ChartPassThroughMethodOptions {
* Defines valid properties.
*/
props: ChartProps;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -112,6 +117,11 @@ export interface ChartProps {
* @type {ChartPassThroughOptions}
*/
pt?: PTOptions<ChartPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { InputHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type CheckboxPassThroughOptionType = CheckboxPassThroughAttributes | ((options: CheckboxPassThroughMethodOptions) => CheckboxPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface CheckboxPassThroughMethodOptions {
* Defines current options.
*/
context: CheckboxContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -164,6 +169,11 @@ export interface CheckboxProps {
* @type {CheckboxPassThroughOptions}
*/
pt?: PTOptions<CheckboxPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ChipPassThroughOptionType = ChipPassThroughAttributes | ((options: ChipPassThroughMethodOptions) => ChipPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface ChipPassThroughMethodOptions {
* Defines current inline state.
*/
state: ChipState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -113,6 +118,11 @@ export interface ChipProps {
* @type {ChipPassThroughOptions}
*/
pt?: PTOptions<ChipPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { InputHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ChipsPassThroughOptionType = ChipsPassThroughAttributes | ((options: ChipsPassThroughMethodOptions) => ChipsPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface ChipsPassThroughMethodOptions {
* Defines current inline state.
*/
state: ChipsState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -192,6 +197,11 @@ export interface ChipsProps {
* @type {ChipsPassThroughOptions}
*/
pt?: PTOptions<ChipsPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { TransitionProps } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ColorPickerPassThroughOptionType = ColorPickerPassThroughAttributes | ((options: ColorPickerPassThroughMethodOptions) => ColorPickerPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface ColorPickerPassThroughMethodOptions {
* Defines current inline state.
*/
state: ColorPickerState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -174,6 +179,11 @@ export interface ColorPickerProps {
* @type {ColorPickerPassThroughOptions}
*/
pt?: PTOptions<ColorPickerPassThroughOptions>;
/**
* 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

View File

@ -14,6 +14,7 @@ import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptionType } from '../button';
import { DataTablePassThroughOptions } from '../datatable';
import { DropdownPassThroughOptionType } from '../dropdown';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
import { VirtualScrollerLoaderOptions } from '../virtualscroller';
@ -39,6 +40,10 @@ export interface ColumnPassThroughMethodOptions {
* Defines current options.
*/
context: ColumnContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -580,6 +585,11 @@ export interface ColumnProps {
* @type {ColumnPassThroughOptions}
*/
pt?: PTOptions<ColumnPassThroughOptions>;
/**
* 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

View File

@ -7,6 +7,7 @@
*/
import { ComponentHooks } from '../basecomponent';
import { DataTablePassThroughOptions } from '../datatable';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ColumnGroupPassThroughOptionType = ColumnGroupPassThroughAttributes | ((options: ColumnGroupPassThroughMethodOptions) => ColumnGroupPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface ColumnGroupPassThroughMethodOptions {
* Defines current options.
*/
context: ColumnGroupContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -69,6 +74,11 @@ export interface ColumnGroupProps {
* @type {ColumnGroupPassThroughOptions}
*/
pt?: PTOptions<ColumnGroupPassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@ import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptions } from '../button';
import { ConfirmationOptions } from '../confirmationoptions';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ConfirmDialogPassThroughOptionType = ConfirmDialogPassThroughAttributes | ((options: ConfirmDialogPassThroughMethodOptions) => ConfirmDialogPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface ConfirmDialogPassThroughMethodOptions {
* Defines current inline state.
*/
state: ConfirmDialogState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -162,6 +167,11 @@ export interface ConfirmDialogProps {
* @type {ConfirmDialogPassThroughOptions}
*/
pt?: PTOptions<ConfirmDialogPassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@ import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptions } from '../button';
import { ConfirmationOptions } from '../confirmationoptions';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ConfirmPopupPassThroughOptionType = ConfirmPopupPassThroughAttributes | ((options: ConfirmPopupPassThroughMethodOptions) => ConfirmPopupPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface ConfirmPopupPassThroughMethodOptions {
* Defines current inline state.
*/
state: ConfirmPopupState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -116,6 +121,11 @@ export interface ConfirmPopupProps {
* @type {ConfirmPopupPassThroughOptions}
*/
pt?: PTOptions<ConfirmPopupPassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@
import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ContextMenuPassThroughOptionType = ContextMenuPassThroughAttributes | ((options: ContextMenuPassThroughMethodOptions) => ContextMenuPassThroughAttributes | string) | string | null | undefined;
@ -37,6 +38,10 @@ export interface ContextMenuPassThroughMethodOptions {
* Defines current options.
*/
context: ContextMenuContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -251,6 +256,11 @@ export interface ContextMenuProps {
* @type {ContextMenuPassThroughOptions}
*/
pt?: PTOptions<ContextMenuPassThroughOptions>;
/**
* 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

View File

@ -12,6 +12,7 @@ import { ComponentHooks } from '../basecomponent';
import { ColumnPassThroughOptionType } from '../column';
import { ColumnGroupPassThroughOptionType } from '../columngroup';
import { PaginatorPassThroughOptionType } from '../paginator';
import { PassThroughOptions } from '../passthrough';
import { RowPassThroughOptionType } from '../row';
import { ClassComponent, GlobalComponentConstructor, Nullable, PTOptions } from '../ts-helpers';
import { VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../virtualscroller';
@ -40,6 +41,10 @@ export interface DataTablePassThroughMethodOptions {
* Defines current options.
*/
context: DataTableContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -1098,6 +1103,11 @@ export interface DataTableProps {
* @type {DataTablePassThroughOptions}
*/
pt?: PTOptions<DataTablePassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PaginatorPassThroughOptionType } from '../paginator';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type DataViewPassThroughOptionType = DataViewPassThroughAttributes | ((options: DataViewPassThroughMethodOptions) => DataViewPassThroughAttributes | string) | string | null | undefined;
@ -30,6 +31,10 @@ export interface DataViewPassThroughMethodOptions {
* Defines current inline state.
*/
state: DataViewState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
* Custom page event.
@ -222,6 +227,11 @@ export interface DataViewProps {
* @type {DataViewPassThroughOptions}
*/
pt?: PTOptions<DataViewPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type DataViewLayoutOptionsPassThroughOptionType =
@ -34,6 +35,10 @@ export interface DataViewLayoutOptionsPassThroughMethodOptions {
* Defines current inline state.
*/
state: DataViewLayoutOptionsState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -104,6 +109,11 @@ export interface DataViewLayoutOptionsProps {
* @type {DataViewLayoutOptionsPassThroughOptions}
*/
pt?: PTOptions<DataViewLayoutOptionsPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type DeferredContentPassThroughOptionType = DeferredContentPassThroughAttributes | ((options: DeferredContentPassThroughMethodOptions) => DeferredContentPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface DeferredContentPassThroughMethodOptions {
* Defines current inline state.
*/
state: DeferredContentState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -74,6 +79,11 @@ export interface DeferredContentProps {
* @type {DeferredContentPassThroughOptions}
*/
pt?: PTOptions<DeferredContentPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { HTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type DialogPassThroughOptionType = DialogPassThroughAttributes | ((options: DialogPassThroughMethodOptions) => DialogPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface DialogPassThroughMethodOptions {
* Defines current inline state.
*/
state: DialogState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -270,6 +275,11 @@ export interface DialogProps {
* @type {DialogPassThroughOptions}
*/
pt?: PTOptions<DialogPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type DividerPassThroughOptionType = DividerPassThroughAttributes | ((options: DividerPassThroughMethodOptions) => DividerPassThroughAttributes | string) | string | null | undefined;
@ -25,6 +26,10 @@ export interface DividerPassThroughMethodOptions {
* Defines valid properties.
*/
props: DividerProps;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -77,6 +82,11 @@ export interface DividerProps {
* @type {DividerPassThroughOptions}
*/
pt?: PTOptions<DividerPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type DockPassThroughOptionType = DockPassThroughAttributes | ((options: DockPassThroughMethodOptions) => DockPassThroughAttributes | string) | string | null | undefined;
@ -34,6 +35,10 @@ export interface DockPassThroughMethodOptions {
* Defines current options.
*/
context: DockContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -212,6 +217,11 @@ export interface DockProps {
* @type {DockPassThroughOptions}
*/
pt?: PTOptions<DockPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
import { VirtualScrollerItemOptions, VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../virtualscroller';
@ -36,6 +37,10 @@ export interface DropdownPassThroughMethodOptions {
* Defines current options.
*/
context: DropdownContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -441,6 +446,11 @@ export interface DropdownProps {
* @type {DropdownPassThroughOptions}
*/
pt?: PTOptions<DropdownPassThroughOptions>;
/**
* 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

View File

@ -9,7 +9,9 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type EditorPassThroughOptionType = EditorPassThroughAttributes | ((options: EditorPassThroughMethodOptions) => EditorPassThroughAttributes | string) | string | null | undefined;
/**
@ -28,6 +30,10 @@ export interface EditorPassThroughMethodOptions {
* Defines current inline state.
*/
state: EditorState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -229,6 +235,11 @@ export interface EditorProps {
* @type {EditorPassThroughOptions}
*/
pt?: PTOptions<EditorPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { AnchorHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type FieldsetPassThroughOptionType = FieldsetPassThroughAttributes | ((options: FieldsetPassThroughMethodOptions) => FieldsetPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface FieldsetPassThroughMethodOptions {
* Defines current inline state.
*/
state: FieldsetState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -138,6 +143,11 @@ export interface FieldsetProps {
* @type {FieldsetPassThroughOptions}
*/
pt?: PTOptions<FieldsetPassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@ import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptions } from '../button';
import { MessagePassThroughOptions } from '../message';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type FileUploadPassThroughOptionType = FileUploadPassThroughAttributes | ((options: FileUploadPassThroughMethodOptions) => FileUploadPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface FileUploadPassThroughMethodOptions {
* Defines current inline state.
*/
state: FileUploadState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -423,6 +428,11 @@ export interface FileUploadProps {
* @type {FileUploadPassThroughOptions}
*/
pt?: PTOptions<FileUploadPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*/
import { DirectiveBinding, ObjectDirective } from 'vue';
import { DirectiveHooks } from '../basedirective';
import { PassThroughOptions } from '../passthrough';
import { PTOptions } from '../ts-helpers';
export declare type FocusTrapDirectivePassThroughOptionType = FocusTrapDirectivePassThroughAttributes | null | undefined;
@ -31,6 +32,11 @@ export interface FocusTrapOptions {
* @type {FocusTrapDirectivePassThroughOptions}
*/
pt?: PTOptions<FocusTrapDirectivePassThroughOptions>;
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
}
/**

View File

@ -9,6 +9,7 @@
*/
import { ButtonHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type GalleriaPassThroughOptionType = GalleriaPassThroughAttributes | ((options: GalleriaPassThroughMethodOptions) => GalleriaPassThroughAttributes | string) | string | null | undefined;
@ -35,6 +36,10 @@ export interface GalleriaPassThroughMethodOptions {
* Defines current options.
*/
context: GalleriaContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
export interface GalleriaResponsiveOptions {
@ -390,6 +395,11 @@ export interface GalleriaProps {
* @type {GalleriaPassThroughOptions}
*/
pt?: PTOptions<GalleriaPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ImagePassThroughOptionType = ImagePassThroughAttributes | ((options: ImagePassThroughMethodOptions) => ImagePassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface ImagePassThroughMethodOptions {
* Defines current inline state.
*/
state: ImageState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -191,6 +196,11 @@ export interface ImageProps {
* @type {ImagePassThroughOptions}
*/
pt?: PTOptions<ImagePassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type InlineMessagePassThroughOptionType = InlineMessagePassThroughAttributes | ((options: InlineMessagePassThroughMethodOptions) => InlineMessagePassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface InlineMessagePassThroughMethodOptions {
* Defines current inline state.
*/
state: InlineMessageState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -92,6 +97,11 @@ export interface InlineMessageProps {
* @type {InlineMessagePassThroughOptions}
*/
pt?: PTOptions<InlineMessagePassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@
import { ButtonHTMLAttributes, HTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptions } from '../button';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type InplacePassThroughOptionType = InplacePassThroughAttributes | ((options: InplacePassThroughMethodOptions) => InplacePassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface InplacePassThroughMethodOptions {
* Defines current inline state.
*/
state: InplaceState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -117,6 +122,11 @@ export interface InplaceProps {
* @type {InplacePassThroughOptions}
*/
pt?: PTOptions<InplacePassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*
*/
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type InputMaskPassThroughOptionType = InputMaskPassThroughAttributes | ((options: InputMaskPassThroughMethodOptions) => InputMaskPassThroughAttributes | string) | string | null | undefined;
@ -28,6 +29,10 @@ export interface InputMaskPassThroughMethodOptions {
* Defines current options.
*/
context: InputMaskContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -106,6 +111,11 @@ export interface InputMaskProps {
* @type {InputMaskPassThroughOptions}
*/
pt?: PTOptions<InputMaskPassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@ import { ButtonHTMLAttributes, InputHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptionType } from '../button';
import { InputTextPassThroughOptionType } from '../inputtext';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, Nullable, PTOptions } from '../ts-helpers';
export declare type InputNumberPassThroughOptionType = InputNumberPassThroughAttributes | ((options: InputNumberPassThroughMethodOptions) => InputNumberPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface InputNumberPassThroughMethodOptions {
* Defines current inline state.
*/
state: InputNumberState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -283,6 +288,11 @@ export interface InputNumberProps {
* @type {InputNumberPassThroughOptions}
*/
pt?: PTOptions<InputNumberPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { InputHTMLAttributes } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type InputSwitchPassThroughOptionType = InputSwitchPassThroughAttributes | ((options: InputSwitchPassThroughMethodOptions) => InputSwitchPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface InputSwitchPassThroughMethodOptions {
* Defines current inline state.
*/
state: InputSwitchState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -125,6 +130,11 @@ export interface InputSwitchProps {
* @type {InputSwitchPassThroughOptions}
*/
pt?: PTOptions<InputSwitchPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { InputHTMLAttributes } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, Nullable, PTOptions } from '../ts-helpers';
export declare type InputTextPassThroughOptionType = InputTextPassThroughAttributes | ((options: InputTextPassThroughMethodOptions) => InputTextPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface InputTextPassThroughMethodOptions {
* Defines current options.
*/
context: InputTextContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -87,6 +92,11 @@ export interface InputTextProps extends InputHTMLAttributes {
* @type {InputTextPassThroughOptions}
*/
pt?: PTOptions<InputTextPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*
*/
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type KnobPassThroughOptionType = KnobPassThroughAttributes | ((options: KnobPassThroughMethodOptions) => KnobPassThroughAttributes | string) | string | null | undefined;
@ -28,6 +29,10 @@ export interface KnobPassThroughMethodOptions {
* Defines current inline state.
*/
state: KnobState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -184,6 +189,11 @@ export interface KnobProps {
* @type {KnobPassThroughOptions}
*/
pt?: PTOptions<KnobPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { InputHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
import { VirtualScrollerItemOptions, VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../virtualscroller';
@ -34,6 +35,10 @@ export interface ListboxPassThroughMethodOptions {
* Defines current options.
*/
context: ListboxContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -335,6 +340,11 @@ export interface ListboxProps {
* @type {ListboxPassThroughOptions}
*/
pt?: PTOptions<ListboxPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type MegaMenuPassThroughOptionType = MegaMenuPassThroughAttributes | ((options: MegaMenuPassThroughMethodOptions) => MegaMenuPassThroughAttributes | string) | string | null | undefined;
@ -34,6 +35,10 @@ export interface MegaMenuPassThroughMethodOptions {
* Defines current options.
*/
context: MegaMenuContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -248,6 +253,11 @@ export interface MegaMenuProps {
* @type {MegaMenuPassThroughOptions}
*/
pt?: PTOptions<MegaMenuPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type MenuPassThroughOptionType = MenuPassThroughAttributes | ((options: MenuPassThroughMethodOptions) => MenuPassThroughAttributes | string) | string | null | undefined;
@ -36,6 +37,10 @@ export interface MenuPassThroughMethodOptions {
* Defines current options.
*/
context: MenuContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -220,6 +225,11 @@ export interface MenuProps {
* @type {MenuPassThroughOptions}
*/
pt?: PTOptions<MenuPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { ButtonHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type MenubarPassThroughOptionType = MenubarPassThroughAttributes | ((options: MenubarPassThroughMethodOptions) => MenubarPassThroughAttributes | string) | string | null | undefined;
@ -34,6 +35,10 @@ export interface MenubarPassThroughMethodOptions {
* Defines current options.
*/
context: MenubarContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -239,6 +244,11 @@ export interface MenubarProps {
* @type {MenubarPassThroughOptions}
*/
pt?: PTOptions<MenubarPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { ButtonHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type MessagePassThroughOptionType = MessagePassThroughAttributes | ((options: MessagePassThroughMethodOptions) => MessagePassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface MessagePassThroughMethodOptions {
* Defines current inline state.
*/
state: MessageState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -143,6 +148,11 @@ export interface MessageProps {
* @type {MessagePassThroughOptions}
*/
pt?: PTOptions<MessagePassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { ButtonHTMLAttributes, HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
import { VirtualScrollerItemOptions, VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../virtualscroller';
@ -36,6 +37,10 @@ export interface MultiSelectPassThroughMethodOptions {
* Defines current options.
*/
context: MultiSelectContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -523,6 +528,11 @@ export interface MultiSelectProps {
* @type {MultiSelectPassThroughOptions}
*/
pt?: PTOptions<MultiSelectPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { ButtonHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptionType } from '../button';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type OrderListPassThroughOptionType = OrderListPassThroughAttributes | ((options: OrderListPassThroughMethodOptions) => OrderListPassThroughAttributes | string) | string | null | undefined;
@ -36,6 +37,10 @@ export interface OrderListPassThroughMethodOptions {
* Defines current options.
*/
context: OrderListContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -253,6 +258,11 @@ export interface OrderListProps {
* @type {OrderListPassThroughOptions}
*/
pt?: PTOptions<OrderListPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type OrganizationChartPassThroughOptionType = OrganizationChartPassThroughAttributes | ((options: OrganizationChartPassThroughMethodOptions) => OrganizationChartPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface OrganizationChartPassThroughMethodOptions {
* Defines current options.
*/
context: OrganizationChartContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -237,6 +242,11 @@ export interface OrganizationChartProps {
* @type {OrganizationChartPassThroughOptions}
*/
pt?: PTOptions<OrganizationChartPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type OverlayPanelPassThroughOptionType = OverlayPanelPassThroughAttributes | ((options: OverlayPanelPassThroughMethodOptions) => OverlayPanelPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface OverlayPanelPassThroughMethodOptions {
* Defines current inline state.
*/
state: OverlayPanelState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -148,6 +153,11 @@ export interface OverlayPanelProps {
* @type {OverlayPanelPassThroughOptions}
*/
pt?: PTOptions<OverlayPanelPassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@ import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { DropdownPassThroughOptionType } from '../dropdown';
import { InputNumberPassThroughOptionType } from '../inputnumber';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type PaginatorPassThroughOptionType = PaginatorPassThroughAttributes | ((options: PaginatorPassThroughMethodOptions) => PaginatorPassThroughAttributes | string) | string | null | undefined;
@ -35,6 +36,10 @@ export interface PaginatorPassThroughMethodOptions {
* Defines current options.
*/
context: PaginatorContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -248,6 +253,11 @@ export interface PaginatorProps {
* @type {PaginatorPassThroughOptions}
*/
pt?: PTOptions<PaginatorPassThroughOptions>;
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
}
/**

View File

@ -9,6 +9,7 @@
*/
import { ButtonHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type PanelPassThroughOptionType = PanelPassThroughAttributes | ((options: PanelPassThroughMethodOptions) => PanelPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface PanelPassThroughMethodOptions {
* Defines current inline state.
*/
state: PanelState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -146,6 +151,11 @@ export interface PanelProps {
* @type {PanelPassThroughOptions}
*/
pt?: PTOptions<PanelPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type PanelMenuPassThroughOptionType = PanelMenuPassThroughAttributes | ((options: PanelMenuPassThroughMethodOptions) => PanelMenuPassThroughAttributes | string) | string | null | undefined;
@ -36,6 +37,10 @@ export interface PanelMenuPassThroughMethodOptions {
* Defines current options.
*/
context: PanelMenuContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -252,6 +257,11 @@ export interface PanelMenuProps {
* @type {PanelMenuPassThroughOptions}
*/
pt?: PTOptions<PanelMenuPassThroughOptions>;
/**
* 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

View File

@ -1,6 +1,6 @@
export interface usePassThroughOptions {
export interface PassThroughOptions {
mergeSections?: boolean | undefined;
mergeProps?: boolean | undefined;
}
export declare function usePassThrough(pt1: object, pt2: object, options?: usePassThroughOptions): object;
export declare function usePassThrough(pt1: object, pt2: object, options?: PassThroughOptions): object;

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

View File

@ -10,6 +10,7 @@
import { ButtonHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptionType } from '../button';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type PickListPassThroughOptionType = PickListPassThroughAttributes | ((options: PickListPassThroughMethodOptions) => PickListPassThroughAttributes | string) | string | null | undefined;
@ -36,6 +37,10 @@ export interface PickListPassThroughMethodOptions {
* Defines current options.
*/
context: PickListContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -386,6 +391,11 @@ export interface PickListProps {
* @type {PickListPassThroughOptions}
*/
pt?: PTOptions<PickListPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ProgressBarPassThroughOptionType = ProgressBarPassThroughAttributes | ((options: ProgressBarPassThroughMethodOptions) => ProgressBarPassThroughAttributes | string) | string | null | undefined;
@ -25,6 +26,10 @@ export interface ProgressBarPassThroughMethodOptions {
* Defines valid properties.
*/
props: ProgressBarProps;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -81,6 +86,11 @@ export interface ProgressBarProps {
* @type {ProgressBarPassThroughOptions}
*/
pt?: PTOptions<ProgressBarPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*
*/
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ProgressSpinnerPassThroughOptionType = ProgressSpinnerPassThroughAttributes | ((options: ProgressSpinnerPassThroughMethodOptions) => ProgressSpinnerPassThroughAttributes | string) | string | null | undefined;
@ -24,6 +25,10 @@ export interface ProgressSpinnerPassThroughMethodOptions {
* Defines valid properties.
*/
props: ProgressSpinnerProps;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -80,6 +85,11 @@ export interface ProgressSpinnerProps {
* @type {ProgressSpinnerPassThroughOptions}
*/
pt?: PTOptions<ProgressSpinnerPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { InputHTMLAttributes } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type RadioButtonPassThroughOptionType = RadioButtonPassThroughAttributes | ((options: RadioButtonPassThroughMethodOptions) => RadioButtonPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface RadioButtonPassThroughMethodOptions {
* Defines current inline state.
*/
state: RadioButtonState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -131,6 +136,11 @@ export interface RadioButtonProps {
* @type {RadioButtonPassThroughOptions}
*/
pt?: PTOptions<RadioButtonPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type RatingPassThroughOptionType = RatingPassThroughAttributes | ((options: RatingPassThroughMethodOptions) => RatingPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface RatingPassThroughMethodOptions {
* Defines current options.
*/
context: RatingContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -191,6 +196,11 @@ export interface RatingProps {
* @type {RatingPassThroughOptions}
*/
pt?: PTOptions<RatingPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*/
import { DirectiveBinding, ObjectDirective } from 'vue';
import { DirectiveHooks } from '../basedirective';
import { PassThroughOptions } from '../passthrough';
import { PTOptions } from '../ts-helpers';
export declare type RippleDirectivePassThroughOptionType = RippleDirectivePassThroughAttributes | null | undefined;
@ -21,6 +22,11 @@ export interface RippleOptions {
* @type {RippleDirectivePassThroughOptions}
*/
pt?: PTOptions<RippleDirectivePassThroughOptions>;
/**
* 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

View File

@ -31,6 +31,10 @@ export interface RowPassThroughMethodOptions {
* Defines current options.
*/
context: RowContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ScrollPanelPassThroughOptionType = ScrollPanelPassThroughAttributes | ((options: ScrollPanelPassThroughMethodOptions) => ScrollPanelPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface ScrollPanelPassThroughMethodOptions {
* Defines current inline state.
*/
state: ScrollPanelState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -109,6 +114,11 @@ export interface ScrollPanelProps {
* @type {ScrollPanelPassThroughOptions}
*/
pt?: PTOptions<ScrollPanelPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ScrollTopPassThroughOptionType = ScrollTopPassThroughAttributes | ((options: ScrollTopPassThroughMethodOptions) => ScrollTopPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface ScrollTopPassThroughMethodOptions {
* Defines current inline state.
*/
state: ScrollTopState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -104,6 +109,11 @@ export interface ScrollTopProps {
* @type {ScrollTopPassThroughOptions}
*/
pt?: PTOptions<ScrollTopPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type SelectButtonPassThroughOptionType = SelectButtonPassThroughAttributes | ((options: SelectButtonPassThroughMethodOptions) => SelectButtonPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface SelectButtonPassThroughMethodOptions {
* Defines current options.
*/
context: SelectButtonContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -163,6 +168,11 @@ export interface SelectButtonProps {
* @type {SelectButtonPassThroughOptions}
*/
pt?: PTOptions<SelectButtonPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type SidebarPassThroughOptionType = SidebarPassThroughAttributes | ((options: SidebarPassThroughMethodOptions) => SidebarPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface SidebarPassThroughMethodOptions {
* Defines current inline state.
*/
state: SidebarState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -149,6 +154,11 @@ export interface SidebarProps {
* @type {SidebarPassThroughOptions}
*/
pt?: PTOptions<SidebarPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*
*/
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type SkeletonPassThroughOptionType = SkeletonPassThroughAttributes | ((options: SkeletonPassThroughMethodOptions) => SkeletonPassThroughAttributes | string) | string | null | undefined;
@ -24,6 +25,10 @@ export interface SkeletonPassThroughMethodOptions {
* Defines valid properties.
*/
props: SkeletonProps;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -86,6 +91,11 @@ export interface SkeletonProps {
* @type {SkeletonPassThroughOptions}
*/
pt?: PTOptions<SkeletonPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*
*/
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type SliderPassThroughOptionType = SliderPassThroughAttributes | ((options: SliderPassThroughMethodOptions) => SliderPassThroughAttributes | string) | string | null | undefined;
@ -24,6 +25,10 @@ export interface SliderPassThroughMethodOptions {
* Defines valid properties.
*/
props: SliderProps;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -135,6 +140,11 @@ export interface SliderProps {
* @type {SliderPassThroughOptions}
*/
pt?: PTOptions<SliderPassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@ import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptions } from '../button';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type SpeedDialPassThroughOptionType = SpeedDialPassThroughAttributes | ((options: SpeedDialPassThroughMethodOptions) => SpeedDialPassThroughAttributes | string) | string | null | undefined;
@ -35,6 +36,10 @@ export interface SpeedDialPassThroughMethodOptions {
* Defines current options.
*/
context: SpeedDialContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -252,6 +257,11 @@ export interface SpeedDialProps {
* @type {SpeedDialPassThroughOptions}
*/
pt?: PTOptions<SpeedDialPassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@ import { ButtonHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptions } from '../button';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { TieredMenuPassThroughOptions } from '../tieredmenu';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
@ -32,6 +33,10 @@ export interface SplitButtonPassThroughMethodOptions {
* Defines current inline state.
*/
state: SplitButtonState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -179,6 +184,11 @@ export interface SplitButtonProps {
* @type {SplitButtonPassThroughOptions}
*/
pt?: PTOptions<SplitButtonPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type SplitterPassThroughOptionType = SplitterPassThroughAttributes | ((options: SplitterPassThroughMethodOptions) => SplitterPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface SplitterPassThroughMethodOptions {
* Defines current options.
*/
context: SplitterContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -149,6 +154,11 @@ export interface SplitterProps {
* @type {SplitterPassThroughOptions}
*/
pt?: PTOptions<SplitterPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type SplitterPanelPassThroughOptionType = SplitterPanelPassThroughAttributes | ((options: SplitterPanelPassThroughMethodOptions) => SplitterPanelPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface SplitterPanelPassThroughMethodOptions {
* Defines current options.
*/
context: SplitterPanelContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -81,6 +86,11 @@ export interface SplitterPanelProps {
* @type {SplitterPanelPassThroughOptions}
*/
pt?: PTOptions<SplitterPanelPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type StepsPassThroughOptionType = StepsPassThroughAttributes | ((options: StepsPassThroughMethodOptions) => StepsPassThroughAttributes | string) | string | null | undefined;
@ -30,6 +31,10 @@ export interface StepsPassThroughMethodOptions {
* Defines current options.
*/
context: StepsContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -144,6 +149,11 @@ export interface StepsProps {
* @type {StepsPassThroughOptions}
*/
pt?: PTOptions<StepsPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*/
import { DirectiveBinding, ObjectDirective } from 'vue';
import { DirectiveHooks } from '../basedirective';
import { PassThroughOptions } from '../passthrough';
import { PTOptions } from '../ts-helpers';
/**
@ -56,6 +57,11 @@ export interface StyleClassOptions {
* @type {StyleClassDirectivePassThroughOptions}
*/
pt?: PTOptions<StyleClassDirectivePassThroughOptions>;
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
}
/**

View File

@ -10,6 +10,7 @@
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type TabMenuPassThroughOptionType = TabMenuPassThroughAttributes | ((options: TabMenuPassThroughMethodOptions) => TabMenuPassThroughAttributes | string) | string | null | undefined;
@ -34,6 +35,10 @@ export interface TabMenuPassThroughMethodOptions {
* Defines current options.
*/
context: TabMenuContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -172,6 +177,11 @@ export interface TabMenuProps {
* @type {TabMenuPassThroughOptions}
*/
pt?: PTOptions<TabMenuPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { AnchorHTMLAttributes, HTMLAttributes, LiHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { TabViewPassThroughOptions } from '../tabview';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
@ -34,6 +35,10 @@ export interface TabPanelPassThroughMethodOptions {
* Defines current options.
*/
context: TabPanelContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -121,6 +126,11 @@ export interface TabPanelProps {
* @type {TabPanelPassThroughOptions}
*/
pt?: PTOptions<TabPanelPassThroughOptions>;
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
}
/**

View File

@ -9,6 +9,7 @@
*/
import { ButtonHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { TabPanelPassThroughOptionType } from '../tabpanel';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
@ -182,6 +183,11 @@ export interface TabViewProps {
* @type {TabViewPassThroughOptions}
*/
pt?: PTOptions<TabViewPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type TagPassThroughOptionType = TagPassThroughAttributes | ((options: TagPassThroughMethodOptions) => TagPassThroughAttributes | string) | string | null | undefined;
@ -25,6 +26,10 @@ export interface TagPassThroughMethodOptions {
* Defines valid properties.
*/
props: TagProps;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -85,6 +90,11 @@ export interface TagProps {
* @type {TagPassThroughOptions}
*/
pt?: PTOptions<TagPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*
*/
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type TerminalPassThroughOptionType = TerminalPassThroughAttributes | ((options: TerminalPassThroughMethodOptions) => TerminalPassThroughAttributes | string) | string | null | undefined;
@ -28,6 +29,10 @@ export interface TerminalPassThroughMethodOptions {
* Defines current inline state.
*/
state: TerminalState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -116,6 +121,11 @@ export interface TerminalProps {
* @type {TerminalPassThroughOptions}
*/
pt?: PTOptions<TerminalPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { TextareaHTMLAttributes } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type TextareaPassThroughOptionType = TextareaPassThroughAttributes | ((options: TextareaPassThroughMethodOptions) => TextareaPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface TextareaPassThroughMethodOptions {
* Defines current options.
*/
context: TextareaContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -89,6 +94,11 @@ export interface TextareaProps extends TextareaHTMLAttributes {
* @type {TextareaPassThroughOptions}
*/
pt?: PTOptions<TextareaPassThroughOptions>;
/**
* 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

View File

@ -10,6 +10,7 @@
import { TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type TieredMenuPassThroughOptionType = TieredMenuPassThroughAttributes | ((options: TieredMenuPassThroughMethodOptions) => TieredMenuPassThroughAttributes | string) | string | null | undefined;
@ -36,6 +37,10 @@ export interface TieredMenuPassThroughMethodOptions {
* Defines current options.
*/
context: TieredMenuContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -250,6 +255,11 @@ export interface TieredMenuProps {
* @type {TieredMenuPassThroughOptions}
*/
pt?: PTOptions<TieredMenuPassThroughOptions>;
/**
* 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

View File

@ -8,6 +8,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type TimelinePassThroughOptionType = TimelinePassThroughAttributes | ((options: TimelinePassThroughMethodOptions) => TimelinePassThroughAttributes | string) | string | null | undefined;
@ -28,6 +29,10 @@ export interface TimelinePassThroughMethodOptions {
* Defines current options.
*/
context: TimelineContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -114,6 +119,11 @@ export interface TimelineProps {
* @type {TimelinePassThroughOptions}
*/
pt?: PTOptions<TimelinePassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { ButtonHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ToastPassThroughOptionType = ToastPassThroughAttributes | ((options: ToastPassThroughMethodOptions) => ToastPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface ToastPassThroughMethodOptions {
* Defines current inline state.
*/
state: ToastState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -238,6 +243,11 @@ export interface ToastProps {
* @type {ToastPassThroughOptions}
*/
pt?: PTOptions<ToastPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { InputHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ToggleButtonPassThroughOptionType = ToggleButtonPassThroughAttributes | ((options: ToggleButtonPassThroughMethodOptions) => ToggleButtonPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface ToggleButtonPassThroughMethodOptions {
* Defines current options.
*/
context: ToggleButtonContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -177,6 +182,11 @@ export interface ToggleButtonProps {
* @type {ToggleButtonPassThroughOptions}
*/
pt?: PTOptions<ToggleButtonPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type ToolbarPassThroughOptionType = ToolbarPassThroughAttributes | ((options: ToolbarPassThroughMethodOptions) => ToolbarPassThroughAttributes | string) | string | null | undefined;
@ -25,6 +26,10 @@ export interface ToolbarPassThroughMethodOptions {
* Defines valid properties.
*/
props: ToolbarProps;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -75,6 +80,11 @@ export interface ToolbarProps {
* @type {ToolbarPassThroughOptions}
*/
pt?: PTOptions<ToolbarPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { DirectiveBinding, ObjectDirective } from 'vue';
import { DirectiveHooks } from '../basedirective';
import { PassThroughOptions } from '../passthrough';
import { PTOptions } from '../ts-helpers';
export declare type TooltipDirectivePassThroughOptionType = TooltipDirectivePassThroughAttributes | ((options: TooltipPassThroughMethodOptions) => TooltipDirectivePassThroughAttributes) | null | undefined;
@ -18,6 +19,10 @@ export declare type TooltipDirectivePassThroughOptionType = TooltipDirectivePass
*/
export interface TooltipPassThroughMethodOptions {
context: TooltipContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -66,6 +71,11 @@ export interface TooltipOptions {
* @type {TooltipDirectivePassThroughOptions}
*/
pt?: PTOptions<TooltipDirectivePassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type TreePassThroughOptionType = TreePassThroughAttributes | ((options: TreePassThroughMethodOptions) => TreePassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface TreePassThroughMethodOptions {
* Defines current options.
*/
context: TreeContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -326,6 +331,11 @@ export interface TreeProps {
* @type {TreePassThroughOptions}
*/
pt?: PTOptions<TreePassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { InputHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { TreeExpandedKeys, TreeNode, TreePassThroughOptionType } from '../tree';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
@ -32,6 +33,10 @@ export interface TreeSelectPassThroughMethodOptions {
* Defines current inline state.
*/
state: TreeSelectState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -218,6 +223,11 @@ export interface TreeSelectProps {
* @type {TreeSelectPassThroughOptions}
*/
pt?: PTOptions<TreeSelectPassThroughOptions>;
/**
* 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

View File

@ -11,6 +11,7 @@ import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { ColumnPassThroughOptionType } from '../column';
import { PaginatorPassThroughOptionType } from '../paginator';
import { PassThroughOptions } from '../passthrough';
import { TreeNode } from '../tree';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
@ -36,6 +37,10 @@ export interface TreeTablePassThroughMethodOptions {
* Defines current options.
*/
context: TreeTableContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -572,6 +577,11 @@ export interface TreeTableProps {
* @type {TreeTablePassThroughOptions}
*/
pt?: PTOptions<TreeTablePassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { InputHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, Nullable, PTOptions } from '../ts-helpers';
export declare type TriStateCheckboxPassThroughOptionType = TriStateCheckboxPassThroughAttributes | ((options: TriStateCheckboxPassThroughMethodOptions) => TriStateCheckboxPassThroughAttributes | string) | string | null | undefined;
@ -33,6 +34,10 @@ export interface TriStateCheckboxPassThroughMethodOptions {
* Defines current options.
*/
context: TriStateCheckboxContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -157,6 +162,11 @@ export interface TriStateCheckboxProps {
* @type {TriStateCheckboxPassThroughOptions}
*/
pt?: PTOptions<TriStateCheckboxPassThroughOptions>;
/**
* 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

View File

@ -9,6 +9,7 @@
*/
import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type VirtualScrollerPassThroughOptionType = VirtualScrollerPassThroughAttributes | ((options: VirtualScrollerPassThroughMethodOptions) => VirtualScrollerPassThroughAttributes | string) | string | null | undefined;
@ -29,6 +30,10 @@ export interface VirtualScrollerPassThroughMethodOptions {
* Defines current inline state.
*/
state: VirtualScrollerState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
@ -324,6 +329,11 @@ export interface VirtualScrollerProps {
* @type {VirtualScrollerPassThroughOptions}
*/
pt?: PTOptions<VirtualScrollerPassThroughOptions>;
/**
* 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