@db-ux/core-foundations 4.0.4 → 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,10 +1,14 @@
1
1
  # @db-ux/core-foundations
2
2
 
3
- ## 4.0.4
3
+ ## 4.1.0
4
4
 
5
5
  _version bump_
6
6
 
7
7
 
8
+ ## 4.0.4
9
+
10
+ _version bump_
11
+
8
12
  ## 4.0.3
9
13
 
10
14
  _version bump_
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.4",
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": {