2022-09-06 12:03:37 +00:00
|
|
|
import { VNode } from 'vue';
|
|
|
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
|
|
|
|
|
|
|
export interface ProgressSpinnerProps {
|
|
|
|
/**
|
|
|
|
* Width of the circle stroke.
|
|
|
|
* Default value is 2.
|
|
|
|
*/
|
|
|
|
strokeWidth?: string | undefined;
|
|
|
|
/**
|
|
|
|
* Color for the background of the circle.
|
|
|
|
*/
|
|
|
|
fill?: string | undefined;
|
|
|
|
/**
|
|
|
|
* Duration of the rotate animation.
|
|
|
|
* Default value is 2s.
|
|
|
|
*/
|
|
|
|
animationDuration?: string | undefined;
|
|
|
|
}
|
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
export interface ProgressSpinnerSlots {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
export declare type ProgressSpinnerEmits = {};
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
declare class ProgressSpinner extends ClassComponent<ProgressSpinnerProps, ProgressSpinnerSlots, ProgressSpinnerEmits> {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface GlobalComponents {
|
2022-09-14 11:26:01 +00:00
|
|
|
ProgressSpinner: GlobalComponentConstructor<ProgressSpinner>;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* ProgressSpinner is a process status indicator.
|
|
|
|
*
|
|
|
|
* Demos:
|
|
|
|
*
|
2022-09-14 11:26:01 +00:00
|
|
|
* - [ProgressSpinner](https://www.primefaces.org/primevue/progressspinner)
|
2022-09-06 12:03:37 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
export default ProgressSpinner;
|