@progress/kendo-vue-layout
Version:
60 lines (59 loc) • 2.1 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { PropType } from 'vue';
export interface TabStripTabProperties {
disabled?: boolean;
id?: string;
tabId?: string;
title?: string;
titleRender?: any;
content?: any;
contentClassName?: string;
}
/**
* Represents the props of the TabStrip tabs.
*/
export interface TabStripTabProps {
/**
* Defines whether a tab is disabled ([see example]({% slug tabs_tabstrip %}#toc-disabled-state)).
*/
disabled?: boolean;
/**
* Sets the title of the tab ([see example]({% slug tabs_tabstrip %}#toc-titles)).
*/
title?: any;
/**
* Sets the id of the tab (li element).
*/
id?: string;
/**
* Defines the custom rendering of the title. Accepts a Vue component, a `render` function, or a slot name.
*/
titleRender?: ((h: any, defaultRendering: any | null, props: any, listeners: any) => any) | any;
/**
* Specifies the CSS class names of the TabStripTab content.
*/
contentClassName?: string;
}
/**
* @hidden
*/
declare const TabStripTab: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
disabled: PropType<boolean>;
contentClassName: PropType<string>;
title: PropType<any>;
id: PropType<string>;
titleRender: PropType<any>;
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
disabled: PropType<boolean>;
contentClassName: PropType<string>;
title: PropType<any>;
id: PropType<string>;
titleRender: PropType<any>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { TabStripTab };