import { Avatar, AvatarFallback, AvatarImage, Card, CardContent, CardDescription, CardHeader, CardTitle, HoverCard, HoverCardContent, HoverCardTrigger, } from "@godxjp/ui/data-display"; import { Button, Text } from "@godxjp/ui/general"; import { Flex, PageContainer, ResponsiveGrid } from "@godxjp/ui/layout"; /** * HoverCard — a rich popover shown on hover/focus of a trigger (sighted-pointer * affordance; not a replacement for Tooltip). Composed only from real * @godxjp/ui components. Touch layouts must keep essential identity/actions visible in the * trigger or destination; never make HoverCard the only route to required information. */ export default function Demo() { return ( {/* Entity peek — hover (or focus) the link to reveal the card */} 取引先プレビュー リンクをホバーまたはフォーカスすると、ページを離れずに取引先を確認できます。トリガーは フォーカス可能なリンクなので、キーボード操作でも開きます。 VB 株式会社ベトヤ 取引先 · BTY-0012 · 売掛 ¥482,000 {/* User card — the second pattern promised by the subtitle */} ユーザーカード 担当者名にホバーすると、連絡先と所属を含むユーザーカードを表示します。 田中 美咲 営業部 · 主任 misaki.tanaka@example.co.jp {/* Positioning — every `side` value, plus `align` and `sideOffset` */} 配置(side · align · sideOffset) ポップオーバーを開く向きは side(top / right / bottom / left)、トリガーに沿った 位置は align、トリガーとの距離は sideOffset で制御します。各リンクをホバーすると その向きで表示されます。 上に表示(align=center) 右に表示(align=start) 下に表示(align=end) 左に表示(sideOffset=12) {/* Delay — openDelay / closeDelay tune the hover affordance */} 開閉ディレイ(openDelay · closeDelay) openDelay はホバーから表示までの待ち時間、closeDelay は離れてから閉じるまでの 猶予です。長い openDelay で誤爆を防ぎ、長い closeDelay でポップオーバー内へ ポインタを移動しやすくします。 待ってから表示。意図しないホバーで開きません。 即座に表示し、離れても少し残るのでカード内に移動できます。 ); }