• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

vintasoftware / nextjs-fastapi-template / 16178804135

09 Jul 2025 07:45PM UTC coverage: 98.372%. Remained the same
16178804135

push

github

web-flow
Merge pull request #90 from vintasoftware/release-0.0.4

Release 0.0.4

91 of 98 branches covered (92.86%)

Branch coverage included in aggregate %.

1480 of 1499 relevant lines covered (98.73%)

8.38 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/nextjs-frontend/components/ui/input.tsx
1
import * as React from "react";
2✔
2

2✔
3
import { cn } from "@/lib/utils";
2✔
4

2✔
5
export interface InputProps
2✔
6
  extends React.InputHTMLAttributes<HTMLInputElement> {}
2✔
7

2✔
8
const Input = React.forwardRef<HTMLInputElement, InputProps>(
2✔
9
  ({ className, type, ...props }, ref) => {
2✔
10
    return (
124✔
11
      <input
124✔
12
        type={type}
124✔
13
        className={cn(
124✔
14
          "flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
124✔
15
          className,
124✔
16
        )}
124✔
17
        ref={ref}
124✔
18
        {...props}
124✔
19
      />
124✔
20
    );
124✔
21
  },
124✔
22
);
2✔
23
Input.displayName = "Input";
2✔
24

2✔
25
export { Input };
2✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc