@@ -15,7 +15,7 @@ import type { ButtonVariants, GradientButtonVariantes, gradientButton } from "$l
1515import type { CardVariants } from "$lib/card/theme" ;
1616import type Slide from "$lib/carousel/Slide.svelte" ;
1717import type { CarouselVariants , SlideVariants } from "$lib/carousel/theme" ;
18- import type { DrawerVariants , DrawerheadVariants } from "$lib/drawer/theme" ;
18+ import type { DrawerHandleVariants , DrawerVariants , DrawerheadVariants } from "$lib/drawer/theme" ;
1919import type { DropdownItemVariants } from "$lib/dropdown/theme" ;
2020import type { DatepickerVariants } from "$lib/datepicker/theme" ;
2121import type { FooterCopyrightVariants , FooterLinkVariants } from "$lib/footer/theme" ;
@@ -569,13 +569,16 @@ export interface DialogProps extends DialogVariants, HTMLDialogAttributes {
569569}
570570
571571// drawer
572- export interface DrawerProps extends DrawerVariants , Omit < DialogProps , "hidden" > {
572+ export interface DrawerProps extends DrawerVariants , Omit < DialogProps , "hidden" | "classes" | "shifted" > {
573573 /** @deprecated Use `outsideclose` instead. Will be removed in next minor version. */
574574 activateClickOutside ?: boolean ;
575575 /** @deprecated Use `open` instead. Will be removed in next minor version. */
576576 hidden ?: boolean | null ;
577+ offset ?: string ;
577578}
578579
580+ export interface DrawerHandleProps extends DrawerHandleVariants , HTMLButtonAttributes { }
581+
579582export interface DrawerheadProps extends DrawerheadVariants , HTMLButtonAttributes {
580583 closeIcon ?: Snippet ;
581584 buttonClass ?: ClassValue ;
@@ -737,7 +740,7 @@ export interface FloatingLabelInputProps extends FloatingLabelInputVaratiants, O
737740}
738741
739742// helper
740- export interface HelperProps extends HelperVariants , Omit < HTMLAttributes < HTMLParagraphElement > , "color" > { }
743+ export interface HelperProps extends HelperVariants , Omit < HTMLAttributes < HTMLParagraphElement > , "color" > { }
741744
742745// input
743746export type InputValue = string | number | string [ ] | undefined ;
@@ -931,7 +934,7 @@ export interface TimepickerProps {
931934 timeIntervals ?: string [ ] ;
932935 columns ?: ColumnCount ;
933936 // Callback props instead of events
934- onselect ?: ( data : { time : string ; endTime : string ; [ key : string ] : string } ) => void ;
937+ onselect ?: ( data : { time : string ; endTime : string ; [ key : string ] : string } ) => void ;
935938}
936939
937940// textarea
@@ -1120,7 +1123,7 @@ export interface ToolbarProps extends ToolbarVariants, Omit<HTMLAttributes<HTMLD
11201123 end ?: Snippet ;
11211124}
11221125
1123- export interface ToolbarGroupProps extends ToolbarGroupVariants , HTMLAttributes < HTMLDivElement > { }
1126+ export interface ToolbarGroupProps extends ToolbarGroupVariants , HTMLAttributes < HTMLDivElement > { }
11241127
11251128export type ToolbarButtonProps = ToolbarButtonVariants &
11261129 AnchorButtonAttributes & {
@@ -1430,7 +1433,7 @@ export interface SkeletonProps extends SkeletonVariants, HTMLAttributes<HTMLDivE
14301433 size ?: SkeletonVariants [ "size" ] ;
14311434}
14321435
1433- export interface TestimonialPlaceholderProps extends TestimonialPlaceholderVariants , HTMLAttributes < HTMLDivElement > { }
1436+ export interface TestimonialPlaceholderProps extends TestimonialPlaceholderVariants , HTMLAttributes < HTMLDivElement > { }
14341437
14351438export interface TextPlaceholderProps extends TextPlaceholderVariants , HTMLAttributes < HTMLDivElement > {
14361439 size ?: TextPlaceholderVariants [ "size" ] ;
@@ -1440,7 +1443,7 @@ export interface VideoPlaceholderProps extends VideoPlaceholderVariants, HTMLAtt
14401443 size ?: VideoPlaceholderVariants [ "size" ] ;
14411444}
14421445
1443- export interface WidgetPlaceholderProps extends WidgetPlaceholderVariants , HTMLAttributes < HTMLDivElement > { }
1446+ export interface WidgetPlaceholderProps extends WidgetPlaceholderVariants , HTMLAttributes < HTMLDivElement > { }
14441447
14451448// speeddial
14461449export interface SpeedCtxType {
0 commit comments