feat(text-input-skeleton)!: remove forwarded events, props

This commit is contained in:
Eric Liu 2024-04-29 22:04:18 -07:00
commit f7d8cd6e95
4 changed files with 9 additions and 60 deletions

View file

@ -6,22 +6,10 @@ export interface TextInputSkeletonProps {
* @default false
*/
hideLabel?: boolean;
/**
* Specify the div HTML attributes for the skeleton container
* @default {}
*/
divAttributes?: import("svelte/elements").HTMLDivAttributes;
}
export default class TextInputSkeleton extends SvelteComponentTyped<
TextInputSkeletonProps,
{
click: WindowEventMap["click"];
pointerup: WindowEventMap["pointerup"];
pointerover: WindowEventMap["pointerover"];
pointerenter: WindowEventMap["pointerenter"];
pointerleave: WindowEventMap["pointerleave"];
},
Record<string, any>,
{}
> {}