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