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

View File

@ -9,6 +9,7 @@
*/ */
import { AnchorHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue'; import { AnchorHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue';
import { AccordionPassThroughOptions } from '../accordion'; import { AccordionPassThroughOptions } from '../accordion';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type AccordionTabPassThroughOptionType = AccordionTabPassThroughAttributes | ((options: AccordionTabPassThroughMethodOptions) => AccordionTabPassThroughAttributes | string) | string | null | undefined; export declare type AccordionTabPassThroughOptionType = AccordionTabPassThroughAttributes | ((options: AccordionTabPassThroughMethodOptions) => AccordionTabPassThroughAttributes | string) | string | null | undefined;
@ -35,6 +36,10 @@ export interface AccordionTabPassThroughMethodOptions {
* Defines current options. * Defines current options.
*/ */
context: AccordionTabContext; context: AccordionTabContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
} }
/** /**
@ -132,6 +137,11 @@ export interface AccordionTabProps {
* @type {AccordionTabPassThroughOptions} * @type {AccordionTabPassThroughOptions}
*/ */
pt?: PTOptions<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 { HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptionType } from '../button'; import { ButtonPassThroughOptionType } from '../button';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
import { VirtualScrollerItemOptions, VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../virtualscroller'; import { VirtualScrollerItemOptions, VirtualScrollerPassThroughOptionType, VirtualScrollerProps } from '../virtualscroller';
@ -37,6 +38,10 @@ export interface AutoCompletePassThroughMethodOptions {
* Defines current options. * Defines current options.
*/ */
context: AutoCompleteContext; context: AutoCompleteContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
} }
/** /**
@ -460,6 +465,11 @@ export interface AutoCompleteProps {
* @type {AutoCompletePassThroughOptions} * @type {AutoCompletePassThroughOptions}
*/ */
pt?: PTOptions<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. * When enabled, it removes component related styles in the core.
* @defaultValue false * @defaultValue false

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -10,6 +10,7 @@
import { HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue'; import { HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { ButtonPassThroughOptionType } from '../button'; import { ButtonPassThroughOptionType } from '../button';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type CalendarPassThroughOptionType = CalendarPassThroughAttributes | ((options: CalendarPassThroughMethodOptions) => CalendarPassThroughAttributes | string) | string | null | undefined; export declare type CalendarPassThroughOptionType = CalendarPassThroughAttributes | ((options: CalendarPassThroughMethodOptions) => CalendarPassThroughAttributes | string) | string | null | undefined;
@ -36,6 +37,10 @@ export interface CalendarPassThroughMethodOptions {
* Defines current options. * Defines current options.
*/ */
context: CalendarContext; context: CalendarContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
} }
/** /**
@ -704,6 +709,11 @@ export interface CalendarProps {
* @type {CalendarPassThroughOptions} * @type {CalendarPassThroughOptions}
*/ */
pt?: PTOptions<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. * When enabled, it removes component related styles in the core.
* @defaultValue false * @defaultValue false

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -8,6 +8,7 @@
*/ */
import { DirectiveBinding, ObjectDirective } from 'vue'; import { DirectiveBinding, ObjectDirective } from 'vue';
import { DirectiveHooks } from '../basedirective'; import { DirectiveHooks } from '../basedirective';
import { PassThroughOptions } from '../passthrough';
import { PTOptions } from '../ts-helpers'; import { PTOptions } from '../ts-helpers';
export declare type FocusTrapDirectivePassThroughOptionType = FocusTrapDirectivePassThroughAttributes | null | undefined; export declare type FocusTrapDirectivePassThroughOptionType = FocusTrapDirectivePassThroughAttributes | null | undefined;
@ -31,6 +32,11 @@ export interface FocusTrapOptions {
* @type {FocusTrapDirectivePassThroughOptions} * @type {FocusTrapDirectivePassThroughOptions}
*/ */
pt?: PTOptions<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 { ButtonHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type GalleriaPassThroughOptionType = GalleriaPassThroughAttributes | ((options: GalleriaPassThroughMethodOptions) => GalleriaPassThroughAttributes | string) | string | null | undefined; export declare type GalleriaPassThroughOptionType = GalleriaPassThroughAttributes | ((options: GalleriaPassThroughMethodOptions) => GalleriaPassThroughAttributes | string) | string | null | undefined;
@ -35,6 +36,10 @@ export interface GalleriaPassThroughMethodOptions {
* Defines current options. * Defines current options.
*/ */
context: GalleriaContext; context: GalleriaContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
} }
export interface GalleriaResponsiveOptions { export interface GalleriaResponsiveOptions {
@ -390,6 +395,11 @@ export interface GalleriaProps {
* @type {GalleriaPassThroughOptions} * @type {GalleriaPassThroughOptions}
*/ */
pt?: PTOptions<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. * When enabled, it removes component related styles in the core.
* @defaultValue false * @defaultValue false

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -11,6 +11,7 @@ import { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { DropdownPassThroughOptionType } from '../dropdown'; import { DropdownPassThroughOptionType } from '../dropdown';
import { InputNumberPassThroughOptionType } from '../inputnumber'; import { InputNumberPassThroughOptionType } from '../inputnumber';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type PaginatorPassThroughOptionType = PaginatorPassThroughAttributes | ((options: PaginatorPassThroughMethodOptions) => PaginatorPassThroughAttributes | string) | string | null | undefined; export declare type PaginatorPassThroughOptionType = PaginatorPassThroughAttributes | ((options: PaginatorPassThroughMethodOptions) => PaginatorPassThroughAttributes | string) | string | null | undefined;
@ -35,6 +36,10 @@ export interface PaginatorPassThroughMethodOptions {
* Defines current options. * Defines current options.
*/ */
context: PaginatorContext; context: PaginatorContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
} }
/** /**
@ -248,6 +253,11 @@ export interface PaginatorProps {
* @type {PaginatorPassThroughOptions} * @type {PaginatorPassThroughOptions}
*/ */
pt?: PTOptions<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 { ButtonHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type PanelPassThroughOptionType = PanelPassThroughAttributes | ((options: PanelPassThroughMethodOptions) => PanelPassThroughAttributes | string) | string | null | undefined; export declare type PanelPassThroughOptionType = PanelPassThroughAttributes | ((options: PanelPassThroughMethodOptions) => PanelPassThroughAttributes | string) | string | null | undefined;
@ -31,6 +32,10 @@ export interface PanelPassThroughMethodOptions {
* Defines current inline state. * Defines current inline state.
*/ */
state: PanelState; state: PanelState;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
} }
/** /**
@ -146,6 +151,11 @@ export interface PanelProps {
* @type {PanelPassThroughOptions} * @type {PanelPassThroughOptions}
*/ */
pt?: PTOptions<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. * When enabled, it removes component related styles in the core.
* @defaultValue false * @defaultValue false

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -8,6 +8,7 @@
*/ */
import { DirectiveBinding, ObjectDirective } from 'vue'; import { DirectiveBinding, ObjectDirective } from 'vue';
import { DirectiveHooks } from '../basedirective'; import { DirectiveHooks } from '../basedirective';
import { PassThroughOptions } from '../passthrough';
import { PTOptions } from '../ts-helpers'; import { PTOptions } from '../ts-helpers';
/** /**
@ -56,6 +57,11 @@ export interface StyleClassOptions {
* @type {StyleClassDirectivePassThroughOptions} * @type {StyleClassDirectivePassThroughOptions}
*/ */
pt?: PTOptions<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 { VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { MenuItem } from '../menuitem'; import { MenuItem } from '../menuitem';
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
export declare type TabMenuPassThroughOptionType = TabMenuPassThroughAttributes | ((options: TabMenuPassThroughMethodOptions) => TabMenuPassThroughAttributes | string) | string | null | undefined; export declare type TabMenuPassThroughOptionType = TabMenuPassThroughAttributes | ((options: TabMenuPassThroughMethodOptions) => TabMenuPassThroughAttributes | string) | string | null | undefined;
@ -34,6 +35,10 @@ export interface TabMenuPassThroughMethodOptions {
* Defines current options. * Defines current options.
*/ */
context: TabMenuContext; context: TabMenuContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
} }
/** /**
@ -172,6 +177,11 @@ export interface TabMenuProps {
* @type {TabMenuPassThroughOptions} * @type {TabMenuPassThroughOptions}
*/ */
pt?: PTOptions<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. * When enabled, it removes component related styles in the core.
* @defaultValue false * @defaultValue false

View File

@ -9,6 +9,7 @@
*/ */
import { AnchorHTMLAttributes, HTMLAttributes, LiHTMLAttributes, VNode } from 'vue'; import { AnchorHTMLAttributes, HTMLAttributes, LiHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { TabViewPassThroughOptions } from '../tabview'; import { TabViewPassThroughOptions } from '../tabview';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
@ -34,6 +35,10 @@ export interface TabPanelPassThroughMethodOptions {
* Defines current options. * Defines current options.
*/ */
context: TabPanelContext; context: TabPanelContext;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
} }
/** /**
@ -121,6 +126,11 @@ export interface TabPanelProps {
* @type {TabPanelPassThroughOptions} * @type {TabPanelPassThroughOptions}
*/ */
pt?: PTOptions<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 { ButtonHTMLAttributes, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { PassThroughOptions } from '../passthrough';
import { TabPanelPassThroughOptionType } from '../tabpanel'; import { TabPanelPassThroughOptionType } from '../tabpanel';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers'; import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
@ -182,6 +183,11 @@ export interface TabViewProps {
* @type {TabViewPassThroughOptions} * @type {TabViewPassThroughOptions}
*/ */
pt?: PTOptions<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. * When enabled, it removes component related styles in the core.
* @defaultValue false * @defaultValue false

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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