Compare commits

..

No commits in common. "6f99e4b08e9c5363f6fcb22cbc589901bd3d6f3b" and "0cad100197bcd515b83e374f7477cbb58a2ee9e4" have entirely different histories.

3 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,6 @@
# 🐺 howl # 🐺 howl
Howl is a fork of `werewolf-ui`, without any Tailwind. Howl is a fork of `werewolf-ui`, without any Tailwind. A minimal, zero-dependency React component library.
A minimal, single-dependency component library built on forge
for hype/hono.
## Installation ## Installation

View File

@ -7,14 +7,14 @@
"dev": "bun run --hot test/server.tsx" "dev": "bun run --hot test/server.tsx"
}, },
"devDependencies": { "devDependencies": {
"@types/bun": "latest", "@types/bun": "latest"
"hono": "^4.10.7"
}, },
"peerDependencies": { "peerDependencies": {
"typescript": "^5" "typescript": "^5"
}, },
"dependencies": { "dependencies": {
"forge": "git+https://git.nose.space/defunkt/forge", "forge": "git+https://git.nose.space/defunkt/forge",
"hono": "^4.10.7",
"lucide-static": "^0.555.0" "lucide-static": "^0.555.0"
} }
} }

View File

@ -1,3 +1,6 @@
import "hono/jsx"
import type { JSX } from "hono/jsx"
export type TailwindSize = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 export type TailwindSize = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96
/** /**
@ -6,6 +9,6 @@ export type TailwindSize = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7
export type CommonHTMLProps = { export type CommonHTMLProps = {
class?: string class?: string
id?: string id?: string
style?: Record<string, unknown> style?: JSX.CSSProperties
ref?: any ref?: any
} }