36 | ARC RAIDERS 37 |
38 |46 | {t.subtitle} 47 |
48 |54 | {t.enterStats} 55 |
56 |76 | {t.shareResults} 77 |
78 |94 | {t.enterData} 95 |
96 |{label}
26 |31 | {value} 32 | {suffix && {suffix}} 33 |
34 |122 | {body} 123 |
124 | ); 125 | }, 126 | ); 127 | FormMessage.displayName = "FormMessage"; 128 | 129 | export { useFormField, Form, FormItem, FormLabel, FormControl, FormDescription, FormMessage, FormField }; 130 | -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- 1 | import * as SheetPrimitive from "@radix-ui/react-dialog"; 2 | import { cva, type VariantProps } from "class-variance-authority"; 3 | import { X } from "lucide-react"; 4 | import * as React from "react"; 5 | 6 | import { cn } from "@/lib/utils"; 7 | 8 | const Sheet = SheetPrimitive.Root; 9 | 10 | const SheetTrigger = SheetPrimitive.Trigger; 11 | 12 | const SheetClose = SheetPrimitive.Close; 13 | 14 | const SheetPortal = SheetPrimitive.Portal; 15 | 16 | const SheetOverlay = React.forwardRef< 17 | React.ElementRef| {t.metric} | 27 |{t.value} | 28 |
|---|---|
| {t.downed} | 33 |{formatDecimal(result.perHour.downed, 1)} | 34 |
| {t.kills} | 37 |{formatDecimal(result.perHour.kills, 1)} | 38 |
| {t.dmgDealt} | 41 |{formatNum(result.perHour.dmgDealt)} | 42 |
| {t.dmgTaken} | 45 |{formatNum(result.perHour.dmgTaken)} | 46 |
| {t.deathsEstimate} | 49 |{formatDecimal(result.perHour.estimatedDeaths, 2)} | 50 |
| {t.metric} | 68 |{t.min20} | 69 |{t.min25} | 70 |{t.min30} | 71 |
|---|---|---|---|
| {t.downed} | 76 |{formatDecimal(result.perRaid["20"].downed, 1)} | 77 |{formatDecimal(result.perRaid["25"].downed, 1)} | 78 |{formatDecimal(result.perRaid["30"].downed, 1)} | 79 |
| {t.kills} | 82 |{formatDecimal(result.perRaid["20"].kills, 1)} | 83 |{formatDecimal(result.perRaid["25"].kills, 1)} | 84 |{formatDecimal(result.perRaid["30"].kills, 1)} | 85 |
| {t.dmgDealt} | 88 |{formatNum(result.perRaid["20"].dmgDealt)} | 89 |{formatNum(result.perRaid["25"].dmgDealt)} | 90 |{formatNum(result.perRaid["30"].dmgDealt)} | 91 |
| {t.dmgTaken} | 94 |{formatNum(result.perRaid["20"].dmgTaken)} | 95 |{formatNum(result.perRaid["25"].dmgTaken)} | 96 |{formatNum(result.perRaid["30"].dmgTaken)} | 97 |
46 | {t.subtitle} 47 |
48 |94 | {t.enterData} 95 |
96 |