autoprefixer 10.3.3 → 10.3.4

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/data/prefixes.js +9 -1
  2. package/package.json +1 -1
package/data/prefixes.js CHANGED
@@ -583,7 +583,15 @@ f(prefixIntrinsic, browsers =>
583
583
  )
584
584
 
585
585
  f(prefixIntrinsic, { match: /x|\s#4/ }, browsers =>
586
- prefix(['fill', 'fill-available', 'stretch'], {
586
+ prefix(['fill', 'fill-available'], {
587
+ props: sizeProps,
588
+ feature: 'intrinsic-width',
589
+ browsers
590
+ })
591
+ )
592
+
593
+ f(prefixIntrinsic, { match: /x|\s#5/ }, browsers =>
594
+ prefix(['stretch'], {
587
595
  props: sizeProps,
588
596
  feature: 'intrinsic-width',
589
597
  browsers
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoprefixer",
3
- "version": "10.3.3",
3
+ "version": "10.3.4",
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"