@beaket/ui 1.9.0 → 2.0.0
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/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -189,7 +189,7 @@ import pc2 from "picocolors";
|
|
|
189
189
|
import prompts2 from "prompts";
|
|
190
190
|
|
|
191
191
|
// ../../src/css-variables.css
|
|
192
|
-
var css_variables_default = "/*\n * Beaket UI Design System - Core Variables\n * This file is the single source of truth for CSS variables.\n * Used by: styles.css (via @import) and CLI init command (via build script)\n
|
|
192
|
+
var css_variables_default = "/*\n * Beaket UI Design System - Core Variables\n * This file is the single source of truth for CSS variables.\n * Used by: styles.css (via @import) and CLI init command (via build script)\n *\n * BREAKING CHANGE: Colors now use --color-* prefix (Tailwind v4 convention).\n * Components use clean utilities: bg-paper, text-ink, border-chrome\n */\n\n@theme {\n /* Neutral palette */\n --color-graphite: #0d0d0d;\n --color-ink: #1a1a1a;\n --color-branch: #1c1f24;\n --color-iron: #2d2d2d;\n --color-slate: #404040;\n --color-zinc: #525252;\n --color-steel: #595959;\n --color-muted: #737373;\n --color-aluminum: #9e9e9e;\n --color-chrome: #d4d4d4;\n --color-silver: #dedede;\n --color-platinum: #ebebeb;\n --color-frost: #f5f5f5;\n --color-paper: #fafafa;\n --color-inverse: var(--color-paper);\n\n /* Signal colors */\n --color-signal-blue: #1a56a0;\n --color-signal-red: #c41e1e;\n --color-signal-red-hover: #b71c1c;\n --color-signal-red-active: #9a1919;\n --color-signal-red-text: #b91c1c;\n --color-signal-green: #00794c;\n --color-signal-green-hover: #0f5f42;\n --color-signal-green-active: #0a4a32;\n --color-signal-amber: #b8860b;\n --color-signal-amber-hover: #9a7209;\n --color-signal-amber-active: #7a5a07;\n --color-signal-purple: #6f2da8;\n --color-signal-cyan: #1a6b7c;\n\n /* Shadows (offset only, no blur) */\n --shadow-offset: 2px 2px 0px 0px var(--color-chrome);\n --shadow-offset-dark: 2px 2px 0px 0px var(--color-aluminum);\n --shadow-offset-hover: 3px 3px 0px 0px var(--color-chrome);\n --shadow-offset-active: 1px 1px 0px 0px var(--color-chrome);\n\n /* Animations */\n --animate-navigation-progress: navigation-progress 1s ease-in-out infinite;\n}\n\n@keyframes navigation-progress {\n 0% {\n transform: translateX(-100%);\n }\n 100% {\n transform: translateX(400%);\n }\n}\n";
|
|
193
193
|
|
|
194
194
|
// src/commands/init.ts
|
|
195
195
|
async function detectAliasPath() {
|
|
@@ -300,7 +300,7 @@ async function init(options) {
|
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
// src/index.ts
|
|
303
|
-
var version = "
|
|
303
|
+
var version = "2.0.0";
|
|
304
304
|
var program = new Command();
|
|
305
305
|
program.name("@beaket/ui").description("CLI for adding Beaket UI components to your project").version(version);
|
|
306
306
|
program.command("init").description("Initialize Beaket UI in your project").option("-y, --yes", "Use defaults without prompting").action(init);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beaket/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "CLI tool for adding Beaket UI components to your project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"url": "https://github.com/beaket/ui"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"commander": "14.0.
|
|
26
|
-
"fs-extra": "11.3.
|
|
25
|
+
"commander": "14.0.3",
|
|
26
|
+
"fs-extra": "11.3.4",
|
|
27
27
|
"picocolors": "1.1.1",
|
|
28
28
|
"prompts": "2.4.2"
|
|
29
29
|
},
|