@aziontech/theme 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +10 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @aziontech/theme
2
2
 
3
- A comprehensive design token system and theming solution for Azion's web applications. This package provides primitive colors, semantic tokens, brand colors, and seamless integration with Tailwind CSS.
3
+ ~ A comprehensive design token system and theming solution for Azion's web applications. This package provides primitive colors, semantic tokens, brand colors, and seamless integration with Tailwind CSS.
4
4
 
5
5
  ## Features
6
6
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aziontech/theme",
3
3
  "type": "module",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "author": "aziontech",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -42,10 +42,17 @@
42
42
  "src/",
43
43
  "LICENSE"
44
44
  ],
45
- "main": "./default.js",
46
45
  "exports": {
47
46
  ".": "./default.js",
48
47
  "./widget": "./widget.js",
49
- "./tokens": "./src/tokens/index.js"
48
+ "./tokens": "./tokens.js",
49
+ "./tokens/primitive": "./tokens.js",
50
+ "./tokens/brand": "./tokens.js",
51
+ "./tokens/semantic/text": "./tokens.js",
52
+ "./tokens/semantic/backgrounds": "./tokens.js",
53
+ "./tokens/semantic/borders": "./tokens.js",
54
+ "./tokens/build/preset": "./src/tokens/build/preset.js",
55
+ "./tokens/build/tailwind-helper": "./src/tokens/build/tailwind-helper.js",
56
+ "./tokens/build/tailwind-plugin": "./src/tokens/build/tailwind-plugin.js"
50
57
  }
51
58
  }