cronus-ui 0.6.0 → 0.6.1

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 CHANGED
@@ -49,7 +49,7 @@ Notes that match the commander surface:
49
49
  `packages/cli/scripts/build-registry.ts` — each item carries its source, its npm
50
50
  `dependencies`, and its `registryDependencies` (other components it imports),
51
51
  derived by parsing imports.
52
- - The default registry is pinned to the CLI package version (`v0.6.0` here), not
52
+ - The default registry is pinned to the CLI package version (`v0.6.1` here), not
53
53
  mutable `main`, so a published CLI reads the registry snapshot it was released
54
54
  with. Use `-r, --registry ./registry` when testing local registry changes before
55
55
  a release tag exists.
@@ -80,7 +80,7 @@ Notes that match the commander surface:
80
80
  "lib": "lib",
81
81
  "blocks": "components/blocks"
82
82
  },
83
- "registry": "https://raw.githubusercontent.com/pedrogbraz/cronus-ui/v0.6.0/registry"
83
+ "registry": "https://raw.githubusercontent.com/pedrogbraz/cronus-ui/v0.6.1/registry"
84
84
  }
85
85
  ```
86
86
 
package/dist/config.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export declare const CONFIG_FILE = "cronus-ui.json";
2
- export declare const CLI_VERSION = "0.6.0";
3
- export declare const DEFAULT_REGISTRY = "https://raw.githubusercontent.com/pedrogbraz/cronus-ui/v0.6.0/registry";
2
+ export declare const CLI_VERSION = "0.6.1";
3
+ export declare const DEFAULT_REGISTRY = "https://raw.githubusercontent.com/pedrogbraz/cronus-ui/v0.6.1/registry";
4
4
  /** Manifest entry `add`/`upgrade` record per installed registry item. */
5
5
  export interface InstalledRecord {
6
6
  /** Registry release the files came from (git tag without the leading "v"). */
package/dist/config.js CHANGED
@@ -2,7 +2,7 @@ import { existsSync } from "node:fs";
2
2
  import { readFile, writeFile } from "node:fs/promises";
3
3
  import { join } from "node:path";
4
4
  export const CONFIG_FILE = "cronus-ui.json";
5
- export const CLI_VERSION = "0.6.0";
5
+ export const CLI_VERSION = "0.6.1";
6
6
  export const DEFAULT_REGISTRY = `https://raw.githubusercontent.com/pedrogbraz/cronus-ui/v${CLI_VERSION}/registry`;
