@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.
58 lines (57 loc) • 1.64 kB
TypeScript
declare const _default: import("vue").DefineComponent<{
/**
* The color variant of the progress bar
* @type light | dark | primary | secondary | info | success | warning | danger
* @default primary
* @name color
*/
color: {
type: StringConstructor;
default: string;
};
/**
* The value of the progress bar
* @type Number
* @default 0
* @name value
*/
value: {
type: (StringConstructor | NumberConstructor)[];
default: number;
};
}, {
min: import("vue").ComputedRef<any>;
max: import("vue").ComputedRef<any>;
computedValue: import("vue").ComputedRef<number>;
style: import("vue").ComputedRef<{
width: string;
}>;
classes: import("vue").ComputedRef<{
[x: string]: boolean;
}>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* The color variant of the progress bar
* @type light | dark | primary | secondary | info | success | warning | danger
* @default primary
* @name color
*/
color: {
type: StringConstructor;
default: string;
};
/**
* The value of the progress bar
* @type Number
* @default 0
* @name value
*/
value: {
type: (StringConstructor | NumberConstructor)[];
default: number;
};
}>>, {
color: string;
value: string | number;
}, {}>;
export default _default;