mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
67
components/lib/progressbar/ProgressBar.d.ts
vendored
Executable file
67
components/lib/progressbar/ProgressBar.d.ts
vendored
Executable file
|
@ -0,0 +1,67 @@
|
|||
/**
|
||||
*
|
||||
* ProgressBar is a process status indicator.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/progressbar)
|
||||
*
|
||||
* @module progressbar
|
||||
*
|
||||
*/
|
||||
import { VNode } from 'vue';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in ProgressBar component.
|
||||
*/
|
||||
export interface ProgressBarSlots {
|
||||
/**
|
||||
* Custom content slot.
|
||||
*/
|
||||
default(): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid emits in ProgressBar component.
|
||||
*/
|
||||
export interface ProgressBarEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - ProgressBar**
|
||||
*
|
||||
* ProgressBar is a process status indicator._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/progressbar/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class ProgressBar extends ClassComponent<ProgressBarProps, ProgressBarSlots, ProgressBarEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
ProgressBar: GlobalComponentConstructor<ProgressBar>;
|
||||
}
|
||||
}
|
||||
|
||||
export default ProgressBar;
|
Loading…
Add table
Add a link
Reference in a new issue