@db-ux/core-foundations 4.0.3 → 4.1.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
@@ -1,18 +1,26 @@
1
1
  # @db-ux/core-foundations
2
2
 
3
- ## 4.0.3
3
+ ## 4.1.0
4
+
5
+ _version bump_
6
+
7
+
8
+ ## 4.0.4
4
9
 
5
10
  _version bump_
6
11
 
12
+ ## 4.0.3
13
+
14
+ _version bump_
7
15
 
8
16
  ## 4.0.2
9
17
 
10
18
  ### Patch Changes
11
19
 
12
- - chore: update instructions files for better copilot outputs - [see commit 797a114](https://github.com/db-ux-design-system/core-web/commit/797a114d7abc680667276f8ffc2f7f4482d89d3e):
20
+ - chore: update instructions files for better copilot outputs - [see commit e4bc905](https://github.com/db-ux-design-system/core-web/commit/e4bc90508479387371d816d5776f9f568aa5fb82):
13
21
  - fix: add some missing variables
14
22
 
15
- - fix(tailwind): add individual color theme files for all color variants - [see commit 797a114](https://github.com/db-ux-design-system/core-web/commit/797a114d7abc680667276f8ffc2f7f4482d89d3e):
23
+ - fix(tailwind): add individual color theme files for all color variants - [see commit e8d58bd](https://github.com/db-ux-design-system/core-web/commit/e8d58bde01039a3d233105c2c72efa71c619c4b4):
16
24
  - Create separate CSS files for each color
17
25
  - Move colors.css to colors/ subdirectory with adaptive theme
18
26
  - Add colors/index.css that imports all color variants
package/README.md CHANGED
@@ -228,7 +228,7 @@ Check the required imports for [CSS](https://design-system.deutschebahn.com/core
228
228
 
229
229
  After this you can extend your tailwind config like this:
230
230
 
231
- ##### Javascript
231
+ ##### JavaScript
232
232
 
233
233
  ```javascript
234
234
  //tailwind.config.js
@@ -250,7 +250,7 @@ export default {
250
250
  };
251
251
  ```
252
252
 
253
- ##### Typescript
253
+ ##### TypeScript
254
254
 
255
255
  ```typescript
256
256
  //tailwind.config.ts
Binary file
@@ -27,7 +27,7 @@ const generateFonts = async () => {
27
27
  try {
28
28
  const files = await glob(`${__dirname}/*.ttf`);
29
29
 
30
- for (const file of files) {
30
+ for (const file of files.map(f=> f.replaceAll('\\', '/'))) {
31
31
  // Security: Validate that the file is within the expected directory
32
32
  // and has the expected extension to prevent path traversal attacks
33
33
  if (!file.startsWith(__dirname) || !file.endsWith('.ttf')) {
@@ -12,3 +12,4 @@ U+010C, U+010D, U+010E, U+010F, U+011A, U+011B, U+0147, U+0148, U+0158, U+0159,
12
12
  U+00E9, U+00E8, U+00EB, U+00E4, U+00FC, U+00F6, U+00EF, U+00C9, U+00C8, U+00CB, U+00C4, U+00DC, U+00D6, U+00CF # Netherlands characters
13
13
  U+0391-03A9, U+03B1-03C9 # Greek characters
14
14
  U+0410-042F, U+0430-044F # Cyrillic characters
15
+ U+0404,U+0406-0407,U+0456-0457,U+0413-0419,U+0433-0439,U+041A-041F,U+043A-043F,U+0420-0429,U+0440-0449,U+0490-0491 # Ukrainian characters
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/core-foundations",
3
- "version": "4.0.3",
3
+ "version": "4.1.0",
4
4
  "type": "module",
5
5
  "description": "Provides basic tokens and assets based on DB UX Design System (Version 3).",
6
6
  "repository": {
@@ -53,7 +53,7 @@
53
53
  "devDependencies": {
54
54
  "@csstools/normalize.css": "12.1.1",
55
55
  "@db-ux/icon-font-tools": "0.3.4",
56
- "@playwright/test": "1.56.0",
56
+ "@playwright/test": "1.56.1",
57
57
  "cpr": "3.0.1",
58
58
  "cssnano": "7.1.1",
59
59
  "dotenv": "17.2.3",