Skip to content

Commit

Permalink
Update all non-major dependencies (#33)
Browse files Browse the repository at this point in the history
* Update all non-major dependencies

* Fix lint

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Aaron Kirkbride <[email protected]>
  • Loading branch information
renovate[bot] and aaron7 authored Aug 18, 2024
1 parent 35d62be commit 12142d3
Show file tree
Hide file tree
Showing 3 changed files with 545 additions and 563 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"@types/turndown": "^5.0.5",
"@vitejs/plugin-react": "^4.2.1",
"jsdom": "^24.1.0",
"openapi-typescript": "7.1.1",
"openapi-typescript": "7.3.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"vite": "^5.1.4",
Expand Down
34 changes: 16 additions & 18 deletions app/src/components/ui/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,22 @@ import React from 'react';

import { cn } from '@/lib/utils';

export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {}

const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, type, ...props }, ref) => {
return (
<input
className={cn(
'border-input bg-background ring-offset-background placeholder:text-muted-foreground focus-visible:ring-ring flex h-10 w-full rounded-md border px-3 py-2 text-sm file:border-0 file:bg-transparent file:text-sm file:font-medium focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',
className,
)}
ref={ref}
type={type}
{...props}
/>
);
},
);
const Input = React.forwardRef<
HTMLInputElement,
React.InputHTMLAttributes<HTMLInputElement>
>(({ className, type, ...props }, ref) => {
return (
<input
className={cn(
'border-input bg-background ring-offset-background placeholder:text-muted-foreground focus-visible:ring-ring flex h-10 w-full rounded-md border px-3 py-2 text-sm file:border-0 file:bg-transparent file:text-sm file:font-medium focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',
className,
)}
ref={ref}
type={type}
{...props}
/>
);
});
Input.displayName = 'Input';

export { Input };
Loading

0 comments on commit 12142d3

Please sign in to comment.