ProgressSpinner .d.ts updated

pull/3689/head
Tuğçe Küçükoğlu 2023-03-01 17:12:31 +03:00
parent a41722bac9
commit 1f083c3a27
1 changed files with 32 additions and 13 deletions

View File

@ -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'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
/**
* Defines valid properties in ProgressSpinner component.
*/
export interface ProgressSpinnerProps { export interface ProgressSpinnerProps {
/** /**
* Width of the circle stroke. * Width of the circle stroke.
* Default value is 2. * @defaultValue 2
*/ */
strokeWidth?: string | undefined; strokeWidth?: string | undefined;
/** /**
@ -13,15 +24,32 @@ export interface ProgressSpinnerProps {
fill?: string | undefined; fill?: string | undefined;
/** /**
* Duration of the rotate animation. * Duration of the rotate animation.
* Default value is 2s. * @defaultValue 2s
*/ */
animationDuration?: string | undefined; animationDuration?: string | undefined;
} }
/**
* Defines valid slots in ProgressSpinner component.
*/
export interface ProgressSpinnerSlots {} 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 class ProgressSpinner extends ClassComponent<ProgressSpinnerProps, ProgressSpinnerSlots, ProgressSpinnerEmits> {}
declare module '@vue/runtime-core' { 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; export default ProgressSpinner;