primevue-mirror/components/lib/avatar/Avatar.d.ts

170 lines
4.2 KiB
TypeScript
Raw Normal View History

2023-03-01 12:52:17 +00:00
/**
*
* Avatar represents people using icons, labels and images.
*
2023-03-02 09:22:22 +00:00
* - [Live Demo](https://primevue.org/avatar)
2023-03-01 12:52:17 +00:00
*
* @module avatar
*/
2022-09-06 12:03:37 +00:00
import { VNode } from 'vue';
2023-06-23 10:05:40 +00:00
import { AvatarGroupPassThroughOptions } from '../avatargroup';
2023-07-06 11:17:08 +00:00
import { ComponentHooks } from '../basecomponent';
2023-09-05 08:50:46 +00:00
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
2022-09-06 12:03:37 +00:00
export declare type AvatarPassThroughOptionType = AvatarPassThroughAttributes | ((options: AvatarPassThroughMethodOptions) => AvatarPassThroughAttributes | string) | string | null | undefined;
/**
* Custom passthrough(pt) option method.
*/
export interface AvatarPassThroughMethodOptions {
/**
* Defines instance.
*/
2023-07-06 12:01:33 +00:00
instance: any;
/**
* Defines valid properties.
*/
props: AvatarProps;
/**
* Defines parent instance.
*/
2023-06-23 10:05:40 +00:00
parent: AvatarGroupPassThroughOptions;
2023-09-05 08:50:46 +00:00
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface AvatarPassThroughAttributes {
[key: string]: any;
}
/**
* Custom passthrough(pt) options.
* @see {@link AvatarProps.pt}
*/
export interface AvatarPassThroughOptions {
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the root's DOM element.
*/
root?: AvatarPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the label's DOM element.
*/
label?: AvatarPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the icon's DOM element.
*/
icon?: AvatarPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the image's DOM element.
*/
image?: AvatarPassThroughOptionType;
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-03-01 12:52:17 +00:00
/**
* Defines valid properties in Avatar component.
*/
2022-09-06 12:03:37 +00:00
export interface AvatarProps {
/**
* Defines the text to display.
*/
label?: string | undefined;
/**
* Defines the icon to display.
* @deprecated since v3.27.0. Use 'icon' slot.
2022-09-06 12:03:37 +00:00
*/
icon?: string | undefined;
/**
* Defines the image to display.
*/
image?: string | undefined;
/**
2023-03-01 12:52:17 +00:00
* Size of the element.
2023-03-08 10:51:52 +00:00
* @defaultValue normal
2022-09-06 12:03:37 +00:00
*/
2023-03-01 12:52:17 +00:00
size?: 'normal' | 'large' | 'xlarge' | undefined;
2022-09-06 12:03:37 +00:00
/**
2023-03-01 12:52:17 +00:00
* Shape of the element.
2023-03-08 10:51:52 +00:00
* @defaultValue square
2022-09-06 12:03:37 +00:00
*/
2023-03-01 12:52:17 +00:00
shape?: 'square' | 'circle' | undefined;
2022-12-08 11:04:25 +00:00
/**
* Establishes a string value that labels the component.
*/
'aria-label'?: string | undefined;
/**
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
*/
'aria-labelledby'?: string | undefined;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to DOM elements inside the component.
* @type {AvatarPassThroughOptions}
*/
pt?: PTOptions<AvatarPassThroughOptions>;
2023-09-05 08:50:46 +00:00
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
2023-05-23 13:16:38 +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 12:52:17 +00:00
/**
* Defines valid slots in Avatar component.
*/
2022-09-06 12:03:37 +00:00
export interface AvatarSlots {
/**
* Content can easily be customized with the default slot instead of using the built-in modes.
*/
2023-03-01 12:52:17 +00:00
default(): VNode[];
/**
2023-04-18 13:42:36 +00:00
* Custom icon template.
*/
icon(): VNode[];
2022-09-06 12:03:37 +00:00
}
2023-03-01 12:52:17 +00:00
/**
* Defines valid emits in Avatar component.
*/
export interface AvatarEmits {
2022-09-06 12:03:37 +00:00
/**
* Triggered when an error occurs while loading an image file.
*/
error(event: Event): void;
2023-03-01 12:52:17 +00:00
}
2022-09-06 12:03:37 +00:00
2023-03-01 12:52:17 +00:00
/**
* **PrimeVue - Avatar**
*
* _Avatar represents people using icons, labels and images._
*
* [Live Demo](https://www.primevue.org/avatar/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*/
2022-09-14 11:26:01 +00:00
declare class Avatar extends ClassComponent<AvatarProps, AvatarSlots, AvatarEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
Avatar: GlobalComponentConstructor<Avatar>;
2022-09-06 12:03:37 +00:00
}
}
export default Avatar;