2023-03-01 14:12:31 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* ProgressSpinner is a process status indicator.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/progressspinner)
|
|
|
|
*
|
|
|
|
* @module progressspinner
|
|
|
|
*
|
|
|
|
*/
|
2023-07-06 11:17:08 +00:00
|
|
|
import { ComponentHooks } from '../basecomponent';
|
2023-08-17 23:51:01 +00:00
|
|
|
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-07-11 22:42:43 +00:00
|
|
|
export declare type ProgressSpinnerPassThroughOptionType = ProgressSpinnerPassThroughAttributes | ((options: ProgressSpinnerPassThroughMethodOptions) => ProgressSpinnerPassThroughAttributes | string) | string | null | undefined;
|
2023-04-21 13:39:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) option method.
|
|
|
|
*/
|
|
|
|
export interface ProgressSpinnerPassThroughMethodOptions {
|
2023-09-05 06:50:04 +00:00
|
|
|
/**
|
|
|
|
* Defines instance.
|
|
|
|
*/
|
2023-07-06 12:01:33 +00:00
|
|
|
instance: any;
|
2023-09-05 06:50:04 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties.
|
|
|
|
*/
|
2023-04-21 13:39:16 +00:00
|
|
|
props: ProgressSpinnerProps;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) options.
|
|
|
|
* @see {@link ProgressSpinnerProps.pt}
|
|
|
|
*/
|
|
|
|
export interface ProgressSpinnerPassThroughOptions {
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the root's DOM element.
|
2023-04-21 13:39:16 +00:00
|
|
|
*/
|
|
|
|
root?: ProgressSpinnerPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the spinner's DOM element.
|
2023-04-21 13:39:16 +00:00
|
|
|
*/
|
|
|
|
spinner?: ProgressSpinnerPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the circle's DOM element.
|
2023-04-21 13:39:16 +00:00
|
|
|
*/
|
|
|
|
circle?: ProgressSpinnerPassThroughOptionType;
|
2023-07-06 11:09:01 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to manage all lifecycle hooks
|
2023-07-06 11:09:01 +00:00
|
|
|
* @see {@link BaseComponent.ComponentHooks}
|
|
|
|
*/
|
|
|
|
hooks?: ComponentHooks;
|
2023-04-21 13:39:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough attributes for each DOM elements
|
|
|
|
*/
|
|
|
|
export interface ProgressSpinnerPassThroughAttributes {
|
|
|
|
[key: string]: any;
|
|
|
|
}
|
|
|
|
|
2023-03-01 14:12:31 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties in ProgressSpinner component.
|
|
|
|
*/
|
2022-09-06 12:03:37 +00:00
|
|
|
export interface ProgressSpinnerProps {
|
|
|
|
/**
|
|
|
|
* Width of the circle stroke.
|
2023-03-08 10:51:52 +00:00
|
|
|
* @defaultValue 2
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
strokeWidth?: string | undefined;
|
|
|
|
/**
|
|
|
|
* Color for the background of the circle.
|
|
|
|
*/
|
|
|
|
fill?: string | undefined;
|
|
|
|
/**
|
|
|
|
* Duration of the rotate animation.
|
2023-03-08 10:51:52 +00:00
|
|
|
* @defaultValue 2s
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
animationDuration?: string | undefined;
|
2023-04-21 13:39:16 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to DOM elements inside the component.
|
2023-04-21 13:39:16 +00:00
|
|
|
* @type {ProgressSpinnerPassThroughOptions}
|
|
|
|
*/
|
2023-08-17 23:51:01 +00:00
|
|
|
pt?: PTOptions<ProgressSpinnerPassThroughOptions>;
|
2023-05-24 11:44:15 +00:00
|
|
|
/**
|
|
|
|
* When enabled, it removes component related styles in the core.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
unstyled?: boolean;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
2023-03-01 14:12:31 +00:00
|
|
|
/**
|
|
|
|
* Defines valid slots in ProgressSpinner component.
|
|
|
|
*/
|
2022-09-14 11:26:01 +00:00
|
|
|
export interface ProgressSpinnerSlots {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 14:12:31 +00:00
|
|
|
/**
|
|
|
|
* Defines valid emits in ProgressSpinner component.
|
|
|
|
*/
|
|
|
|
export interface ProgressSpinnerEmits {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 14:12:31 +00:00
|
|
|
/**
|
|
|
|
* **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
|
|
|
|
*/
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ProgressSpinner;
|