@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
71 lines (70 loc) • 1.96 kB
TypeScript
import type { NeonFunctionalColor } from '@/model/common/color/NeonFunctionalColor';
/**
* Custom animated chevron component which is used in dropdowns and expansion panels. This may be useful in creating
* higher level components but is unlikely to be used on its own.
*/
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
/**
* Whether the chevron is <em>open</em>.
*/
expanded: {
type: BooleanConstructor;
default: boolean;
};
/**
* Display the expansion indicator in the inverse text color
*/
inverse: {
type: BooleanConstructor;
default: boolean;
};
/**
* Display the expansion indicator in the disabled color
*/
disabled: {
type: BooleanConstructor;
default: boolean;
};
/**
* The color of the chevron.
*/
color: {
type: () => NeonFunctionalColor;
default: null;
};
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
/**
* Whether the chevron is <em>open</em>.
*/
expanded: {
type: BooleanConstructor;
default: boolean;
};
/**
* Display the expansion indicator in the inverse text color
*/
inverse: {
type: BooleanConstructor;
default: boolean;
};
/**
* Display the expansion indicator in the disabled color
*/
disabled: {
type: BooleanConstructor;
default: boolean;
};
/**
* The color of the chevron.
*/
color: {
type: () => NeonFunctionalColor;
default: null;
};
}>> & Readonly<{}>, {
color: NeonFunctionalColor;
inverse: boolean;
disabled: boolean;
expanded: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;