autoprefixer 10.4.24 → 10.4.26

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.
@@ -338,6 +338,9 @@ class Gradient extends Value {
338
338
  ) {
339
339
  return false
340
340
  }
341
+ if (string.includes('var(')) {
342
+ return false
343
+ }
341
344
 
342
345
  let params = [[]]
343
346
  for (let i of nodes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoprefixer",
3
- "version": "10.4.24",
3
+ "version": "10.4.26",
4
4
  "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"
@@ -40,9 +40,14 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "browserslist": "^4.28.1",
43
- "caniuse-lite": "^1.0.30001766",
43
+ "caniuse-lite": "^1.0.30001774",
44
44
  "fraction.js": "^5.3.4",
45
45
  "picocolors": "^1.1.1",
46
46
  "postcss-value-parser": "^4.2.0"
47
+ },
48
+ "pnpm": {
49
+ "patchedDependencies": {
50
+ "yargs@17.7.2": "patches/yargs@17.7.2.patch"
51
+ }
47
52
  }
48
53
  }