@synergy-design-system/mcp 1.31.0 → 1.33.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.
@@ -2,27 +2,131 @@
2
2
 
3
3
  ## Fonts
4
4
 
5
- Depending on the used theme (either SICK 2018 or SICK 2025) the Synergy Design System makes use of a specific typeface:
5
+ Synergy Design System uses these typefaces:
6
6
 
7
7
  | Theme | Typeface |
8
8
  | --------- | ----------- |
9
9
  | SICK 2018 | `Open Sans` |
10
10
  | SICK 2025 | `SICK Intl` |
11
11
 
12
- For the SICK 2025 theme there are some rules, how and when to use the different styles (like regular, semi-bold, bold, ...). For more information about this, have a look at the [SICK Brand Portal](https://brand.sick.com/document/145#/basiselemente/typografie/sick-intl).
12
+ For SICK 2025, see [SICK Brand Portal](https://brand.sick.com/document/145#/basiselemente/typografie/sick-intl) for style usage (regular, semi-bold, etc).
13
13
 
14
- Because there are various ways of loading fonts, depending on used bundler, pre- and postprocessors and usage of a CDN, Synergy does **not provide** this font.
15
- You need to include it into your own project.
14
+ ---
16
15
 
17
- The following information may be helpful to get you started including your own copy of `Open Sans` or `SICK Intl` in your project for quicker bootstrapping:
16
+ ## SICK 2018 Theme (Open Sans)
18
17
 
19
- ### Local Installation
18
+ ### Using `@fontsource` npm packages (Recommended)
20
19
 
21
- #### SICK 2018
20
+ Install the `@fontsource/open-sans` package into your project:
21
+
22
+ ```bash
23
+ npm install @fontsource/open-sans
24
+ ```
25
+
26
+ #### Vite/Webpack
27
+
28
+ ```javascript
29
+ import "@fontsource/open-sans/400.css";
30
+ import "@fontsource/open-sans/400-italic.css";
31
+ import "@fontsource/open-sans/600.css";
32
+ import "@fontsource/open-sans/600-italic.css";
33
+ import "@fontsource/open-sans/700.css";
34
+ import "@fontsource/open-sans/700-italic.css";
35
+ ```
36
+
37
+ #### Angular
38
+
39
+ Add to your `angular.json` file:
40
+
41
+ ```json
42
+ {
43
+ "projects": {
44
+ "project_name": {
45
+ "architect": {
46
+ "build": {
47
+ "options": {
48
+ "styles": [
49
+ "@fontsource/open-sans/400.css",
50
+ "@fontsource/open-sans/400-italic.css",
51
+ "@fontsource/open-sans/600.css",
52
+ "@fontsource/open-sans/600-italic.css",
53
+ "@fontsource/open-sans/700.css",
54
+ "@fontsource/open-sans/700-italic.css"
55
+ ]
56
+ }
57
+ }
58
+ }
59
+ }
60
+ }
61
+ }
62
+ ```
63
+
64
+ ### Using SICK CDN for Open Sans
65
+
66
+ ```css
67
+ /* Regular */
68
+ @font-face {
69
+ font-display: swap;
70
+ font-family: "Open Sans";
71
+ font-style: normal;
72
+ font-weight: 400;
73
+ src:
74
+ url("https://www.sick.com/media/fonts/opensans-v1/Regular/OpenSans-Regular.woff2")
75
+ format("woff2"),
76
+ url("https://www.sick.com/media/fonts/opensans-v1/Regular/OpenSans-Regular.woff")
77
+ format("woff"),
78
+ url("https://www.sick.com/media/fonts/opensans-v1/Regular/OpenSans-Regular.ttf")
79
+ format("truetype");
80
+ }
81
+
82
+ /* Semi Bold */
83
+ @font-face {
84
+ font-display: swap;
85
+ font-family: "Open Sans";
86
+ font-style: normal;
87
+ font-weight: 600;
88
+ src:
89
+ url("https://www.sick.com/media/fonts/opensans-v1/SemiBold/OpenSans-SemiBold.woff2")
90
+ format("woff2"),
91
+ url("https://www.sick.com/media/fonts/opensans-v1/SemiBold/OpenSans-SemiBold.woff")
92
+ format("woff"),
93
+ url("https://www.sick.com/media/fonts/opensans-v1/SemiBold/OpenSans-SemiBold.ttf")
94
+ format("truetype");
95
+ }
96
+
97
+ /* Bold */
98
+ @font-face {
99
+ font-display: swap;
100
+ font-family: "Open Sans";
101
+ font-style: normal;
102
+ font-weight: 700;
103
+ src:
104
+ url("https://www.sick.com/media/fonts/opensans-v1/Bold/OpenSans-Bold.woff2")
105
+ format("woff2"),
106
+ url("https://www.sick.com/media/fonts/opensans-v1/Bold/OpenSans-Bold.woff")
107
+ format("woff"),
108
+ url("https://www.sick.com/media/fonts/opensans-v1/Bold/OpenSans-Bold.ttf")
109
+ format("truetype");
110
+ }
111
+ ```
112
+
113
+ For better performance, add this preload to your HTML:
114
+
115
+ ```html
116
+ <link
117
+ rel="preload"
118
+ href="https://www.sick.com/media/fonts/opensans-v1/Regular/OpenSans-Regular.woff2"
119
+ as="font"
120
+ type="font/woff2"
121
+ crossorigin
122
+ />
123
+ ```
124
+
125
+ ### Manual Installation
22
126
 
23
127
  1. Download the `Open Sans` font from the [SICK Brand Portal](https://brand.sick.com/document/49#/-/resources-1).
24
128
  2. Extract the ZIP file to a destination reachable by your project (e.g. a `public` folder).
25
- 3. Include the font in your project by adding the following CSS to your project (where `PUBLIC_PATH` is the path to the folder containing the font files).
129
+ 3. Include the font in your project by adding the following CSS (where `PUBLIC_PATH` is the path to the folder containing the font files):
26
130
 
27
131
  ```css
28
132
  @font-face {
@@ -75,56 +179,34 @@ The following information may be helpful to get you started including your own c
75
179
  }
76
180
  ```
77
181
 
78
- #### SICK 2025
182
+ ---
79
183
 
80
- 1. Download the `SICK Intl` font from the [SICK Brand Portal](https://brand.sick.com/document/145#/basiselemente/typografie/sick-intl).
81
- 2. Extract the ZIP file to a destination reachable by your project (e.g. a `public` folder).
82
- 3. Include the font in your project by adding the following CSS to your project (where `PUBLIC_PATH` is the path to the folder containing the font files).
184
+ ## SICK 2025 Theme (SICK Intl)
83
185
 
84
- ```css
85
- @font-face {
86
- font-display: swap;
87
- font-family: "SICK Intl";
88
- font-style: normal;
89
- font-weight: 400;
90
- src: url("/PUBLIC_PATH/SICKIntl/SICKIntl-Regular.ttf") format("truetype");
91
- }
186
+ ### Using @synergy-design-system/fonts (Recommended)
92
187
 
93
- @font-face {
94
- font-display: swap;
95
- font-family: "SICK Intl";
96
- font-style: normal;
97
- font-weight: 600;
98
- src: url("/PUBLIC_PATH/SICKIntl/SICKIntl-Semibold.ttf") format("truetype");
99
- }
100
- ```
101
-
102
- ### Installing via local npm package (e.g. for vite or webpack based setups)
188
+ Install the fonts package:
103
189
 
104
- #### SICK 2018
190
+ ```bash
191
+ npm install @synergy-design-system/fonts
192
+ ```
105
193
 
106
- 1. Install the `@fontsource/open-sans` package into your project.
107
- 2. Include the font in your project by adding the following import statements to your project:
194
+ #### Vite/Webpack
108
195
 
109
- ```js
110
- import "@fontsource/open-sans/400.css";
111
- import "@fontsource/open-sans/400-italic.css";
112
- import "@fontsource/open-sans/600.css";
113
- import "@fontsource/open-sans/600-italic.css";
114
- import "@fontsource/open-sans/700.css";
115
- import "@fontsource/open-sans/700-italic.css";
196
+ ```javascript
197
+ import "@synergy-design-system/fonts";
116
198
  ```
117
199
 
118
- #### SICK 2025
119
-
120
- There is no way to install the `SICK Intl` typeface via a npm package as it is not available.
200
+ #### Angular
121
201
 
122
- ### Installing via local npm package (angular)
202
+ Import in your main styles file:
123
203
 
124
- #### SICK 2018
204
+ ```css
205
+ /* styles.css */
206
+ @import "@synergy-design-system/fonts";
207
+ ```
125
208
 
126
- 1. Install the `@fontsource/open-sans` package into your project.
127
- 2. Adjust your `angular.json` file to include the needed stylesheets (where project_name is the name of your project):
209
+ Or add to your `angular.json` file:
128
210
 
129
211
  ```json
130
212
  {
@@ -133,14 +215,7 @@ There is no way to install the `SICK Intl` typeface via a npm package as it is n
133
215
  "architect": {
134
216
  "build": {
135
217
  "options": {
136
- "styles": [
137
- "@fontsource/open-sans/400.css",
138
- "@fontsource/open-sans/400-italic.css",
139
- "@fontsource/open-sans/600.css",
140
- "@fontsource/open-sans/600-italic.css",
141
- "@fontsource/open-sans/700.css",
142
- "@fontsource/open-sans/700-italic.css"
143
- ]
218
+ "styles": ["@synergy-design-system/fonts/src/sick-intl/font.css"]
144
219
  }
145
220
  }
146
221
  }
@@ -149,114 +224,96 @@ There is no way to install the `SICK Intl` typeface via a npm package as it is n
149
224
  }
150
225
  ```
151
226
 
152
- #### SICK 2025
153
-
154
- There is no way to install the `SICK Intl` typeface via a npm package as it is not available.
155
-
156
- ### Using the SICK CDN
157
-
158
- This is the simplest default font behavior. The typefaces are loaded from the SICK CDN.
159
-
160
- #### SICK 2018
227
+ ### Using SICK CDN
161
228
 
162
229
  ```css
163
230
  /* Regular */
164
231
  @font-face {
165
232
  font-display: swap;
166
- font-family: "Open Sans";
233
+ font-family: "SICK Intl";
167
234
  font-style: normal;
168
235
  font-weight: 400;
169
- src:
170
- url("https://www.sick.com/media/fonts/opensans-v1/Regular/OpenSans-Regular.woff2")
171
- format("woff2"),
172
- url("https://www.sick.com/media/fonts/opensans-v1/Regular/OpenSans-Regular.woff")
173
- format("woff"),
174
- url("https://www.sick.com/media/fonts/opensans-v1/Regular/OpenSans-Regular.ttf")
175
- format("truetype");
236
+ src: url("https://www.sick.com/media/fonts/sickintl-v2/SICKIntl-Regular.woff2")
237
+ format("woff2");
176
238
  }
177
239
 
178
240
  /* Semi Bold */
179
241
  @font-face {
180
242
  font-display: swap;
181
- font-family: "Open Sans";
243
+ font-family: "SICK Intl";
182
244
  font-style: normal;
183
245
  font-weight: 600;
184
- src:
185
- url("https://www.sick.com/media/fonts/opensans-v1/SemiBold/OpenSans-SemiBold.woff2")
186
- format("woff2"),
187
- url("https://www.sick.com/media/fonts/opensans-v1/SemiBold/OpenSans-SemiBold.woff")
188
- format("woff"),
189
- url("https://www.sick.com/media/fonts/opensans-v1/SemiBold/OpenSans-SemiBold.ttf")
190
- format("truetype");
191
- }
192
-
193
- /* Bold */
194
- @font-face {
195
- font-display: swap;
196
- font-family: "Open Sans";
197
- font-style: normal;
198
- font-weight: 700;
199
- src:
200
- url("https://www.sick.com/media/fonts/opensans-v1/Bold/OpenSans-Bold.woff2")
201
- format("woff2"),
202
- url("https://www.sick.com/media/fonts/opensans-v1/Bold/OpenSans-Bold.woff")
203
- format("woff"),
204
- url("https://www.sick.com/media/fonts/opensans-v1/Bold/OpenSans-Bold.ttf")
205
- format("truetype");
246
+ src: url("https://www.sick.com/media/fonts/sickintl-v2/SICKIntl-Semibold.woff2")
247
+ format("woff2");
206
248
  }
207
249
  ```
208
250
 
209
- For better performance, you may also add the following statement to your HTML:
251
+ For better performance, add this preload to your HTML:
210
252
 
211
253
  ```html
212
254
  <link
213
255
  rel="preload"
214
- href="https://www.sick.com/media/fonts/opensans-v1/Regular/OpenSans-Regular.woff2"
256
+ href="https://www.sick.com/media/fonts/sickintl-v2/SICKIntl-Regular.woff2"
257
+ as="font"
258
+ type="font/woff2"
259
+ crossorigin
260
+ />
261
+ <link
262
+ rel="preload"
263
+ href="https://www.sick.com/media/fonts/sickintl-v2/SICKIntl-Semibold.woff2"
215
264
  as="font"
216
265
  type="font/woff2"
217
266
  crossorigin
218
267
  />
219
268
  ```
220
269
 
221
- #### SICK 2025
270
+ ### Manual Installation
271
+
272
+ 1. Install `@synergy-design-system/fonts`.
273
+ 2. Copy the font from `node_modules/@synergy-design-system/fonts/src/sick-intl` to a destination reachable by your project (e.g. a public folder).
274
+ 3. Include the font with custom CSS (where `PUBLIC_PATH` is the path to the folder containing the font files):
222
275
 
223
276
  ```css
224
- /* Regular */
225
277
  @font-face {
226
278
  font-display: swap;
227
- font-family: "Open Sans";
279
+ font-family: "SICK Intl";
228
280
  font-style: normal;
229
281
  font-weight: 400;
230
- src:
231
- url("https://www.sick.com/media/fonts/sickintl-v1/regular/SICKIntl-Regular.woff2")
232
- format("woff2"),
233
- url("https://www.sick.com/media/fonts/sickintl-v1/regular/SICKIntl-Regular.ttf")
234
- format("truetype");
282
+ src: url("/PUBLIC_PATH/sick-intl/SICKIntl-Regular.woff2") format("woff2");
235
283
  }
236
284
 
237
- /* Semi Bold */
238
285
  @font-face {
239
286
  font-display: swap;
240
- font-family: "Open Sans";
287
+ font-family: "SICK Intl";
241
288
  font-style: normal;
242
289
  font-weight: 600;
243
- src:
244
- url("https://www.sick.com/media/fonts/sickintl-v1/semibold/SICKIntl-Semibold.woff2")
245
- format("woff2"),
246
- format("woff"),
247
- url("https://www.sick.com/media/fonts/sickintl-v1/semibold/SICKIntl-Semibold.ttf")
248
- format("truetype");
290
+ src: url("/PUBLIC_PATH/sick-intl/SICKIntl-Semibold.woff2") format("woff2");
249
291
  }
250
292
  ```
251
293
 
252
- For better performance, you may also add the following statement to your HTML:
294
+ ### Manual Installation (Angular)
253
295
 
254
- ```html
255
- <link
256
- rel="preload"
257
- href="https://www.sick.com/media/fonts/sickintl-v1/regular/SICKIntl-Regular.woff2"
258
- as="font"
259
- type="font/woff2"
260
- crossorigin
261
- />
296
+ 1. Install the `@synergy-design-system/fonts` package.
297
+ 2. Configure your `angular.json` file to include the fonts:
298
+
299
+ ```json
300
+ {
301
+ "projects": {
302
+ "project_name": {
303
+ "architect": {
304
+ "build": {
305
+ "options": {
306
+ "assets": [
307
+ {
308
+ "glob": "**/*",
309
+ "input": "./node_modules/@synergy-design-system/fonts/src/sick-intl",
310
+ "output": "/assets/fonts"
311
+ }
312
+ ]
313
+ }
314
+ }
315
+ }
316
+ }
317
+ }
318
+ }
262
319
  ```
package/package.json CHANGED
@@ -29,10 +29,11 @@
29
29
  "ts-jest": "^29.4.0",
30
30
  "typescript": "^5.9.3",
31
31
  "@synergy-design-system/docs": "0.1.0",
32
- "@synergy-design-system/components": "2.68.0",
32
+ "@synergy-design-system/components": "2.69.0",
33
33
  "@synergy-design-system/eslint-config-syn": "^0.1.0",
34
34
  "@synergy-design-system/styles": "1.9.0",
35
- "@synergy-design-system/tokens": "^2.45.0"
35
+ "@synergy-design-system/tokens": "^2.45.0",
36
+ "@synergy-design-system/fonts": "1.0.0"
36
37
  },
37
38
  "exports": {
38
39
  ".": {
@@ -66,7 +67,7 @@
66
67
  "directory": "packages/mcp"
67
68
  },
68
69
  "type": "module",
69
- "version": "1.31.0",
70
+ "version": "1.33.0",
70
71
  "scripts": {
71
72
  "build": "pnpm run build:ts && pnpm run build:metadata && pnpm build:hash",
72
73
  "build:all": "pnpm run build && pnpm run build:storybook",