7
7
  export const DEFAULT_CONFIG = {
8
8
  aliases: { ui: "@/components/ui", lib: "@/lib", blocks: "@/components/blocks" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cronus-ui",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "cronus-ui — add Cronus UI components to your project, shadcn-style (copy-paste registry).",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -54,7 +54,7 @@
54
54
  "registry:check": "bun run scripts/check-registry.ts"
55
55
  },
56
56
  "dependencies": {
57
- "@cronus-ui/ai-kit": "0.6.0",
57
+ "@cronus-ui/ai-kit": "0.6.1",
58
58
  "commander": "^15.0.0",
59
59
  "picocolors": "^1.1.1"
60
60
  },
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "admin",
3
+ "type": "registry:app",
4
+ "planVersion": 1,
5
+ "manifest": {
6
+ "title": "Admin",
7
+ "description": "An admin console: split login, an (app) shell, overview, users, analytics, a sprint board and an audit trail — composed from validated blocks.",
8
+ "chrome": {
9
+ "shell": { "block": "app-shell-chrome" },
10
+ "bare": {}
11
+ },
12
+ "pages": [
13
+ {
14
+ "route": "/login",
15
+ "title": "Sign in",
16
+ "chrome": "bare",
17
+ "blocks": [{ "block": "login", "variant": "split" }]
18
+ },
19
+ {
20
+ "route": "/",
21
+ "title": "Overview",
22
+ "nav": "Overview",
23
+ "chrome": "shell",
24
+ "blocks": [{ "block": "dashboard", "variant": "admin-overview" }]
25
+ },
26
+ {
27
+ "route": "/users",
28
+ "title": "Users",
29
+ "nav": "Users",
30
+ "chrome": "shell",
31
+ "blocks": ["user-management"]
32
+ },
33
+ {
34
+ "route": "/analytics",
35
+ "title": "Analytics",
36
+ "nav": "Analytics",
37
+ "chrome": "shell",
38
+ "blocks": [{ "block": "analytics", "variant": "engagement" }]
39
+ },
40
+ {
41
+ "route": "/board",
42
+ "title": "Board",
43
+ "nav": "Board",
44
+ "chrome": "shell",
45
+ "blocks": ["kanban-board"]
46
+ },
47
+ {
48
+ "route": "/audit",
49
+ "title": "Audit log",
50
+ "nav": "Audit",
51
+ "chrome": "shell",
52
+ "blocks": ["audit-log"]
53
+ }
54
+ ],
55
+ "extras": { "not-found": "not-found" },
56
+ "defaults": { "theme": "midnight", "mode": "dark", "brand": "__APP_NAME__" }
57
+ }
58
+ }
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "docs",
3
+ "type": "registry:app",
4
+ "planVersion": 1,
5
+ "manifest": {
6
+ "title": "Docs",
7
+ "description": "A documentation site: changelog home, guides-style blog, an article, FAQ and about — composed from validated content blocks, not a marketing landing.",
8
+ "chrome": {
9
+ "site": { "navbar": "navbar", "footer": "footer" }
10
+ },
11
+ "pages": [
12
+ {
13
+ "route": "/",
14
+ "title": "Changelog",
15
+ "nav": "Changelog",
16
+ "chrome": "site",
17
+ "blocks": ["changelog"]
18
+ },
19
+ {
20
+ "route": "/blog",
21
+ "title": "Guides",
22
+ "nav": "Guides",
23
+ "chrome": "site",
24
+ "blocks": ["blog"]
25
+ },
26
+ {
27
+ "route": "/blog/[slug]",
28
+ "title": "Article",
29
+ "chrome": "site",
30
+ "blocks": [{ "block": "blog-post", "variant": "with-sidebar" }]
31
+ },
32
+ {
33
+ "route": "/faq",
34
+ "title": "FAQ",
35
+ "nav": "FAQ",
36
+ "chrome": "site",
37
+ "blocks": ["faq"]
38
+ },
39
+ {
40
+ "route": "/about",
41
+ "title": "About",
42
+ "nav": "About",
43
+ "chrome": "site",
44
+ "blocks": ["about"]
45
+ }
46
+ ],
47
+ "extras": { "not-found": "not-found" },
48
+ "defaults": { "theme": "neutral", "mode": "light", "brand": "__APP_NAME__" }
49
+ }
50
+ }
@@ -4,7 +4,7 @@
4
4
  "planVersion": 1,
5
5
  "manifest": {
6
6
  "title": "SaaS",
7
- "description": "A complete multi-page SaaS app: split login/signup, and a sidebar-shell dashboard, analytics, team, billing and settings — all from validated blocks.",
7
+ "description": "A complete multi-page SaaS app: split login/signup, password reset, a sidebar-shell dashboard, analytics, team, billing and settings, plus welcome, setup wizard and checklist — all from validated blocks.",
8
8
  "chrome": {
9
9
  "shell": { "block": "app-shell-chrome" },
10
10
  "bare": {}
@@ -22,6 +22,12 @@
22
22
  "chrome": "bare",
23
23
  "blocks": ["signup"]
24
24
  },
25
+ {
26
+ "route": "/forgot-password",
27
+ "title": "Reset password",
28
+ "chrome": "bare",
29
+ "blocks": ["forgot-password"]
30
+ },
25
31
  {
26
32
  "route": "/",
27
33
  "title": "Dashboard",
@@ -56,6 +62,25 @@
56
62
  "nav": "Settings",
57
63
  "chrome": "shell",
58
64
  "blocks": ["settings", "account-security"]
65
+ },
66
+ {
67
+ "route": "/welcome",
68
+ "title": "Welcome",
69
+ "chrome": "shell",
70
+ "blocks": ["welcome"]
71
+ },
72
+ {
73
+ "route": "/setup",
74
+ "title": "Setup",
75
+ "chrome": "shell",
76
+ "blocks": ["setup-wizard"]
77
+ },
78
+ {
79
+ "route": "/checklist",
80
+ "title": "Get started",
81
+ "nav": "Setup",
82
+ "chrome": "shell",
83
+ "blocks": ["setup-checklist"]
59
84
  }
60
85
  ],
61
86
  "extras": { "not-found": "not-found" },