@repobit/dex-system-design 0.14.0 → 0.15.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
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.15.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.14.0...@repobit/dex-system-design@0.15.0) (2025-09-11)
7
+
8
+
9
+ ### Features
10
+
11
+ * **DEX-1001:** add tokens.js and fonts.css ([6430c2d](https://github.com/bitdefender/dex-core/commit/6430c2db459b3d64ef933ab96ad041c10ea32acb))
12
+ * **DEX-1001:** update tokens.css - previous was outdated ([6a8139a](https://github.com/bitdefender/dex-core/commit/6a8139ac40db3d411780566aa1307a8c9e9b46b4))
13
+
14
+
15
+
6
16
  ## [0.14.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.12.0...@repobit/dex-system-design@0.14.0) (2025-09-09)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repobit/dex-system-design",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "Design system based on Web Components.",
5
5
  "author": "Iordache Matei Cezar <miordache@bitdefender.com>",
6
6
  "homepage": "https://github.com/bitdefender/dex-core#readme",
@@ -68,5 +68,5 @@
68
68
  "volta": {
69
69
  "node": "22.14.0"
70
70
  },
71
- "gitHead": "1dd57a06a83a777456387a6467947febe44a7935"
71
+ "gitHead": "6fb6a153ad3a68ec8a5729e97b469b607dce4ed3"
72
72
  }
@@ -0,0 +1,166 @@
1
+ /* =====================
2
+ GLOBAL FONT-FACE DEFINITIONS
3
+ For Storybook and global usage
4
+ ====================== */
5
+
6
+ /* IBM Plex Mono */
7
+ @font-face {
8
+ font-family: 'IBM Plex Mono';
9
+ font-style: normal;
10
+ font-weight: 300;
11
+ src: url('./assets/fonts/IBMPlexMono-Light.woff2') format('woff2');
12
+ font-display: swap;
13
+ }
14
+
15
+ @font-face {
16
+ font-family: 'IBM Plex Mono';
17
+ font-style: italic;
18
+ font-weight: 300;
19
+ src: url('./assets/fonts/IBMPlexMono-LightItalic.woff2') format('woff2');
20
+ font-display: swap;
21
+ }
22
+
23
+ @font-face {
24
+ font-family: 'IBM Plex Mono';
25
+ font-style: normal;
26
+ font-weight: 400;
27
+ src: url('./assets/fonts/IBMPlexMono-Regular.woff2') format('woff2');
28
+ font-display: swap;
29
+ }
30
+
31
+ @font-face {
32
+ font-family: 'IBM Plex Mono';
33
+ font-style: italic;
34
+ font-weight: 400;
35
+ src: url('./assets/fonts/IBMPlexMono-Italic.woff2') format('woff2');
36
+ font-display: swap;
37
+ }
38
+
39
+ @font-face {
40
+ font-family: 'IBM Plex Mono';
41
+ font-style: normal;
42
+ font-weight: 500;
43
+ src: url('./assets/fonts/IBMPlexMono-Medium.woff2') format('woff2');
44
+ font-display: swap;
45
+ }
46
+
47
+ @font-face {
48
+ font-family: 'IBM Plex Mono';
49
+ font-style: italic;
50
+ font-weight: 500;
51
+ src: url('./assets/fonts/IBMPlexMono-MediumItalic.woff2') format('woff2');
52
+ font-display: swap;
53
+ }
54
+
55
+ @font-face {
56
+ font-family: 'IBM Plex Mono';
57
+ font-style: normal;
58
+ font-weight: 600;
59
+ src: url('./assets/fonts/IBMPlexMono-SemiBold.woff2') format('woff2');
60
+ font-display: swap;
61
+ }
62
+
63
+ @font-face {
64
+ font-family: 'IBM Plex Mono';
65
+ font-style: italic;
66
+ font-weight: 600;
67
+ src: url('./assets/fonts/IBMPlexMono-SemiBoldItalic.woff2') format('woff2');
68
+ font-display: swap;
69
+ }
70
+
71
+ @font-face {
72
+ font-family: 'IBM Plex Mono';
73
+ font-style: normal;
74
+ font-weight: 700;
75
+ src: url('./assets/fonts/IBMPlexMono-Bold.woff2') format('woff2');
76
+ font-display: swap;
77
+ }
78
+
79
+ @font-face {
80
+ font-family: 'IBM Plex Mono';
81
+ font-style: italic;
82
+ font-weight: 700;
83
+ src: url('./assets/fonts/IBMPlexMono-BoldItalic.woff2') format('woff2');
84
+ font-display: swap;
85
+ }
86
+
87
+ /* IBM Plex Sans */
88
+ @font-face {
89
+ font-family: 'IBM Plex Sans';
90
+ font-style: normal;
91
+ font-weight: 300;
92
+ src: url('./assets/fonts/IBMPlexSans-Light.woff2') format('woff2');
93
+ font-display: swap;
94
+ }
95
+
96
+ @font-face {
97
+ font-family: 'IBM Plex Sans';
98
+ font-style: italic;
99
+ font-weight: 300;
100
+ src: url('./assets/fonts/IBMPlexSans-LightItalic.woff2') format('woff2');
101
+ font-display: swap;
102
+ }
103
+
104
+ @font-face {
105
+ font-family: 'IBM Plex Sans';
106
+ font-style: normal;
107
+ font-weight: 400;
108
+ src: url('./assets/fonts/IBMPlexSans-Regular.woff2') format('woff2');
109
+ font-display: swap;
110
+ }
111
+
112
+ @font-face {
113
+ font-family: 'IBM Plex Sans';
114
+ font-style: italic;
115
+ font-weight: 400;
116
+ src: url('./assets/fonts/IBMPlexSans-Italic.woff2') format('woff2');
117
+ font-display: swap;
118
+ }
119
+
120
+ @font-face {
121
+ font-family: 'IBM Plex Sans';
122
+ font-style: normal;
123
+ font-weight: 500;
124
+ src: url('./assets/fonts/IBMPlexSans-Medium.woff2') format('woff2');
125
+ font-display: swap;
126
+ }
127
+
128
+ @font-face {
129
+ font-family: 'IBM Plex Sans';
130
+ font-style: italic;
131
+ font-weight: 500;
132
+ src: url('./assets/fonts/IBMPlexSans-MediumItalic.woff2') format('woff2');
133
+ font-display: swap;
134
+ }
135
+
136
+ @font-face {
137
+ font-family: 'IBM Plex Sans';
138
+ font-style: normal;
139
+ font-weight: 600;
140
+ src: url('./assets/fonts/IBMPlexSans-SemiBold.woff2') format('woff2');
141
+ font-display: swap;
142
+ }
143
+
144
+ @font-face {
145
+ font-family: 'IBM Plex Sans';
146
+ font-style: italic;
147
+ font-weight: 600;
148
+ src: url('./assets/fonts/IBMPlexSans-SemiBoldItalic.woff2') format('woff2');
149
+ font-display: swap;
150
+ }
151
+
152
+ @font-face {
153
+ font-family: 'IBM Plex Sans';
154
+ font-style: normal;
155
+ font-weight: 700;
156
+ src: url('./assets/fonts/IBMPlexSans-Bold.woff2') format('woff2');
157
+ font-display: swap;
158
+ }
159
+
160
+ @font-face {
161
+ font-family: 'IBM Plex Sans';
162
+ font-style: italic;
163
+ font-weight: 700;
164
+ src: url('./assets/fonts/IBMPlexSans-BoldItalic.woff2') format('woff2');
165
+ font-display: swap;
166
+ }