@enovaui/core-tokens 0.10.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,12 @@
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
+
5
11
  ## [0.10.0] - 2025-11-20
6
12
 
7
13
  ### Added
@@ -22,13 +28,13 @@ The following is a curated list of changes in the core tokens module, newest cha
22
28
  - `primitive-color-active-red-99` value to `#fef5f5`
23
29
  - `primitive-color-yellow-green-35` value to `#316d15`
24
30
  - `primitive-color-yellow-green-40` value to `#287d00`
25
- - `primtivie-color-heritage-red` values to match the latest guide
31
+ - `primitive-color-heritage-red` values to match the latest guide
26
32
 
27
33
  ### Added
28
34
 
29
35
  - `primitive-radius-28`
30
36
  - `spacing-primitive` values to match the latest guide
31
- - `typograph-primitive` values to match the latest guide
37
+ - `typography-primitive` values to match the latest guide
32
38
 
33
39
  ## [0.8.2] - 2025-09-09
34
40
 
@@ -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
  }
@@ -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.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "Core design tokens",
5
5
  "main": "index.js",
6
6
  "license": "Apache-2.0",