@db-ux/core-foundations 4.2.5 → 4.2.7-consolidation2-66e78e5

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -22
  2. package/package.json +11 -12
package/CHANGELOG.md CHANGED
@@ -1,10 +1,14 @@
1
1
  # @db-ux/core-foundations
2
2
 
3
- ## 4.2.5
3
+ ## 4.2.6
4
4
 
5
5
  _version bump_
6
6
 
7
7
 
8
+ ## 4.2.5
9
+
10
+ _version bump_
11
+
8
12
  ## 4.2.4
9
13
 
10
14
  ### Patch Changes
@@ -48,28 +52,28 @@ _version bump_
48
52
  ### Patch Changes
49
53
 
50
54
  - chore: update instructions files for better copilot outputs - [see commit e4bc905](https://github.com/db-ux-design-system/core-web/commit/e4bc90508479387371d816d5776f9f568aa5fb82):
51
- - fix: add some missing variables
55
+ - fix: add some missing variables
52
56
 
53
57
  - 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):
54
- - Create separate CSS files for each color
55
- - Move colors.css to colors/ subdirectory with adaptive theme
56
- - Add colors/index.css that imports all color variants
57
- - Update theme/index.css to import from colors/index.css
58
- - burgundy
59
- - critical
60
- - cyan
61
- - green
62
- - informational
63
- - light-green
64
- - neutral
65
- - orange
66
- - pink
67
- - red
68
- - successful
69
- - turquoise
70
- - violet
71
- - warning
72
- - yellow
58
+ - Create separate CSS files for each color
59
+ - Move colors.css to colors/ subdirectory with adaptive theme
60
+ - Add colors/index.css that imports all color variants
61
+ - Update theme/index.css to import from colors/index.css
62
+ - burgundy
63
+ - critical
64
+ - cyan
65
+ - green
66
+ - informational
67
+ - light-green
68
+ - neutral
69
+ - orange
70
+ - pink
71
+ - red
72
+ - successful
73
+ - turquoise
74
+ - violet
75
+ - warning
76
+ - yellow
73
77
 
74
78
  ## 4.0.1
75
79
 
@@ -96,7 +100,7 @@ _version bump_
96
100
  ### Patch Changes
97
101
 
98
102
  - enabled [`@db-ux/agent-cli`](https://www.npmjs.com/package/@db-ux/agent-cli) for every package - [see commit 0233048](https://github.com/db-ux-design-system/core-web/commit/023304869e61f5a506dca66a22d69e5f3d70f4d0):
99
- - auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
103
+ - auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
100
104
 
101
105
  ## 3.1.17
102
106
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/core-foundations",
3
- "version": "4.2.5",
3
+ "version": "4.2.7-consolidation2-66e78e5",
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
- "prettier": "3.7.3",
62
- "sass": "1.85.0",
60
+ "prettier": "3.7.4",
61
+ "sass": "1.85.1",
63
62
  "tsx": "4.21.0",
64
63
  "typescript": "5.9.3",
65
- "vite": "7.2.6"
64
+ "vite": "7.3.1"
66
65
  },
67
66
  "publishConfig": {
68
67
  "registry": "https://registry.npmjs.org/",