AvatarGroup .d.ts updated

pull/3689/head
Tuğçe Küçükoğlu 2023-03-01 15:55:32 +03:00
parent d291bc4991
commit b26baba9ba
2 changed files with 31 additions and 15 deletions

View File

@ -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'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
/**
* Defines valid properties in AvatarGroup component.
*/
export interface AvatarGroupProps {} export interface AvatarGroupProps {}
/**
* Defines valid slots in AvatarGroup component.
*/
export interface AvatarGroupSlots {} 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<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {} declare class AvatarGroup extends ClassComponent<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {}
declare module '@vue/runtime-core' { 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; export default AvatarGroup;

View File

@ -1,5 +1,5 @@
<template> <template>
<DocComponent title="Vue Avatar Component" header="Avatar" description="Avatar represents people using icons, labels and images." :componentDocs="docs" :apiDocs="['Avatar']" /> <DocComponent title="Vue Avatar Component" header="Avatar" description="Avatar represents people using icons, labels and images." :componentDocs="docs" :apiDocs="['Avatar', 'AvatarGroup']" />
</template> </template>
<script> <script>