@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
53 lines (52 loc) • 1.48 kB
TypeScript
/**
* The NeonTab component that defines individual tabs for use with the NeonTabs component.
*/
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
/**
* True if the current tab is the visible tab.
*/
selected: {
type: BooleanConstructor;
required: true;
};
/**
* Id of the tab (matches the key in NeonTabModel).
*/
id: {
type: StringConstructor;
default: null;
};
/**
* Use fade transition when switching tabs. This is useful to prevent a reflow.
*/
transition: {
type: BooleanConstructor;
default: boolean;
};
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
/**
* True if the current tab is the visible tab.
*/
selected: {
type: BooleanConstructor;
required: true;
};
/**
* Id of the tab (matches the key in NeonTabModel).
*/
id: {
type: StringConstructor;
default: null;
};
/**
* Use fade transition when switching tabs. This is useful to prevent a reflow.
*/
transition: {
type: BooleanConstructor;
default: boolean;
};
}>> & Readonly<{}>, {
id: string;
transition: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;