From 1f083c3a27ff6482d46bd05ed14f53a115595916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 1 Mar 2023 17:12:31 +0300 Subject: [PATCH] ProgressSpinner .d.ts updated --- .../progressspinner/ProgressSpinner.d.ts | 45 +++++++++++++------ 1 file changed, 32 insertions(+), 13 deletions(-) diff --git a/components/progressspinner/ProgressSpinner.d.ts b/components/progressspinner/ProgressSpinner.d.ts index 04de3155f..533875822 100755 --- a/components/progressspinner/ProgressSpinner.d.ts +++ b/components/progressspinner/ProgressSpinner.d.ts @@ -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 {} 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;