@inkline/inkline
Version:
Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.
54 lines (53 loc) • 1.43 kB
TypeScript
declare const _default: import("vue").DefineComponent<{
/**
* The unique identifier of the collapsible item, used for determining if the item is open or not
* @type String
* @default uid()
* @name name
*/
name: {
type: StringConstructor;
default: () => string;
};
/**
* The title of the collapsible item
* @type String
* @default
* @name title
*/
title: {
type: StringConstructor;
default: string;
};
}, {
active: import("vue").ComputedRef<any>;
classes: import("vue").ComputedRef<{
'-active': any;
}>;
onClick: () => void;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* The unique identifier of the collapsible item, used for determining if the item is open or not
* @type String
* @default uid()
* @name name
*/
name: {
type: StringConstructor;
default: () => string;
};
/**
* The title of the collapsible item
* @type String
* @default
* @name title
*/
title: {
type: StringConstructor;
default: string;
};
}>>, {
title: string;
name: string;
}, {}>;
export default _default;