@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
64 lines (63 loc) • 2.1 kB
TypeScript
import type { ExtractPublicPropTypes } from 'vue';
import { type ThemeComponent } from '../../composables/useTheme';
declare const progressProps: {
percentage: {
type: (StringConstructor | NumberConstructor)[];
default: number;
validator: (value: number) => boolean;
};
gradient: BooleanConstructor;
animate: {
type: BooleanConstructor;
default: boolean;
};
thick: BooleanConstructor;
color: {
readonly type: StringConstructor;
readonly default: string | undefined;
};
};
export type ProgressProps = ExtractPublicPropTypes<typeof progressProps>;
type InternalClasses = 'wrapper' | 'list' | 'item';
export interface ProgressTheme extends ThemeComponent<ProgressProps, InternalClasses> {
}
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
percentage: {
type: (StringConstructor | NumberConstructor)[];
default: number;
validator: (value: number) => boolean;
};
gradient: BooleanConstructor;
animate: {
type: BooleanConstructor;
default: boolean;
};
thick: BooleanConstructor;
color: {
readonly type: StringConstructor;
readonly default: string | undefined;
};
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
percentage: {
type: (StringConstructor | NumberConstructor)[];
default: number;
validator: (value: number) => boolean;
};
gradient: BooleanConstructor;
animate: {
type: BooleanConstructor;
default: boolean;
};
thick: BooleanConstructor;
color: {
readonly type: StringConstructor;
readonly default: string | undefined;
};
}>> & Readonly<{}>, {
color: string;
percentage: string | number;
gradient: boolean;
animate: boolean;
thick: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;