mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +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
61
components/lib/progressspinner/ProgressSpinner.d.ts
vendored
Executable file
61
components/lib/progressspinner/ProgressSpinner.d.ts
vendored
Executable file
|
@ -0,0 +1,61 @@
|
|||
/**
|
||||
*
|
||||
* 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.
|
||||
* @defaultValue 2
|
||||
*/
|
||||
strokeWidth?: string | undefined;
|
||||
/**
|
||||
* Color for the background of the circle.
|
||||
*/
|
||||
fill?: string | undefined;
|
||||
/**
|
||||
* Duration of the rotate animation.
|
||||
* @defaultValue 2s
|
||||
*/
|
||||
animationDuration?: string | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in ProgressSpinner component.
|
||||
*/
|
||||
export interface ProgressSpinnerSlots {}
|
||||
|
||||
/**
|
||||
* Defines valid emits in ProgressSpinner component.
|
||||
*/
|
||||
export interface ProgressSpinnerEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - ProgressSpinner**
|
||||
*
|
||||
* _ProgressSpinner is a process status indicator._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/progressspinner/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class ProgressSpinner extends ClassComponent<ProgressSpinnerProps, ProgressSpinnerSlots, ProgressSpinnerEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
ProgressSpinner: GlobalComponentConstructor<ProgressSpinner>;
|
||||
}
|
||||
}
|
||||
|
||||
export default ProgressSpinner;
|
Loading…
Add table
Add a link
Reference in a new issue