@nethesis/vue-components
Version:
This library contains: - a collection of Vue 3 components based on [Flowbite](https://flowbite.com/) - a set of utility functions
73 lines • 2.1 kB
TypeScript
import { type PropType } from 'vue';
export type ProgressBarSize = 'sm' | 'md' | 'lg' | 'xl';
export type ProgressBarColor = 'primary' | 'gray' | 'blue' | 'red' | 'green' | 'yellow' | 'indigo' | 'rose' | 'amber' | 'custom';
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
progress: {
type: NumberConstructor;
required: true;
validator(value: number): boolean;
};
label: {
type: StringConstructor;
default: string;
};
showProgress: {
type: BooleanConstructor;
default: boolean;
};
size: {
type: PropType<ProgressBarSize>;
default: string;
};
color: {
type: PropType<ProgressBarColor>;
default: string;
};
customColorClasses: {
type: StringConstructor;
default: string;
};
indeterminate: {
type: BooleanConstructor;
default: boolean;
};
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
progress: {
type: NumberConstructor;
required: true;
validator(value: number): boolean;
};
label: {
type: StringConstructor;
default: string;
};
showProgress: {
type: BooleanConstructor;
default: boolean;
};
size: {
type: PropType<ProgressBarSize>;
default: string;
};
color: {
type: PropType<ProgressBarColor>;
default: string;
};
customColorClasses: {
type: StringConstructor;
default: string;
};
indeterminate: {
type: BooleanConstructor;
default: boolean;
};
}>> & Readonly<{}>, {
size: ProgressBarSize;
label: string;
color: ProgressBarColor;
showProgress: boolean;
customColorClasses: string;
indeterminate: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;
//# sourceMappingURL=NeProgressBar.vue.d.ts.map