diff --git a/components/avatargroup/AvatarGroup.d.ts b/components/avatargroup/AvatarGroup.d.ts index 9ebb18492..1cff7dd48 100644 --- a/components/avatargroup/AvatarGroup.d.ts +++ b/components/avatargroup/AvatarGroup.d.ts @@ -1,11 +1,40 @@ +/** + * + * AvatarGroup is a helper component for Avatar. + * + * [Live Demo](https://www.primevue.org/accordion/) + * + * @module avatargroup + * + */ import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; +/** + * Defines valid properties in AvatarGroup component. + */ export interface AvatarGroupProps {} +/** + * Defines valid slots in AvatarGroup component. + */ export interface AvatarGroupSlots {} -export declare type AvatarGroupEmits = {}; +/** + * Defines valid emits in AvatarGroup component. + */ +export interface AvatarGroupEmits {} +/** + * **PrimeVue - AvatarGroup** + * + * _A set of Avatars can be displayed together using the AvatarGroup component._ + * + * [Live Demo](https://www.primevue.org/avatargroup/) + * --- --- + * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png) + * + * @group Component + */ declare class AvatarGroup extends ClassComponent {} declare module '@vue/runtime-core' { @@ -14,17 +43,4 @@ declare module '@vue/runtime-core' { } } -/** - * - * A set of Avatars can be displayed together using the AvatarGroup component. - * - * Helper Components: - * - * - Avatar - * - * Demos: - * - * - [AvatarGroup](https://www.primefaces.org/primevue/avatar) - * - */ export default AvatarGroup; diff --git a/pages/avatar/index.vue b/pages/avatar/index.vue index e4454070b..7a9cfc68c 100644 --- a/pages/avatar/index.vue +++ b/pages/avatar/index.vue @@ -1,5 +1,5 @@