From 071afce1f3cdec8d22b92b2bb9c555d9151b6805 Mon Sep 17 00:00:00 2001 From: Denis Forveille Date: Tue, 15 Feb 2022 11:01:40 -0500 Subject: [PATCH] Update Toast.d.ts Toast: Add missing 'top-right' ToastPositionType --- src/components/toast/Toast.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/toast/Toast.d.ts b/src/components/toast/Toast.d.ts index 84783c927..d1abb5faa 100755 --- a/src/components/toast/Toast.d.ts +++ b/src/components/toast/Toast.d.ts @@ -1,7 +1,7 @@ import { VNode } from 'vue'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; -type ToastPositionType = 'top-left' | 'top-center' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'center' | undefined; +type ToastPositionType = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'center' | undefined; type ToastMessageSeverityType = 'success' | 'info' | 'warn' | 'error' | undefined;