azion-theme 1.18.4 → 1.19.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/CHANGELOG.md +6 -0
- package/package.json +15 -7
- package/scripts/figma-reference-tokens-studio/$metadata.json +9 -0
- package/scripts/figma-reference-tokens-studio/$themes.json +1 -0
- package/scripts/figma-reference-tokens-studio/Global/Global.json +1465 -0
- package/scripts/figma-reference-tokens-studio/Semantic/Dark.json +664 -0
- package/scripts/figma-reference-tokens-studio/Semantic/Light.json +664 -0
- package/scripts/figma-reference-tokens-studio/global.json +1 -0
- package/scripts/figma-sync.js +421 -0
- package/src/tokens/README.md +183 -70
- package/src/tokens/build/css-vars.js +41 -0
- package/src/tokens/build/preset.js +69 -0
- package/src/tokens/build/refs.js +7 -0
- package/src/tokens/build/resolve.js +102 -0
- package/src/tokens/build/tailwind-helper.js +12 -0
- package/src/tokens/build/tailwind-plugin.js +175 -0
- package/src/tokens/colors-brand.js +24 -0
- package/src/tokens/index.js +16 -0
- package/src/tokens/primitives/brand.js +69 -0
- package/src/tokens/primitives/colors.js +133 -0
- package/src/tokens/semantic/backgrounds.js +48 -0
- package/src/tokens/semantic/borders.js +46 -0
- package/src/tokens/semantic/text.js +78 -0
- package/tokens.js +3 -48
- package/src/tokens/colors-brand.ts +0 -27
- package/src/tokens/colors-primitive.ts +0 -153
- package/src/tokens/colors-surfaces.ts +0 -93
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.19.0](https://github.com/aziontech/azion-theme/compare/v1.18.4...v1.19.0) (2026-03-10)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* [ENG-36536] tokens ts and new architecture ([#75](https://github.com/aziontech/azion-theme/issues/75)) ([2715f47](https://github.com/aziontech/azion-theme/commit/2715f47d8f70794faba7b3d82f9f5fe4f3e02886))
|
|
6
|
+
|
|
1
7
|
## [1.18.4](https://github.com/aziontech/azion-theme/compare/v1.18.3...v1.18.4) (2026-03-09)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azion-theme",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.19.0",
|
|
5
5
|
"author": "aziontech",
|
|
6
6
|
"contributors": [
|
|
7
7
|
{
|
|
@@ -19,11 +19,15 @@
|
|
|
19
19
|
"exports": {
|
|
20
20
|
".": "./default.js",
|
|
21
21
|
"./widget": "./widget.js",
|
|
22
|
-
"./
|
|
23
|
-
"./
|
|
24
|
-
"./tokens/
|
|
25
|
-
"./tokens/
|
|
26
|
-
"./tokens": "./tokens.js"
|
|
22
|
+
"./tokens": "./tokens.js",
|
|
23
|
+
"./tokens/primitive": "./tokens.js",
|
|
24
|
+
"./tokens/brand": "./tokens.js",
|
|
25
|
+
"./tokens/semantic/text": "./tokens.js",
|
|
26
|
+
"./tokens/semantic/backgrounds": "./tokens.js",
|
|
27
|
+
"./tokens/semantic/borders": "./tokens.js",
|
|
28
|
+
"./tokens/build/preset": "./src/tokens/build/preset.js",
|
|
29
|
+
"./tokens/build/tailwind-helper": "./src/tokens/build/tailwind-helper.js",
|
|
30
|
+
"./tokens/build/tailwind-plugin": "./src/tokens/build/tailwind-plugin.js"
|
|
27
31
|
},
|
|
28
32
|
"scripts": {
|
|
29
33
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -32,7 +36,11 @@
|
|
|
32
36
|
"@semantic-release/changelog": "^6.0.3",
|
|
33
37
|
"@semantic-release/git": "^10.0.1",
|
|
34
38
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
35
|
-
"semantic-release": "^24.0.0"
|
|
39
|
+
"semantic-release": "^24.0.0",
|
|
40
|
+
"tailwindcss": "^3.4.17"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"tailwindcss": "^3.4.0"
|
|
36
44
|
},
|
|
37
45
|
"keywords": [
|
|
38
46
|
"css",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|