diff --git a/components/lib/badgedirective/BadgeDirective.d.ts b/components/lib/badgedirective/BadgeDirective.d.ts index 549c7cc19..f65974e09 100644 --- a/components/lib/badgedirective/BadgeDirective.d.ts +++ b/components/lib/badgedirective/BadgeDirective.d.ts @@ -11,46 +11,46 @@ import { DirectiveBinding, ObjectDirective } from 'vue'; /** * Defines options of Badge. */ -export interface BadgeOptions { +export interface BadgeDirectiveOptions { /** * Uses to pass attributes to DOM elements inside the component. - * @type {BadgePassThroughOptions} + * @type {BadgeDirectivePassThroughOptions} */ - pt?: BadgePassThroughOptions; + pt?: BadgeDirectivePassThroughOptions; } /** * Custom passthrough(pt) options. - * @see {@link BadgeOptions.pt} + * @see {@link BadgeDirectiveOptions.pt} */ -export interface BadgePassThroughOptions { +export interface BadgeDirectivePassThroughOptions { /** * Uses to pass attributes to the root's DOM element. - * @see {@link BadgePassThroughDirectiveOptions} + * @see {@link BadgeDirectivePassThroughDirectiveOptions} */ - root?: BadgePassThroughDirectiveOptions; + root?: BadgeDirectivePassThroughDirectiveOptions; } /** * Custom passthrough(pt) directive options. */ -export interface BadgePassThroughDirectiveOptions { +export interface BadgeDirectivePassThroughDirectiveOptions { /** * Uses to pass attributes to the life cycle hooks. - * @see {@link BadgePassThroughHooksOptions} + * @see {@link BadgeDirectivePassThroughHooksOptions} */ - hooks?: BadgePassThroughHooksOptions; + hooks?: BadgeDirectivePassThroughHooksOptions; /** * Uses to pass attributes to the styles. - * @see {@link BadgePassThroughCSSOptions} + * @see {@link BadgeDirectivePassThroughCSSOptions} */ - css?: BadgePassThroughCSSOptions; + css?: BadgeDirectivePassThroughCSSOptions; } /** * Custom passthrough(pt) hooks options. */ -export interface BadgePassThroughHooksOptions { +export interface BadgeDirectivePassThroughHooksOptions { /** * Called before bound element's attributes or event listeners are applied. */ @@ -84,7 +84,7 @@ export interface BadgePassThroughHooksOptions { /** * Custom passthrough(pt) css options. */ -export interface BadgePassThroughCSSOptions { +export interface BadgeDirectivePassThroughCSSOptions { /** * Style class of the element. */ @@ -128,7 +128,7 @@ export interface BadgeDirectiveBinding extends Omit; avatar?: DefaultPTOptions; badge?: DefaultPTOptions; + badgedirective?: DefaultPTOptions; blockui?: DefaultPTOptions; breadcrumb?: DefaultPTOptions; button?: DefaultPTOptions; @@ -133,6 +140,7 @@ interface PrimeVuePTOptions { editor?: DefaultPTOptions; fieldset?: DefaultPTOptions; fileupload?: DefaultPTOptions; + focustrap?: DefaultPTOptions; galleria?: DefaultPTOptions; image?: DefaultPTOptions; inlinemessage?: DefaultPTOptions; @@ -159,6 +167,7 @@ interface PrimeVuePTOptions { progressbar?: DefaultPTOptions; progressspinner?: DefaultPTOptions; radiobutton?: DefaultPTOptions; + ripple?: DefaultPTOptions; row?: DefaultPTOptions; scrollpanel?: DefaultPTOptions; scrolltop?: DefaultPTOptions; @@ -168,7 +177,8 @@ interface PrimeVuePTOptions { selectbutton?: DefaultPTOptions; splitbutton?: DefaultPTOptions; splitter?: DefaultPTOptions; - steps?: DefaultPTOptions; + steps?: DefaultPTOptions; + styleclass?: DefaultPTOptions; tabmenu?: DefaultPTOptions; tabpanel?: DefaultPTOptions; tabview?: DefaultPTOptions; @@ -179,6 +189,7 @@ interface PrimeVuePTOptions { timeline?: DefaultPTOptions; toast?: DefaultPTOptions; toolbar?: DefaultPTOptions; + tooltip?: DefaultPTOptions; tree?: DefaultPTOptions; treeselect?: DefaultPTOptions; treetable?: DefaultPTOptions; diff --git a/components/lib/focustrap/FocusTrap.d.ts b/components/lib/focustrap/FocusTrap.d.ts index 3f908b99a..e22366bf1 100644 --- a/components/lib/focustrap/FocusTrap.d.ts +++ b/components/lib/focustrap/FocusTrap.d.ts @@ -24,53 +24,53 @@ export interface FocusTrapOptions { autoFocus?: boolean | undefined; /** * Uses to pass attributes to DOM elements inside the component. - * @type {FocusTrapPassThroughOptions} + * @type {FocusTrapDirectivePassThroughOptions} */ - pt?: FocusTrapPassThroughOptions; + pt?: FocusTrapDirectivePassThroughOptions; } /** * Custom passthrough(pt) options. * @see {@link FocusTrapOptions.pt} */ -export interface FocusTrapPassThroughOptions { +export interface FocusTrapDirectivePassThroughOptions { /** * Uses to pass attributes to the root's DOM element. - * @see {@link FocusTrapPassThroughDirectiveOptions} + * @see {@link FocusTrapDirectivePassThroughDirectiveOptions} */ - root?: FocusTrapPassThroughDirectiveOptions; + root?: FocusTrapDirectivePassThroughDirectiveOptions; /** * Uses to pass attributes to the first focusable element's DOM element. - * @see {@link FocusTrapPassThroughDirectiveOptions} + * @see {@link FocusTrapDirectivePassThroughDirectiveOptions} */ - firstFocusableElement?: FocusTrapPassThroughDirectiveOptions; + firstFocusableElement?: FocusTrapDirectivePassThroughDirectiveOptions; /** * Uses to pass attributes to the last focusable element's DOM element. - * @see {@link FocusTrapPassThroughDirectiveOptions} + * @see {@link FocusTrapDirectivePassThroughDirectiveOptions} */ - lastFocusableElement?: FocusTrapPassThroughDirectiveOptions; + lastFocusableElement?: FocusTrapDirectivePassThroughDirectiveOptions; } /** * Custom passthrough(pt) directive options. */ -export interface FocusTrapPassThroughDirectiveOptions { +export interface FocusTrapDirectivePassThroughDirectiveOptions { /** * Uses to pass attributes to the life cycle hooks. - * @see {@link FocusTrapPassThroughHooksOptions} + * @see {@link FocusTrapDirectivePassThroughHooksOptions} */ - hooks?: FocusTrapPassThroughHooksOptions; + hooks?: FocusTrapDirectivePassThroughHooksOptions; /** * Uses to pass attributes to the styles. - * @see {@link FocusTrapPassThroughCSSOptions} + * @see {@link FocusTrapDirectivePassThroughCSSOptions} */ - css?: FocusTrapPassThroughCSSOptions; + css?: FocusTrapDirectivePassThroughCSSOptions; } /** * Custom passthrough(pt) hooks options. */ -export interface FocusTrapPassThroughHooksOptions { +export interface FocusTrapDirectivePassThroughHooksOptions { /** * Called before bound element's attributes or event listeners are applied. */ @@ -104,7 +104,7 @@ export interface FocusTrapPassThroughHooksOptions { /** * Custom passthrough(pt) css options. */ -export interface FocusTrapPassThroughCSSOptions { +export interface FocusTrapDirectivePassThroughCSSOptions { /** * Style class of the element. */ diff --git a/components/lib/ripple/Ripple.d.ts b/components/lib/ripple/Ripple.d.ts index a5723720a..a7c3c048c 100644 --- a/components/lib/ripple/Ripple.d.ts +++ b/components/lib/ripple/Ripple.d.ts @@ -14,43 +14,43 @@ import { DirectiveBinding, ObjectDirective } from 'vue'; export interface RippleOptions { /** * Uses to pass attributes to DOM elements inside the component. - * @type {RipplePassThroughOptions} + * @type {RippleDirectivePassThroughOptions} */ - pt?: RipplePassThroughOptions; + pt?: RippleDirectivePassThroughOptions; } /** * Custom passthrough(pt) options. * @see {@link RippleOptions.pt} */ -export interface RipplePassThroughOptions { +export interface RippleDirectivePassThroughOptions { /** * Uses to pass attributes to the root's DOM element. - * @see {@link RipplePassThroughDirectiveOptions} + * @see {@link RippleDirectivePassThroughOptions} */ - root?: RipplePassThroughDirectiveOptions; + root?: RippleDirectivePassThroughOptions; } /** * Custom passthrough(pt) directive options. */ -export interface RipplePassThroughDirectiveOptions { +export interface RippleDirectivePassThroughOptions { /** * Uses to pass attributes to the life cycle hooks. - * @see {@link RipplePassThroughHooksOptions} + * @see {@link RippleDirectivePassThroughHooksOptions} */ - hooks?: RipplePassThroughHooksOptions; + hooks?: RippleDirectivePassThroughHooksOptions; /** * Uses to pass attributes to the styles. - * @see {@link RipplePassThroughCSSOptions} + * @see {@link RippleDirectivePassThroughCSSOptions} */ - css?: RipplePassThroughCSSOptions; + css?: RippleDirectivePassThroughCSSOptions; } /** * Custom passthrough(pt) hooks options. */ -export interface RipplePassThroughHooksOptions { +export interface RippleDirectivePassThroughHooksOptions { /** * Called before bound element's attributes or event listeners are applied. */ @@ -84,7 +84,7 @@ export interface RipplePassThroughHooksOptions { /** * Custom passthrough(pt) css options. */ -export interface RipplePassThroughCSSOptions { +export interface RippleDirectivePassThroughCSSOptions { /** * Style class of the element. */ diff --git a/components/lib/styleclass/StyleClass.d.ts b/components/lib/styleclass/StyleClass.d.ts index 112279db3..8f7096f50 100644 --- a/components/lib/styleclass/StyleClass.d.ts +++ b/components/lib/styleclass/StyleClass.d.ts @@ -51,26 +51,26 @@ export interface StyleClassOptions { toggleClass?: string | undefined; /** * Uses to pass attributes to DOM elements inside the component. - * @type {StyleClassPassThroughDirectiveOptions} + * @type {StyleClassDirectivePassThroughOptions} */ - pt?: StyleClassPassThroughDirectiveOptions; + pt?: StyleClassDirectivePassThroughOptions; } /** * Custom passthrough(pt) directive options. */ -export interface StyleClassPassThroughDirectiveOptions { +export interface StyleClassDirectivePassThroughOptions { /** * Uses to pass attributes to the life cycle hooks. - * @see {@link StyleClassPassThroughHooksOptions} + * @see {@link StyleClassDirectivePassThroughHooksOptions} */ - hooks?: StyleClassPassThroughHooksOptions; + hooks?: StyleClassDirectivePassThroughHooksOptions; } /** * Custom passthrough(pt) hooks options. */ -export interface StyleClassPassThroughHooksOptions { +export interface StyleClassDirectivePassThroughHooksOptions { /** * Called before bound element's attributes or event listeners are applied. */