AvatarGroup .d.ts updated
parent
d291bc4991
commit
b26baba9ba
|
@ -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<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits> {}
|
||||
|
||||
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;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<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>
|
||||
|
||||
<script>
|
||||
|
|
Loading…
Reference in New Issue