updated images
This commit is contained in:
2
.npmrc
2
.npmrc
@@ -1,3 +1,3 @@
|
|||||||
package-lock=false
|
package-lock=false
|
||||||
save-exact=true
|
save-exact=true
|
||||||
@techniker-me:regi
|
@techniker-me:registry="https://npm.techniker.me"
|
||||||
|
|||||||
49
package.json
49
package.json
@@ -1,39 +1,42 @@
|
|||||||
{
|
{
|
||||||
"name": "painter-portfolio",
|
"name": "painter-portfolio",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"ci-build:dist": "npm run build",
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
"prebuild": "npm run lint",
|
||||||
"build": "tsc -b && vite build",
|
"build": "tsc -b && vite build",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
|
"lint:fix": "eslint --fix .",
|
||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "0.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "2.1.1",
|
||||||
"lucide-react": "^0.545.0",
|
"lucide-react": "0.545.0",
|
||||||
"react": "^19.1.1",
|
"react": "19.1.1",
|
||||||
"react-dom": "^19.1.1",
|
"react-dom": "19.1.1",
|
||||||
"tailwind-merge": "^3.3.1",
|
"tailwind-merge": "3.3.1",
|
||||||
"tailwindcss-animate": "^1.0.7"
|
"tailwindcss-animate": "1.0.7"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.36.0",
|
"@eslint/js": "9.36.0",
|
||||||
"@types/node": "^24.7.2",
|
"@types/node": "24.7.2",
|
||||||
"@types/react": "^19.1.16",
|
"@types/react": "19.1.16",
|
||||||
"@types/react-dom": "^19.1.9",
|
"@types/react-dom": "19.1.9",
|
||||||
"@vitejs/plugin-react": "^5.0.4",
|
"@vitejs/plugin-react": "5.0.4",
|
||||||
"autoprefixer": "^10.4.21",
|
"autoprefixer": "10.4.21",
|
||||||
"eslint": "^9.36.0",
|
"eslint": "9.36.0",
|
||||||
"eslint-plugin-react-hooks": "^5.2.0",
|
"eslint-plugin-react-hooks": "5.2.0",
|
||||||
"eslint-plugin-react-refresh": "^0.4.22",
|
"eslint-plugin-react-refresh": "0.4.22",
|
||||||
"globals": "^16.4.0",
|
"globals": "16.4.0",
|
||||||
"postcss": "^8.5.6",
|
"postcss": "8.5.6",
|
||||||
"prettier": "^3.6.2",
|
"prettier": "3.6.2",
|
||||||
"tailwindcss": "^3.4.18",
|
"tailwindcss": "3.4.18",
|
||||||
"typescript": "~5.9.3",
|
"typescript": "~5.9.3",
|
||||||
"typescript-eslint": "^8.45.0",
|
"typescript-eslint": "8.45.0",
|
||||||
"vite": "^7.1.7"
|
"vite": "7.1.7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import {cva, type VariantProps} from 'class-variance-authority';
|
import {cva, type VariantProps} from 'class-variance-authority';
|
||||||
import {cn} from '@/lib/utils';
|
import {cn} from '@/lib/utils';
|
||||||
|
/* eslint-disable */
|
||||||
const buttonVariants = cva(
|
const buttonVariants = cva(
|
||||||
'inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50',
|
'inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50',
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import {cn} from '@/lib/utils';
|
import {cn} from '@/lib/utils';
|
||||||
|
|
||||||
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {}
|
const Input = React.forwardRef<HTMLInputElement, React.InputHTMLAttributes<HTMLInputElement>>(({className, type, ...props}, ref) => {
|
||||||
|
|
||||||
const Input = React.forwardRef<HTMLInputElement, InputProps>(({className, type, ...props}, ref) => {
|
|
||||||
return (
|
return (
|
||||||
<input
|
<input
|
||||||
type={type}
|
type={type}
|
||||||
@@ -18,4 +16,4 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(({className, type,
|
|||||||
});
|
});
|
||||||
Input.displayName = 'Input';
|
Input.displayName = 'Input';
|
||||||
|
|
||||||
export {Input};
|
export {Input};
|
||||||
Reference in New Issue
Block a user