autoprefixer 10.4.10 → 10.4.11

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 +36 -15
  2. package/package.json +1 -1
package/data/prefixes.js CHANGED
@@ -659,21 +659,6 @@ f(prefixPointer, browsers =>
659
659
  // Text decoration
660
660
  let prefixDecoration = require('caniuse-lite/data/features/text-decoration')
661
661
 
662
- f(prefixDecoration, browsers =>
663
- prefix(
664
- [
665
- 'text-decoration-style',
666
- 'text-decoration-color',
667
- 'text-decoration-line',
668
- 'text-decoration'
669
- ],
670
- {
671
- feature: 'text-decoration',
672
- browsers
673
- }
674
- )
675
- )
676
-
677
662
  f(prefixDecoration, { match: /x.*#[235]/ }, browsers =>
678
663
  prefix(['text-decoration-skip', 'text-decoration-skip-ink'], {
679
664
  feature: 'text-decoration',
@@ -681,6 +666,42 @@ f(prefixDecoration, { match: /x.*#[235]/ }, browsers =>
681
666
  })
682
667
  )
683
668
 
669
+ let prefixDecorationShorthand = require('caniuse-lite/data/features/mdn-text-decoration-shorthand')
670
+
671
+ f(prefixDecorationShorthand, browsers =>
672
+ prefix(['text-decoration'], {
673
+ feature: 'text-decoration',
674
+ browsers
675
+ })
676
+ )
677
+
678
+ let prefixDecorationColor = require('caniuse-lite/data/features/mdn-text-decoration-color')
679
+
680
+ f(prefixDecorationColor, browsers =>
681
+ prefix(['text-decoration-color'], {
682
+ feature: 'text-decoration',
683
+ browsers
684
+ })
685
+ )
686
+
687
+ let prefixDecorationLine = require('caniuse-lite/data/features/mdn-text-decoration-line')
688
+
689
+ f(prefixDecorationLine, browsers =>
690
+ prefix(['text-decoration-line'], {
691
+ feature: 'text-decoration',
692
+ browsers
693
+ })
694
+ )
695
+
696
+ let prefixDecorationStyle = require('caniuse-lite/data/features/mdn-text-decoration-style')
697
+
698
+ f(prefixDecorationStyle, browsers =>
699
+ prefix(['text-decoration-style'], {
700
+ feature: 'text-decoration',
701
+ browsers
702
+ })
703
+ )
704
+
684
705
  // Text Size Adjust
685
706
  let prefixTextSizeAdjust = require('caniuse-lite/data/features/text-size-adjust')
686
707
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoprefixer",
3
- "version": "10.4.10",
3
+ "version": "10.4.11",
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"