From 1532b467faa033d9e6c73b8b0d239013df599af1 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 1 Dec 2021 15:27:26 +0300 Subject: [PATCH] Fixed #1836 - For Button --- src/components/button/Button.d.ts | 79 ++++++++++++++++++++++++++----- 1 file changed, 68 insertions(+), 11 deletions(-) diff --git a/src/components/button/Button.d.ts b/src/components/button/Button.d.ts index 1424ec81b..fe678b9a3 100755 --- a/src/components/button/Button.d.ts +++ b/src/components/button/Button.d.ts @@ -1,17 +1,74 @@ -interface ButtonProps { +import { ButtonHTMLAttributes, VNode } from 'vue'; +import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; + +type ButtonIconPosType = 'left' | 'right' | 'top' | 'bottom'; + +export interface ButtonProps extends ButtonHTMLAttributes { + /** + * Inline style of the button. + */ style?: any; - class?: string; - label?: string; - icon?: string; - iconPos?: string; - badge?: string; - badgeClass?: string; - loading?: boolean; - loadingIcon?: string; + /** + * Style class of the button. + */ + class?: string | undefined; + /** + * Text of the button. + */ + label?: string | undefined; + /** + * Name of the icon. + */ + icon?: string | undefined; + /** + * Position of the icon, valid values are "left", "right", "bottom" and "top". + * Default value is 'left'. + */ + iconPos?: ButtonIconPosType; + /** + * Value of the badge. + */ + badge?: string | undefined; + /** + * Style class of the badge. + */ + badgeClass?: string | undefined; + /** + * Whether the button is in loading state. + */ + loading?: boolean | undefined; + /** + * Icon to display in loading state. + * Default value is 'pi pi-spinner pi-spin'. + */ + loadingIcon?: string | undefined; } -declare class Button { - $props: ButtonProps; +export interface ButtonSlots { + /** + * Custom content such as icons, images and text can be placed inside the button via the default slot. Note that when slot is used, label, icon and badge properties are not included. + */ + default: () => VNode[]; } +export declare type ButtonEmits = { +} + +declare class Button extends ClassComponent { } + +declare module '@vue/runtime-core' { + interface GlobalComponents { + Button: GlobalComponentConstructor