ProgressSpinner .d.ts updated
parent
a41722bac9
commit
1f083c3a27
|
@ -1,10 +1,21 @@
|
|||
import { VNode } from 'vue';
|
||||
/**
|
||||
*
|
||||
* ProgressSpinner is a process status indicator.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/progressspinner)
|
||||
*
|
||||
* @module progressspinner
|
||||
*
|
||||
*/
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in ProgressSpinner component.
|
||||
*/
|
||||
export interface ProgressSpinnerProps {
|
||||
/**
|
||||
* Width of the circle stroke.
|
||||
* Default value is 2.
|
||||
* @defaultValue 2
|
||||
*/
|
||||
strokeWidth?: string | undefined;
|
||||
/**
|
||||
|
@ -13,15 +24,32 @@ export interface ProgressSpinnerProps {
|
|||
fill?: string | undefined;
|
||||
/**
|
||||
* Duration of the rotate animation.
|
||||
* Default value is 2s.
|
||||
* @defaultValue 2s
|
||||
*/
|
||||
animationDuration?: string | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in ProgressSpinner component.
|
||||
*/
|
||||
export interface ProgressSpinnerSlots {}
|
||||
|
||||
export declare type ProgressSpinnerEmits = {};
|
||||
/**
|
||||
* Defines valid emits in ProgressSpinner component.
|
||||
*/
|
||||
export interface ProgressSpinnerEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - ProgressSpinner**
|
||||
*
|
||||
* _ProgressSpinner is a process status indicator._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/progressspinner/)
|
||||
* --- ---
|
||||
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class ProgressSpinner extends ClassComponent<ProgressSpinnerProps, ProgressSpinnerSlots, ProgressSpinnerEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
|
@ -30,13 +58,4 @@ declare module '@vue/runtime-core' {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* ProgressSpinner is a process status indicator.
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [ProgressSpinner](https://www.primefaces.org/primevue/progressspinner)
|
||||
*
|
||||
*/
|
||||
export default ProgressSpinner;
|
||||
|
|
Loading…
Reference in New Issue