UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

147 lines (135 loc) 3.76 kB
/** * * ProgressBar is a process status indicator. * * [Live Demo](https://www.primevue.org/progressbar) * * @module progressbar * */ import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core'; import type { ComponentHooks } from '@primevue/core/basecomponent'; import type { PassThroughOptions } from 'primevue/passthrough'; import { VNode } from 'vue'; export declare type ProgressBarPassThroughOptionType<T = any> = ProgressBarPassThroughAttributes | ((options: ProgressBarPassThroughMethodOptions<T>) => ProgressBarPassThroughAttributes | string) | string | null | undefined; /** * Custom passthrough(pt) option method. */ export interface ProgressBarPassThroughMethodOptions<T> { /** * Defines instance. */ instance: any; /** * Defines valid properties. */ props: ProgressBarProps; /** * Defines passthrough(pt) options in global config. */ global: object | undefined; /** * Defines parent instance. */ parent: T; } /** * Custom passthrough(pt) options. * @see {@link ProgressBarProps.pt} */ export interface ProgressBarPassThroughOptions<T = any> { /** * Used to pass attributes to the root's DOM element. */ root?: ProgressBarPassThroughOptionType<T>; /** * Used to pass attributes to the value's DOM element. */ value?: ProgressBarPassThroughOptionType<T>; /** * Used to pass attributes to the label's DOM element. */ label?: ProgressBarPassThroughOptionType<T>; /** * Used to manage all lifecycle hooks. * @see {@link BaseComponent.ComponentHooks} */ hooks?: ComponentHooks; } /** * Custom passthrough attributes for each DOM elements */ export interface ProgressBarPassThroughAttributes { [key: string]: any; } /** * Defines valid properties in ProgressBar component. */ export interface ProgressBarProps { /** * Current value of the progress. */ value?: number | undefined; /** * Defines the mode of the progress * @defaultValue determinate */ mode?: 'determinate' | 'indeterminate' | undefined; /** * Whether to display the progress bar value. * @defaultValue true */ showValue?: boolean | undefined; /** * It generates scoped CSS variables using design tokens for the component. */ dt?: DesignToken<any>; /** * Used to pass attributes to DOM elements inside the component. * @type {ProgressBarPassThroughOptions} */ pt?: PassThrough<ProgressBarPassThroughOptions>; /** * Used to configure passthrough(pt) options of the component. * @type {PassThroughOptions} */ ptOptions?: PassThroughOptions; /** * When enabled, it removes component related styles in the core. * @defaultValue false */ unstyled?: boolean; } /** * Defines valid slots in ProgressBar component. */ export interface ProgressBarSlots { /** * Custom content slot. */ default(): VNode[]; } /** * Defines valid emits in ProgressBar component. */ export interface ProgressBarEmitsOptions {} export declare type ProgressBarEmits = EmitFn<ProgressBarEmitsOptions>; /** * **PrimeVue - ProgressBar** * * ProgressBar is a process status indicator._ * * [Live Demo](https://www.primevue.org/progressbar/) * --- --- * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png) * * @group Component * */ declare const ProgressBar: DefineComponent<ProgressBarProps, ProgressBarSlots, ProgressBarEmits>; declare module 'vue' { export interface GlobalComponents { ProgressBar: DefineComponent<ProgressBarProps, ProgressBarSlots, ProgressBarEmits>; } } export default ProgressBar;