Compare commits

..

2 Commits

Author SHA1 Message Date
44cc1ac10f 0.0.2 2026-02-18 10:48:08 -08:00
d64b855a90 update deps 2026-02-18 10:48:01 -08:00
18 changed files with 18 additions and 18 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@because/howl", "name": "@because/howl",
"version": "0.0.1", "version": "0.0.2",
"module": "src/index.tsx", "module": "src/index.tsx",
"type": "module", "type": "module",
"exports": "./src/index.tsx", "exports": "./src/index.tsx",

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
import { Section } from './section' import { Section } from './section'
import { H2, Text } from './text' import { H2, Text } from './text'

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
export const Box = define('Box', { export const Box = define('Box', {

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
import { VStack, HStack } from './stack' import { VStack, HStack } from './stack'
import { Section } from './section' import { Section } from './section'

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
// Code block container // Code block container

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
import { Section } from './section' import { Section } from './section'
import { H2 } from './text' import { H2 } from './text'

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
import { VStack, HStack } from './stack' import { VStack, HStack } from './stack'
import { Button } from './button' import { Button } from './button'

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
import * as icons from 'lucide-static' import * as icons from 'lucide-static'
import { Grid } from './grid' import { Grid } from './grid'

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { Section } from './section' import { Section } from './section'
import { H2, H3, H4, H5, Text } from './text' import { H2, H3, H4, H5, Text } from './text'
import { VStack, HStack } from './stack' import { VStack, HStack } from './stack'

View File

@ -1,5 +1,5 @@
// Re-export Forge utilities // Re-export Forge utilities
export { Styles, extendThemes } from 'forge' export { Styles, extendThemes } from '@because/forge'
export { theme } from './theme' export { theme } from './theme'
export { cn } from './cn' export { cn } from './cn'

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
import { Section } from './section' import { Section } from './section'
import { H2 } from './text' import { H2 } from './text'

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
// Dark mode toggle button // Dark mode toggle button

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
export const Section = define('Section', { export const Section = define('Section', {

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
import { Section } from './section' import { Section } from './section'
import { H2 } from './text' import { H2 } from './text'

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
import { H2 } from './text' import { H2 } from './text'
import { RedBox, GreenBox, BlueBox } from './box' import { RedBox, GreenBox, BlueBox } from './box'

View File

@ -1,4 +1,4 @@
import { define } from 'forge' import { define } from '@because/forge'
import { theme } from './theme' import { theme } from './theme'
export const H1 = define('H1', { export const H1 = define('H1', {

View File

@ -1,4 +1,4 @@
import { createThemes } from 'forge' import { createThemes } from '@because/forge'
const lightTheme = { const lightTheme = {
// Colors // Colors

View File

@ -1,6 +1,6 @@
import "hono/jsx" import "hono/jsx"
import { raw } from "hono/html" import { raw } from "hono/html"
import { Styles } from "forge" import { Styles } from '@because/forge'
import { import {
DarkModeToggle, DarkModeToggle,
PageTitle, PageTitle,