@refineui/tokens 1.0.0 → 1.0.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/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @refineui/tokens
2
+
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - b240e67: Scope ScrollArea overflow per axis so a horizontal-only area no longer swallows vertical wheel gestures, and give every published package a README with install steps for npm, yarn, pnpm, and bun.
package/README.md CHANGED
@@ -2,10 +2,19 @@
2
2
 
3
3
  Design tokens for RefineUI — TypeScript source of truth plus generated CSS.
4
4
 
5
- ## Install / build
5
+ ## Install
6
6
 
7
7
  ```bash
8
- bun run build # or pnpm build — builds utilities → tokens → react
8
+ npm install @refineui/tokens
9
+ yarn add @refineui/tokens
10
+ pnpm add @refineui/tokens
11
+ bun add @refineui/tokens
12
+ ```
13
+
14
+ ## Build
15
+
16
+ ```bash
17
+ bun run build # or npm/yarn/pnpm run build — builds utilities → tokens → react
9
18
  ```
10
19
 
11
20
  `@refineui/tokens` `build` runs `tsup` then `scripts/generate-css.mjs` and `scripts/generate-spec.mjs`, writing:
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "generatedAt": "2026-09-08T10:52:31.434Z",
3
+ "generatedAt": "2026-09-08T17:24:28.239Z",
4
4
  "files": {
5
5
  "foundation": "./foundation.json",
6
6
  "semanticColors": "./semantic-colors.json",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
3
  "contractLayer": "semantic-token-trace",
4
- "generatedAt": "2026-09-08T10:52:31.438Z",
4
+ "generatedAt": "2026-09-08T17:24:28.244Z",
5
5
  "tokens": {
6
6
  "backgroundBrandActive": {
7
7
  "type": "semantic",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refineui/tokens",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "RefineUI Theme Tokens",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -46,5 +46,9 @@
46
46
  "./tailwind.css": "./tailwind.css",
47
47
  "./package.json": "./package.json"
48
48
  },
49
- "files": ["*.md", "dist", "tailwind.css"]
49
+ "files": [
50
+ "*.md",
51
+ "dist",
52
+ "tailwind.css"
53
+ ]
50
54
  }