@db-ux/core-foundations 4.2.6 → 4.3.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,15 @@
1
1
  # @db-ux/core-foundations
2
2
 
3
+ ## 4.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - _version bump_ (staying in sync with the Figma library) - [see commit 9e03702](https://github.com/db-ux-design-system/core-web/commit/9e0370266511fa99085ff837e430ad83f28856ec)
8
+
3
9
  ## 4.2.6
4
10
 
5
11
  _version bump_
6
12
 
7
-
8
13
  ## 4.2.5
9
14
 
10
15
  _version bump_
@@ -1,4 +1,4 @@
1
- # compare to https://symbl.cc/de/unicode-table/
1
+ # compare to https://symbl.cc/de/unicode-table/ /// codespell:ignore symbl
2
2
  U+0000-024F # Latin (all)
3
3
  U+0020,U+0009,U+000A,U+000D # white space characters
4
4
  U+00E4,U+00F6,U+00FC,U+00DF # German characters
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/core-foundations",
3
- "version": "4.2.6",
3
+ "version": "4.3.0",
4
4
  "type": "module",
5
5
  "description": "Provides basic tokens and assets based on DB UX Design System (Version 3).",
6
6
  "repository": {
@@ -18,7 +18,7 @@
18
18
  "build"
19
19
  ],
20
20
  "scripts": {
21
- "build": "npm-run-all build:*",
21
+ "build": "npm-run-all copy-prepare:* build:*",
22
22
  "build:01_normalize": "npm-run-all copy-prepare:*",
23
23
  "build:02_copy": "npm run copy:scss",
24
24
  "build:03_css": "sass --no-source-map --load-path=node_modules/ --load-path=../../node_modules/ build/styles --fatal-deprecation=mixed-decls",
@@ -38,31 +38,30 @@
38
38
  "copy-prepare:icon-overview": "tsx scripts/local/generate-icon-overview.ts && prettier dev/icons.html --write",
39
39
  "copy-prepare:normalize": "cpr ../../node_modules/@csstools/normalize.css/normalize.css scss/_normalize.scss --overwrite",
40
40
  "copy:scss": "cpr scss build/styles --overwrite",
41
- "dev": "vite --open",
41
+ "dev": "npm-run-all copy-prepare:* dev:*",
42
+ "dev:vite": "vite --open",
42
43
  "generate:fallback-icon-font": "tsx scripts/local/generate-fallback-icon-font.ts",
43
44
  "generate:fonts": "tsx assets/fonts/generate-eu-fonts.ts",
44
45
  "generate:icons": "tsx scripts/local/generate-icon-font.ts",
45
- "prebuild": "npm-run-all copy-prepare:*",
46
- "predev": "npm-run-all copy-prepare:*",
47
- "prestart": "npm-run-all copy-prepare:*",
48
46
  "regenerate:screenshots": "npx playwright test --config ./test/playwright.config.js --update-snapshots",
49
- "start": "nodemon --config nodemon.json",
47
+ "start": "npm-run-all copy-prepare:* start:*",
48
+ "start:nodemon": "nodemon --config nodemon.json",
50
49
  "test:e2e": "npx playwright test --config=./test/playwright.config.js"
51
50
  },
52
51
  "devDependencies": {
53
52
  "@csstools/normalize.css": "12.1.1",
54
53
  "@db-ux/icon-font-tools": "0.3.6",
55
- "@playwright/test": "1.56.1",
54
+ "@playwright/test": "1.57.0",
56
55
  "cpr": "3.0.1",
57
56
  "cssnano": "7.1.2",
58
57
  "dotenv": "17.2.3",
59
- "glob": "11.1.0",
58
+ "glob": "13.0.0",
60
59
  "nodemon": "3.1.11",
61
60
  "prettier": "3.7.4",
62
- "sass": "1.85.0",
61
+ "sass": "1.85.1",
63
62
  "tsx": "4.21.0",
64
63
  "typescript": "5.9.3",
65
- "vite": "7.3.0"
64
+ "vite": "7.3.1"
66
65
  },
67
66
  "publishConfig": {
68
67
  "registry": "https://registry.npmjs.org/",