@opencloud-eu/design-system
Version:
OpenCloud Design System is used to design OpenCloud UI components
34 lines (33 loc) • 1.18 kB
TypeScript
export interface Props {
/**
* @docs The color of the progress bar. It can be any valid CSS color or registered color role.
* @default var(--oc-role-secondary)
*/
color?: string;
/**
* @docs The background color of the progress bar. It can be any valid CSS color or registered color role.
* @default var(--oc-role-surface-container)
*/
backgroundColor?: string;
/**
* @docs Determines if the progress bar is indeterminate.
* @default false
*/
indeterminate?: boolean;
/**
* @docs The maximum value of the progress bar.
*/
max?: number;
/**
* @docs The size of the progress bar.
* @default default
*/
size?: 'default' | 'small';
/**
* @docs The current value of the progress bar.
* @default 0
*/
value?: number;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
export default _default;