2023-03-01 12:55:32 +00:00
|
|
|
/**
|
|
|
|
*
|
2024-02-16 09:17:34 +00:00
|
|
|
* A set of Avatars can be displayed together using the AvatarGroup component.
|
2023-03-01 12:55:32 +00:00
|
|
|
*
|
2024-02-20 08:16:34 +00:00
|
|
|
* [Live Demo](https://www.primevue.org/avatar/)
|
2023-03-01 12:55:32 +00:00
|
|
|
*
|
|
|
|
* @module avatargroup
|
|
|
|
*
|
|
|
|
*/
|
2024-02-16 09:17:34 +00:00
|
|
|
import { VNode } from 'vue';
|
2023-07-06 11:17:08 +00:00
|
|
|
import { ComponentHooks } from '../basecomponent';
|
2023-09-05 08:50:46 +00:00
|
|
|
import { PassThroughOptions } from '../passthrough';
|
2024-04-02 08:24:31 +00:00
|
|
|
import { ClassComponent, DesignToken, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2024-02-20 08:16:34 +00:00
|
|
|
export declare type AvatarGroupPassThroughOptionType = AvatarGroupPassThroughAttributes | ((options: AvatarGroupPassThroughMethodOptions) => AvatarGroupPassThroughAttributes | string) | string | null | undefined;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) option method.
|
|
|
|
*/
|
|
|
|
export interface AvatarGroupPassThroughMethodOptions {
|
|
|
|
/**
|
|
|
|
* Defines instance.
|
|
|
|
*/
|
|
|
|
instance: any;
|
|
|
|
/**
|
|
|
|
* Defines valid properties.
|
|
|
|
*/
|
|
|
|
props: AvatarGroupProps;
|
|
|
|
/**
|
|
|
|
* Defines valid attributes.
|
|
|
|
*/
|
|
|
|
attrs: any;
|
|
|
|
/**
|
|
|
|
* Defines parent options.
|
|
|
|
*/
|
|
|
|
parent: any;
|
|
|
|
/**
|
|
|
|
* Defines passthrough(pt) options in global config.
|
|
|
|
*/
|
|
|
|
global: object | undefined;
|
|
|
|
}
|
2023-04-21 12:04:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough attributes for each DOM elements
|
|
|
|
*/
|
|
|
|
export interface AvatarGroupPassThroughAttributes {
|
|
|
|
[key: string]: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) options.
|
|
|
|
* @see {@link AvatarGroupProps.pt}
|
|
|
|
*/
|
|
|
|
export interface AvatarGroupPassThroughOptions {
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the root's DOM element.
|
2023-04-21 12:04:27 +00:00
|
|
|
*/
|
|
|
|
root?: AvatarGroupPassThroughOptionType;
|
2023-07-06 11:09:01 +00:00
|
|
|
/**
|
2023-11-07 06:16:39 +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 12:04:27 +00:00
|
|
|
}
|
|
|
|
|
2023-03-01 12:55:32 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties in AvatarGroup component.
|
|
|
|
*/
|
2023-04-21 12:04:27 +00:00
|
|
|
export interface AvatarGroupProps {
|
2024-04-02 08:24:31 +00:00
|
|
|
/**
|
|
|
|
* It generates scoped CSS variables using design tokens for the component.
|
|
|
|
*/
|
|
|
|
dt?: DesignToken<any>;
|
2023-04-21 12:04:27 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to DOM elements inside the component.
|
2023-04-21 12:04:27 +00:00
|
|
|
* @type {AvatarGroupPassThroughOptions}
|
|
|
|
*/
|
2023-09-05 11:28:04 +00:00
|
|
|
pt?: PassThrough<AvatarGroupPassThroughOptions>;
|
2023-09-05 08:50:46 +00:00
|
|
|
/**
|
|
|
|
* Used to configure passthrough(pt) options of the component.
|
|
|
|
* @type {PassThroughOptions}
|
|
|
|
*/
|
|
|
|
ptOptions?: PassThroughOptions;
|
2023-05-25 10:07:09 +00:00
|
|
|
/**
|
|
|
|
* When enabled, it removes component related styles in the core.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
unstyled?: boolean;
|
2023-04-21 12:04:27 +00:00
|
|
|
}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 12:55:32 +00:00
|
|
|
/**
|
|
|
|
* Defines valid slots in AvatarGroup component.
|
|
|
|
*/
|
2024-02-16 09:17:34 +00:00
|
|
|
export interface AvatarGroupSlots {
|
|
|
|
/**
|
|
|
|
* Default slot to detect Avatar components.
|
|
|
|
*/
|
|
|
|
default(): VNode[];
|
|
|
|
}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 12:55:32 +00:00
|
|
|
/**
|
|
|
|
* Defines valid emits in AvatarGroup component.
|
|
|
|
*/
|
|
|
|
export interface AvatarGroupEmits {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 12:55:32 +00:00
|
|
|
/**
|
|
|
|
* **PrimeVue - AvatarGroup**
|
|
|
|
*
|
|
|
|
* _A set of Avatars can be displayed together using the AvatarGroup component._
|
|
|
|
*
|
2024-02-20 08:16:34 +00:00
|
|
|
* [Live Demo](https://www.primevue.org/avatar/)
|
2023-03-01 12:55:32 +00:00
|
|
|
* --- ---
|
|
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
|
|
|
*
|
|
|
|
* @group Component
|
|
|
|
*/
|
2022-09-14 11:26:01 +00:00
|
|
|
declare class AvatarGroup extends ClassComponent<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2024-03-14 22:58:11 +00:00
|
|
|
declare module 'vue' {
|
|
|
|
export interface GlobalComponents {
|
2022-09-14 11:26:01 +00:00
|
|
|
AvatarGroup: GlobalComponentConstructor<AvatarGroup>;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default AvatarGroup;
|