2023-02-28 08:29:30 +00:00
|
|
|
/**
|
|
|
|
*
|
2023-02-28 15:38:02 +00:00
|
|
|
* AccordionTab is a helper component for Accordion.
|
2023-02-28 08:29:30 +00:00
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/accordion/)
|
|
|
|
*
|
|
|
|
* @module accordiontab
|
|
|
|
*
|
|
|
|
*/
|
2022-09-14 11:26:01 +00:00
|
|
|
import { AnchorHTMLAttributes, HTMLAttributes, VNode } from 'vue';
|
2022-09-06 12:03:37 +00:00
|
|
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
|
|
|
|
2023-02-28 08:29:30 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties in AccordionTab component.
|
|
|
|
*/
|
2022-09-06 12:03:37 +00:00
|
|
|
export interface AccordionTabProps {
|
|
|
|
/**
|
|
|
|
* Orientation of tab headers.
|
|
|
|
*/
|
|
|
|
header?: string | undefined;
|
2022-09-14 11:26:01 +00:00
|
|
|
/**
|
|
|
|
* Inline style of the tab header.
|
|
|
|
*/
|
|
|
|
headerStyle?: any;
|
|
|
|
/**
|
|
|
|
* Style class of the tab header.
|
|
|
|
*/
|
|
|
|
headerClass?: any;
|
|
|
|
/**
|
|
|
|
* Uses to pass all properties of the HTMLDivElement to the tab header.
|
|
|
|
*/
|
|
|
|
headerProps?: HTMLAttributes | undefined;
|
|
|
|
/**
|
|
|
|
* Uses to pass all properties of the HTMLAnchorElement to the focusable anchor element inside the tab header.
|
|
|
|
*/
|
|
|
|
headerActionProps?: AnchorHTMLAttributes | undefined;
|
|
|
|
/**
|
|
|
|
* Inline style of the tab content.
|
|
|
|
*/
|
|
|
|
contentStyle?: any;
|
|
|
|
/**
|
|
|
|
* Style class of the tab content.
|
|
|
|
*/
|
|
|
|
contentClass?: any;
|
|
|
|
/**
|
|
|
|
* Uses to pass all properties of the HTMLDivElement to the tab content.
|
|
|
|
*/
|
|
|
|
contentProps?: HTMLAttributes | undefined;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Whether the tab is disabled.
|
2023-02-28 15:38:02 +00:00
|
|
|
* @defaultValue false
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
disabled?: boolean | undefined;
|
|
|
|
}
|
|
|
|
|
2023-02-28 08:29:30 +00:00
|
|
|
/**
|
2023-02-28 15:38:02 +00:00
|
|
|
* Defines valid slots in AcordionTab slots.
|
2023-02-28 08:29:30 +00:00
|
|
|
*/
|
2022-09-06 12:03:37 +00:00
|
|
|
export interface AccordionTabSlots {
|
|
|
|
/**
|
|
|
|
* Default slot for content.
|
|
|
|
*/
|
2023-02-28 08:29:30 +00:00
|
|
|
default(): VNode[];
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Custom content for the title section of a panel is defined using the header template.
|
|
|
|
*/
|
2023-02-28 08:29:30 +00:00
|
|
|
header(): VNode[];
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
2023-02-28 08:29:30 +00:00
|
|
|
/**
|
2023-02-28 15:38:02 +00:00
|
|
|
* Defines valid emits in AcordionTab component.
|
|
|
|
* @group Interfaces
|
2023-02-28 08:29:30 +00:00
|
|
|
*/
|
|
|
|
export interface AccordionTabEmits {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-02-28 15:38:02 +00:00
|
|
|
/**
|
|
|
|
* **PrimeVue - Accordion**
|
|
|
|
*
|
|
|
|
* _AccordionTab is a helper component for Accordion.._
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/accordion/)
|
|
|
|
* --- ---
|
|
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo.svg)
|
|
|
|
*
|
|
|
|
* @group Component
|
|
|
|
*/
|
|
|
|
export declare class AccordionTab extends ClassComponent<AccordionTabProps, AccordionTabSlots, AccordionTabEmits> {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface GlobalComponents {
|
2022-09-14 11:26:01 +00:00
|
|
|
AccordionTab: GlobalComponentConstructor<AccordionTab>;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2023-02-28 15:38:02 +00:00
|
|
|
* AccordionTab is a helper component for Accordion..
|
2022-09-06 12:03:37 +00:00
|
|
|
*
|
|
|
|
* Demos:
|
|
|
|
*
|
2022-09-14 11:26:01 +00:00
|
|
|
* - [Accordion](https://www.primefaces.org/primevue/accordion)
|
2022-09-06 12:03:37 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
export default AccordionTab;
|