@db-ux/core-postcss-plugin 4.7.3 → 4.8.1-fix-publish-f7808e2

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,9 +1,18 @@
1
1
  # @db-ux/core-postcss-plugin
2
2
 
3
- ## 4.7.3
3
+ ## 4.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: color deduplication merging transparent and semi-transparent values with the same hex base into one value - [see commit d7ef821](https://github.com/db-ux-design-system/core-web/commit/d7ef8216e0d7da85e9694ad1432a37e81db4d919)
8
+
9
+ ## 4.8.0
4
10
 
5
11
  _version bump_
6
12
 
13
+ ## 4.7.3
14
+
15
+ _version bump_
7
16
 
8
17
  ## 4.7.2
9
18
 
@@ -132,7 +132,9 @@ export const collectVarsWithLayer = (root, varMap, propertyNames, dynamicVars, p
132
132
  const addVar = (prop, value, layer) => {
133
133
  const entries = varMap.get(prop);
134
134
  if (entries) {
135
- if (entries.some((e) => e.file === file && e.layer === layer))
135
+ if (entries.some((e) => e.file === file &&
136
+ e.layer === layer &&
137
+ e.value === value))
136
138
  return;
137
139
  entries.push({ value, layer, file });
138
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/core-postcss-plugin",
3
- "version": "4.7.3",
3
+ "version": "4.8.1-fix-publish-f7808e2",
4
4
  "type": "module",
5
5
  "description": "PostCSS plugins for DB UX Design System",
6
6
  "repository": {
@@ -33,7 +33,7 @@
33
33
  "npm-run-all2": "8.0.4",
34
34
  "postcss": "8.5.14",
35
35
  "typescript": "5.9.3",
36
- "vitest": "4.1.5"
36
+ "vitest": "4.1.6"
37
37
  },
38
38
  "publishConfig": {
39
39
  "registry": "https://registry.npmjs.org/",