stoop 0.0.19 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/components/Button/Button.d.ts +4 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--color-text:#000;--color-background:#fff;--color-border:#0000001a;--color-primary:#000;--color-muted:#666;--space-smallest:.25rem;--space-smaller:.5rem;--space-small:.75rem;--space-medium:1rem;--space-large:1.5rem;--space-larger:2rem;--space-largest:10rem;--radius-small:.25rem;--radius-large:.5rem;--radius-round:9999px;--shadow-default:0 0 0 1px #0000001a;--breakpoint-phone:800px;--breakpoint-tablet:1024px;--breakpoint-desktop:1440px}@media (prefers-color-scheme:dark){:root{--color-text:#fff;--color-background:#000;--color-border:#ffffff1a;--color-primary:#fff;--color-muted:#999}}*{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth;background-color:var(--color-background);color:var(--color-text)}body{margin:0;padding:
|
|
1
|
+
:root{--color-text:#000;--color-background:#fff;--color-border:#0000001a;--color-primary:#000;--color-muted:#666;--space-smallest:.25rem;--space-smaller:.5rem;--space-small:.75rem;--space-medium:1rem;--space-large:1.5rem;--space-larger:2rem;--space-largest:10rem;--radius-small:.25rem;--radius-large:.5rem;--radius-round:9999px;--shadow-default:0 0 0 1px #0000001a;--breakpoint-phone:800px;--breakpoint-tablet:1024px;--breakpoint-desktop:1440px}@media (prefers-color-scheme:dark){:root{--color-text:#fff;--color-background:#000;--color-border:#ffffff1a;--color-primary:#fff;--color-muted:#999}}*{box-sizing:border-box;margin:0;padding:0}html{-webkit-text-size-adjust:100%;text-size-adjust:100%;scroll-behavior:smooth;background-color:var(--color-background);color:var(--color-text);font-size:62.5%}body{margin:0;padding:0;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Noto Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:1.6rem;line-height:1.5}.button_5RnP0A{background-color:var(--color-primary);color:var(--color-background);padding:var(--space-small)var(--space-medium);border-radius:var(--radius-small);cursor:pointer;border:none;transition:opacity .2s;font-size:1.6rem}.button_5RnP0A:hover{opacity:.9}.button_5RnP0A:active{opacity:.8}
|
package/dist/index.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stoop",
|
|
3
3
|
"description": "A small component library for quickly spinning up a pretty Next.js project.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.20",
|
|
5
5
|
"author": "Jackson Dolman <mail@dolmios.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"build": "bun run build:clean && bun run build:types && bun run build:js",
|
|
53
53
|
"build:clean": "rm -rf dist",
|
|
54
54
|
"build:js": "bun build ./src/index.ts --outdir ./dist --target browser --minify --jsx=react",
|
|
55
|
-
"build:types": "tsc --
|
|
55
|
+
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist --jsx react-jsx src/index.ts src/types/*.d.ts",
|
|
56
56
|
"preview": "bun run build && bun run preview/server.ts",
|
|
57
57
|
"lint": "eslint src --fix",
|
|
58
58
|
"prepare": "bun run build",
|