@aggc/ui 0.2.0 → 0.4.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/README.md +5 -2
- package/package.json +15 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# `@aggc/ui`
|
|
2
2
|
|
|
3
|
-
Shared Vue UI primitives, styles, and patterns for AGGC desktop and
|
|
3
|
+
Shared Vue UI primitives, styles, and patterns for AGGC desktop and web surfaces.
|
|
4
4
|
|
|
5
5
|
## Scope
|
|
6
6
|
|
|
@@ -46,7 +46,10 @@ You can also consume the public subpaths:
|
|
|
46
46
|
|
|
47
47
|
- `@aggc/ui/components`
|
|
48
48
|
- `@aggc/ui/styles`
|
|
49
|
-
- `@aggc/ui/tokens`
|
|
49
|
+
- `@aggc/ui/tokens` — full token map (core + desktop-only)
|
|
50
|
+
- `@aggc/ui/tokens/core` — shared tokens: `text.*`, `bg.*`, `border.*`, `badge.*`, spacing, radii, typography, motion
|
|
51
|
+
- `@aggc/ui/tokens/desktop-only` — desktop-only tokens: `result.*`, `nav.*`, `sync.*`
|
|
52
|
+
- `@aggc/ui/ui.css` — direct CSS asset (for bundlers that handle CSS imports natively)
|
|
50
53
|
|
|
51
54
|
Everything else in this repo is maintenance tooling for the package itself:
|
|
52
55
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aggc/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Shared Vue UI primitives, patterns, and tokens for AGGC desktop and web.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -72,7 +72,19 @@
|
|
|
72
72
|
"types": "./dist/tokens.d.ts",
|
|
73
73
|
"import": "./dist/tokens.js"
|
|
74
74
|
},
|
|
75
|
-
"./
|
|
75
|
+
"./tokens/core": {
|
|
76
|
+
"types": "./dist/tokens-core.d.ts",
|
|
77
|
+
"import": "./dist/tokens-core.js"
|
|
78
|
+
},
|
|
79
|
+
"./tokens/desktop-only": {
|
|
80
|
+
"types": "./dist/tokens-desktop.d.ts",
|
|
81
|
+
"import": "./dist/tokens-desktop.js"
|
|
82
|
+
},
|
|
83
|
+
"./css": {
|
|
84
|
+
"types": "./dist/css.d.ts",
|
|
85
|
+
"import": "./dist/css.js"
|
|
86
|
+
},
|
|
87
|
+
"./ui.css": "./dist/ui.css",
|
|
76
88
|
"./fonts": "./dist/fonts.css"
|
|
77
89
|
},
|
|
78
90
|
"peerDependencies": {
|
|
@@ -84,6 +96,7 @@
|
|
|
84
96
|
"lucide-vue-next": "^0.525.0"
|
|
85
97
|
},
|
|
86
98
|
"devDependencies": {
|
|
99
|
+
"@changesets/changelog-github": "^0.6.0",
|
|
87
100
|
"@changesets/cli": "^2.29.6",
|
|
88
101
|
"@pandacss/dev": "^1.9.0",
|
|
89
102
|
"@playwright/test": "^1.52.0",
|