primevue-mirror/components/badge/Badge.d.ts

66 lines
1.4 KiB
TypeScript
Raw Normal View History

2023-03-01 13:00:40 +00:00
/**
*
* Badge represents people using icons, labels and images.
*
* [Live Demo](https://www.primevue.org/badge)
*
* @module badge
*
*/
2022-09-06 12:03:37 +00:00
import { VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
2023-03-01 13:00:40 +00:00
/**
* Defines valid properties in Badge component.
*/
2022-09-06 12:03:37 +00:00
export interface BadgeProps {
/**
* Value to display inside the badge.
*/
value?: string | number;
2022-09-06 12:03:37 +00:00
/**
* Severity type of the badge.
*/
severity?: 'info' | 'success' | 'warning' | 'danger' | null | undefined;
2022-09-06 12:03:37 +00:00
/**
* Size of the badge, valid options are 'large' and 'xlarge'.
*/
size?: 'large' | 'xlarge' | null | undefined;
2022-09-06 12:03:37 +00:00
}
2023-03-01 13:00:40 +00:00
/**
* Defines valid slots in Badge component.
*/
2022-09-06 12:03:37 +00:00
export interface BadgeSlots {
/**
* Content can easily be customized with the default slot instead of using the built-in display.
*/
2023-03-01 13:00:40 +00:00
default(): VNode[];
2022-09-06 12:03:37 +00:00
}
2023-03-01 13:00:40 +00:00
/**
* Defines valid emits in Badge component.
*/
export interface BadgeEmits {}
2022-09-06 12:03:37 +00:00
2023-03-01 13:00:40 +00:00
/**
* **PrimeVue - Badge**
*
* _Badge represents people using icons, labels and images._
*
* [Live Demo](https://www.primevue.org/badge/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*/
2022-09-14 11:26:01 +00:00
declare class Badge extends ClassComponent<BadgeProps, BadgeSlots, BadgeEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
Badge: GlobalComponentConstructor<Badge>;
2022-09-06 12:03:37 +00:00
}
}
export default Badge;