@epilot/volt-ui-experimental-griffel 0.1.1 → 0.1.2
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/tokens.json +1 -1
- package/package.json +3 -1
- package/tokens.d.ts +3 -0
- package/tokens.js +13 -0
package/dist/tokens.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$comment": "GENERATED. Design token values for consumers that do not render this package's React components. Compile these into your own CSS under your own names at your own build time; do not reference this package's runtime custom properties, whose names are content-hashed and change with their values.",
|
|
3
3
|
"package": "@epilot/volt-ui-experimental-griffel",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"themes": {
|
|
6
6
|
"light": {
|
|
7
7
|
"accent-1": "#fcfdfe",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/volt-ui-experimental-griffel",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Experimental Volt UI rebuild: Radix primitives styled with Griffel, bundled per micro-frontend instead of shared as a singleton",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"dist",
|
|
27
|
+
"tokens.js",
|
|
28
|
+
"tokens.d.ts",
|
|
27
29
|
"README.md"
|
|
28
30
|
],
|
|
29
31
|
"sideEffects": false,
|
package/tokens.d.ts
ADDED
package/tokens.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Resolution stub for the `./tokens` subpath.
|
|
2
|
+
//
|
|
3
|
+
// `exports` in package.json already maps it, and webpack, Vite and Node all honour that. Tools
|
|
4
|
+
// that predate `exports` resolve a subpath as a file path instead — `<package>/tokens` becomes
|
|
5
|
+
// `<package>/tokens.js` — and find nothing. ESLint's node import resolver is one of them, so
|
|
6
|
+
// `import/no-unresolved` fires on a specifier that every bundler resolves correctly, and each
|
|
7
|
+
// consumer ends up carrying its own `eslint-disable`.
|
|
8
|
+
//
|
|
9
|
+
// This file is that path. It re-exports the same module the `exports` map points at, so both
|
|
10
|
+
// resolution routes land on one module instance and nothing is duplicated.
|
|
11
|
+
//
|
|
12
|
+
// Same shape as the `typesVersions` entry, which exists for the same reason on the TypeScript side.
|
|
13
|
+
export * from "./dist/tokens/index.js"
|