From 00566e76759a51f225ad419d3923bf844cbf82ff Mon Sep 17 00:00:00 2001 From: Abdalrzag <53495583+mesalilac@users.noreply.github.com> Date: Mon, 16 Feb 2026 22:21:16 +0300 Subject: [PATCH] Fix typos in index.ts --- src/lib/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/index.tsx b/src/lib/index.tsx index 632c86e..c35b5cf 100644 --- a/src/lib/index.tsx +++ b/src/lib/index.tsx @@ -20,7 +20,7 @@ type ValidPositionAreaX = | "start" | "end" | "center" - | "selft-start" + | "self-start" | "self-end" | "x-start" | "x-end"; @@ -66,7 +66,7 @@ export type PopoverProps = { /** * @default "pointerdown" * If set to null no event would trigger popover, - * so you need to trigger it mannually. + * so you need to trigger it manually. * Event name or list of event names separated by "|" which triggers popover. * You may also add modifiers like "capture", "passive", "once", "prevent", "stop" to the event separated by ".": * @example "pointerdown.capture.once.prevent|click"