primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
150 lines (137 loc) • 3.99 kB
TypeScript
/**
*
* AccordionContent is a helper component for Accordion component.
*
* [Live Demo](https://www.primevue.org/accordion/)
*
* @module accordioncontent
*
*/
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
import type { ComponentHooks } from '@primevue/core/basecomponent';
import type { PassThroughOptions } from 'primevue/passthrough';
import type { Component, VNode } from 'vue';
export declare type AccordionContentPassThroughOptionType = AccordionContentPassThroughAttributes | ((options: AccordionContentPassThroughMethodOptions) => AccordionContentPassThroughAttributes | string) | string | null | undefined;
/**
* Custom passthrough(pt) option method.
*/
export interface AccordionContentPassThroughMethodOptions {
/**
* Defines instance.
*/
instance: any;
/**
* Defines valid properties.
*/
props: AccordionContentProps;
/**
* Defines current options.
*/
context: AccordionContentContext;
/**
* Defines valid attributes.
*/
attrs: any;
/**
* Defines parent options.
*/
parent: any;
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
* Custom passthrough(pt) options.
* @see {@link AccordionContentProps.pt}
*/
export interface AccordionContentPassThroughOptions {
/**
* Used to pass attributes to the root's DOM element.
*/
root?: AccordionContentPassThroughOptionType;
/**
* Used to pass attributes to the transition's DOM element.
*/
transition?: AccordionContentPassThroughOptionType;
/**
* Used to pass attributes to the content's DOM element.
*/
content?: AccordionContentPassThroughOptionType;
/**
* Used to manage all lifecycle hooks.
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
}
export interface AccordionContentPassThroughAttributes {
[key: string]: any;
}
/**
* Defines valid properties in AccordionContent component.
*/
export interface AccordionContentProps {
/**
* Use to change the HTML tag of root element.
* @defaultValue DIV
*/
as?: string | Component | undefined;
/**
* When enabled, it changes the default rendered element for the one passed as a child element.
* @defaultValue false
*/
asChild?: boolean | undefined;
/**
* It generates scoped CSS variables using design tokens for the component.
*/
dt?: DesignToken<any>;
/**
* Used to pass attributes to DOM elements inside the component.
* @type {AccordionContentPassThroughOptions}
*/
pt?: PassThrough<AccordionContentPassThroughOptions>;
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
}
/**
* Defines current options in AccordionContent component.
*/
export interface AccordionContentContext {
/**
* Whether the item is active.
*/
active: boolean;
}
/**
* Defines valid slots in AccordionContent slots.
*/
export interface AccordionContentSlots {
/**
* Custom content template.
*/
default(): VNode[];
}
export interface AccordionContentEmitsOptions {}
export declare type AccordionContentEmits = EmitFn<AccordionContentEmitsOptions>;
/**
* **PrimeVue - AccordionContent**
*
* _AccordionContent is a helper component for Accordion component._
*
* [Live Demo](https://www.primevue.org/accordion/)
* --- ---
* 
*
* @group Component
*
*/
declare const AccordionContent: DefineComponent<AccordionContentProps, AccordionContentSlots, AccordionContentEmits>;
declare module 'vue' {
export interface GlobalComponents {
AccordionContent: DefineComponent<AccordionContentProps, AccordionContentSlots, AccordionContentEmits>;
}
}
export default AccordionContent;