@enovaui/core-tokens 0.9.0 → 0.11.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 CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  The following is a curated list of changes in the core tokens module, newest changes on the top.
4
4
 
5
+ ## [0.11.0] - 2025-11-25
6
+
7
+ ### Added
8
+
9
+ - `typography-primitive-font-family` tokens
10
+
11
+ ## [0.10.0] - 2025-11-20
12
+
13
+ ### Added
14
+
15
+ - `primitive-radius-32`
16
+
5
17
  ## [0.9.0] - 2025-11-07
6
18
 
7
19
  ### Removed
@@ -16,13 +28,13 @@ The following is a curated list of changes in the core tokens module, newest cha
16
28
  - `primitive-color-active-red-99` value to `#fef5f5`
17
29
  - `primitive-color-yellow-green-35` value to `#316d15`
18
30
  - `primitive-color-yellow-green-40` value to `#287d00`
19
- - `primtivie-color-heritage-red` values to match the latest guide
31
+ - `primitive-color-heritage-red` values to match the latest guide
20
32
 
21
33
  ### Added
22
34
 
23
35
  - `primitive-radius-28`
24
36
  - `spacing-primitive` values to match the latest guide
25
- - `typograph-primitive` values to match the latest guide
37
+ - `typography-primitive` values to match the latest guide
26
38
 
27
39
  ## [0.8.2] - 2025-09-09
28
40
 
@@ -21,6 +21,7 @@ Primitive Radius Tokens
21
21
  --primitive-radius-24: 24px;
22
22
  --primitive-radius-28: 28px;
23
23
  --primitive-radius-30: 30px;
24
+ --primitive-radius-32: 32px;
24
25
  --primitive-radius-36: 36px;
25
26
  --primitive-radius-40: 40px;
26
27
  --primitive-radius-44: 44px;
@@ -69,4 +69,18 @@ Primitive Typography Tokens
69
69
  --primitive-font-weight-bold: 700;
70
70
  --primitive-font-weight-extrabold: 800;
71
71
  --primitive-font-weight-black: 900;
72
+
73
+ /* Font Family */
74
+ --primitive-font-family-ios: 'Apple SD Gothic Neo';
75
+ --primitive-font-family-android: 'Noto Sans CJK KR';
76
+
77
+ /* Font Family LG Smart UI */
78
+ --primitive-font-family-lg-smart-ui-default: 'LG Smart UI';
79
+ --primitive-font-family-lg-smart-ui-condensed: 'LG Smart UI Condensed';
80
+ --primitive-font-family-lg-smart-ui-dingbat: 'LG Smart UI Dingbat';
81
+ --primitive-font-family-lg-smart-ui-number: 'LG Smart UI Number';
82
+
83
+ /* Font Family LG EI */
84
+ --primitive-font-family-lg-ei-text: 'LG EI Text';
85
+ --primitive-font-family-lg-ei-headline: 'LG EI Headline';
72
86
  }
@@ -11,6 +11,7 @@
11
11
  "radius-24": "24px",
12
12
  "radius-28": "28px",
13
13
  "radius-30": "30px",
14
+ "radius-32": "32px",
14
15
  "radius-36": "36px",
15
16
  "radius-40": "40px",
16
17
  "radius-44": "44px",
@@ -56,6 +56,20 @@
56
56
  "bold": "700",
57
57
  "extrabold": "800",
58
58
  "black": "900"
59
+ },
60
+ "font-family": {
61
+ "ios": "Apple SD Gothic Neo",
62
+ "android": "Noto Sans CJK KR",
63
+ "lg-smart-ui": {
64
+ "default": "LG Smart UI",
65
+ "condensed": "LG Smart UI Condensed",
66
+ "dingbat": "LG Smart UI Dingbat",
67
+ "number": "LG Smart UI Number"
68
+ },
69
+ "lg-ei": {
70
+ "text": "LG EI Text",
71
+ "headline": "LG EI Headline"
72
+ }
59
73
  }
60
74
  }
61
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enovaui/core-tokens",
3
- "version": "0.9.0",
3
+ "version": "0.11.0",
4
4
  "description": "Core design tokens",
5
5
  "main": "index.js",
6
6
  "license": "Apache-2.0",