autoprefixer 10.4.13 → 10.4.15

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 (44) hide show
  1. package/README.md +4 -4
  2. package/data/prefixes.js +187 -183
  3. package/lib/autoprefixer.js +16 -16
  4. package/lib/browsers.js +13 -13
  5. package/lib/declaration.js +92 -92
  6. package/lib/hacks/align-content.js +9 -9
  7. package/lib/hacks/align-items.js +7 -7
  8. package/lib/hacks/align-self.js +7 -7
  9. package/lib/hacks/block-logical.js +10 -10
  10. package/lib/hacks/border-radius.js +7 -7
  11. package/lib/hacks/break-props.js +16 -16
  12. package/lib/hacks/display-flex.js +9 -9
  13. package/lib/hacks/flex-direction.js +7 -7
  14. package/lib/hacks/flex.js +7 -7
  15. package/lib/hacks/gradient.js +259 -259
  16. package/lib/hacks/grid-column-align.js +6 -6
  17. package/lib/hacks/grid-row-align.js +6 -6
  18. package/lib/hacks/grid-rows-columns.js +23 -23
  19. package/lib/hacks/grid-template-areas.js +12 -12
  20. package/lib/hacks/grid-template.js +9 -9
  21. package/lib/hacks/grid-utils.js +26 -26
  22. package/lib/hacks/image-rendering.js +14 -14
  23. package/lib/hacks/inline-logical.js +6 -6
  24. package/lib/hacks/intrinsic.js +17 -17
  25. package/lib/hacks/justify-content.js +9 -9
  26. package/lib/hacks/mask-composite.js +2 -2
  27. package/lib/hacks/order.js +7 -7
  28. package/lib/hacks/overscroll-behavior.js +6 -6
  29. package/lib/hacks/pixelated.js +10 -10
  30. package/lib/hacks/print-color-adjust.js +7 -7
  31. package/lib/hacks/transform-decl.js +25 -25
  32. package/lib/hacks/user-select.js +10 -10
  33. package/lib/hacks/writing-mode.js +4 -4
  34. package/lib/info.js +6 -6
  35. package/lib/old-selector.js +16 -16
  36. package/lib/prefixer.js +20 -20
  37. package/lib/prefixes.js +124 -124
  38. package/lib/processor.js +159 -159
  39. package/lib/resolution.js +17 -17
  40. package/lib/selector.js +67 -67
  41. package/lib/supports.js +167 -167
  42. package/lib/transition.js +118 -118
  43. package/lib/value.js +26 -26
  44. package/package.json +7 -3
package/data/prefixes.js CHANGED
@@ -1,4 +1,4 @@
1
- let unpack = require('caniuse-lite').feature
1
+ let unpack = require('caniuse-lite/dist/unpacker/feature')
2
2
 
3
3
  function browsersSort(a, b) {
4
4
  a = a.split(' ')
@@ -68,9 +68,9 @@ f(prefixBorderRadius, browsers =>
68
68
  'border-bottom-left-radius'
69
69
  ],
70
70
  {
71
- mistakes: ['-khtml-', '-ms-', '-o-'],
71
+ browsers,
72
72
  feature: 'border-radius',
73
- browsers
73
+ mistakes: ['-khtml-', '-ms-', '-o-']
74
74
  }
75
75
  )
76
76
  )
@@ -80,9 +80,9 @@ let prefixBoxshadow = require('caniuse-lite/data/features/css-boxshadow')
80
80
 
81
81
  f(prefixBoxshadow, browsers =>
82
82
  prefix(['box-shadow'], {
83
- mistakes: ['-khtml-'],
83
+ browsers,
84
84
  feature: 'css-boxshadow',
85
- browsers
85
+ mistakes: ['-khtml-']
86
86
  })
87
87
  )
88
88
 
@@ -104,9 +104,9 @@ f(prefixAnimation, browsers =>
104
104
  '@keyframes'
105
105
  ],
106
106
  {
107
- mistakes: ['-khtml-', '-ms-'],
107
+ browsers,
108
108
  feature: 'css-animation',
109
- browsers
109
+ mistakes: ['-khtml-', '-ms-']
110
110
  }
111
111
  )
112
112
  )
@@ -124,9 +124,9 @@ f(prefixTransition, browsers =>
124
124
  'transition-timing-function'
125
125
  ],
126
126
  {
127
- mistakes: ['-khtml-', '-ms-'],
128
127
  browsers,
129
- feature: 'css-transitions'
128
+ feature: 'css-transitions',
129
+ mistakes: ['-khtml-', '-ms-']
130
130
  }
131
131
  )
132
132
  )
@@ -136,8 +136,8 @@ let prefixTransform2d = require('caniuse-lite/data/features/transforms2d')
136
136
 
137
137
  f(prefixTransform2d, browsers =>
138
138
  prefix(['transform', 'transform-origin'], {
139
- feature: 'transforms2d',
140
- browsers
139
+ browsers,
140
+ feature: 'transforms2d'
141
141
  })
142
142
  )
143
143
 
@@ -146,21 +146,21 @@ let prefixTransforms3d = require('caniuse-lite/data/features/transforms3d')
146
146
 
147
147
  f(prefixTransforms3d, browsers => {
148
148
  prefix(['perspective', 'perspective-origin'], {
149
- feature: 'transforms3d',
150
- browsers
149
+ browsers,
150
+ feature: 'transforms3d'
151
151
  })
152
152
  return prefix(['transform-style'], {
153
- mistakes: ['-ms-', '-o-'],
154
153
  browsers,
155
- feature: 'transforms3d'
154
+ feature: 'transforms3d',
155
+ mistakes: ['-ms-', '-o-']
156
156
  })
157
157
  })
158
158
 
159
159
  f(prefixTransforms3d, { match: /y\sx|y\s#2/ }, browsers =>
160
160
  prefix(['backface-visibility'], {
161
- mistakes: ['-ms-', '-o-'],
161
+ browsers,
162
162
  feature: 'transforms3d',
163
- browsers
163
+ mistakes: ['-ms-', '-o-']
164
164
  })
165
165
  )
166
166
 
@@ -176,6 +176,9 @@ f(prefixGradients, { match: /y\sx/ }, browsers =>
176
176
  'repeating-radial-gradient'
177
177
  ],
178
178
  {
179
+ browsers,
180
+ feature: 'css-gradients',
181
+ mistakes: ['-ms-'],
179
182
  props: [
180
183
  'background',
181
184
  'background-image',
@@ -185,10 +188,7 @@ f(prefixGradients, { match: /y\sx/ }, browsers =>
185
188
  'list-style-image',
186
189
  'content',
187
190
  'mask-image'
188
- ],
189
- mistakes: ['-ms-'],
190
- feature: 'css-gradients',
191
- browsers
191
+ ]
192
192
  }
193
193
  )
194
194
  )
@@ -209,8 +209,8 @@ f(prefixGradients, { match: /a\sx/ }, browsers => {
209
209
  'repeating-radial-gradient'
210
210
  ],
211
211
  {
212
- feature: 'css-gradients',
213
- browsers
212
+ browsers,
213
+ feature: 'css-gradients'
214
214
  }
215
215
  )
216
216
  })
@@ -220,8 +220,8 @@ let prefixBoxsizing = require('caniuse-lite/data/features/css3-boxsizing')
220
220
 
221
221
  f(prefixBoxsizing, browsers =>
222
222
  prefix(['box-sizing'], {
223
- feature: 'css3-boxsizing',
224
- browsers
223
+ browsers,
224
+ feature: 'css3-boxsizing'
225
225
  })
226
226
  )
227
227
 
@@ -230,8 +230,8 @@ let prefixFilters = require('caniuse-lite/data/features/css-filters')
230
230
 
231
231
  f(prefixFilters, browsers =>
232
232
  prefix(['filter'], {
233
- feature: 'css-filters',
234
- browsers
233
+ browsers,
234
+ feature: 'css-filters'
235
235
  })
236
236
  )
237
237
 
@@ -240,6 +240,8 @@ let prefixFilterFunction = require('caniuse-lite/data/features/css-filter-functi
240
240
 
241
241
  f(prefixFilterFunction, browsers =>
242
242
  prefix(['filter-function'], {
243
+ browsers,
244
+ feature: 'css-filter-function',
243
245
  props: [
244
246
  'background',
245
247
  'background-image',
@@ -249,19 +251,17 @@ f(prefixFilterFunction, browsers =>
249
251
  'list-style-image',
250
252
  'content',
251
253
  'mask-image'
252
- ],
253
- feature: 'css-filter-function',
254
- browsers
254
+ ]
255
255
  })
256
256
  )
257
257
 
258
258
  // Backdrop-filter
259
- let prefixBackdrop = require('caniuse-lite/data/features/css-backdrop-filter')
259
+ let prefixBackdropFilter = require('caniuse-lite/data/features/css-backdrop-filter')
260
260
 
261
- f(prefixBackdrop, { match: /y\sx|y\s#2/ }, browsers =>
261
+ f(prefixBackdropFilter, { match: /y\sx|y\s#2/ }, browsers =>
262
262
  prefix(['backdrop-filter'], {
263
- feature: 'css-backdrop-filter',
264
- browsers
263
+ browsers,
264
+ feature: 'css-backdrop-filter'
265
265
  })
266
266
  )
267
267
 
@@ -270,6 +270,8 @@ let prefixElementFunction = require('caniuse-lite/data/features/css-element-func
270
270
 
271
271
  f(prefixElementFunction, browsers =>
272
272
  prefix(['element'], {
273
+ browsers,
274
+ feature: 'css-element-function',
273
275
  props: [
274
276
  'background',
275
277
  'background-image',
@@ -279,9 +281,7 @@ f(prefixElementFunction, browsers =>
279
281
  'list-style-image',
280
282
  'content',
281
283
  'mask-image'
282
- ],
283
- feature: 'css-element-function',
284
- browsers
284
+ ]
285
285
  })
286
286
  )
287
287
 
@@ -303,15 +303,15 @@ f(prefixMulticolumns, browsers => {
303
303
  'column-fill'
304
304
  ],
305
305
  {
306
- feature: 'multicolumn',
307
- browsers
306
+ browsers,
307
+ feature: 'multicolumn'
308
308
  }
309
309
  )
310
310
 
311
311
  let noff = browsers.filter(i => !/firefox/.test(i))
312
312
  prefix(['break-before', 'break-after', 'break-inside'], {
313
- feature: 'multicolumn',
314
- browsers: noff
313
+ browsers: noff,
314
+ feature: 'multicolumn'
315
315
  })
316
316
  })
317
317
 
@@ -320,9 +320,9 @@ let prefixUserSelect = require('caniuse-lite/data/features/user-select-none')
320
320
 
321
321
  f(prefixUserSelect, browsers =>
322
322
  prefix(['user-select'], {
323
- mistakes: ['-khtml-'],
323
+ browsers,
324
324
  feature: 'user-select-none',
325
- browsers
325
+ mistakes: ['-khtml-']
326
326
  })
327
327
  )
328
328
 
@@ -338,13 +338,13 @@ f(prefixFlexbox, { match: /a\sx/ }, browsers => {
338
338
  }
339
339
  })
340
340
  prefix(['display-flex', 'inline-flex'], {
341
- props: ['display'],
341
+ browsers,
342
342
  feature: 'flexbox',
343
- browsers
343
+ props: ['display']
344
344
  })
345
345
  prefix(['flex', 'flex-grow', 'flex-shrink', 'flex-basis'], {
346
- feature: 'flexbox',
347
- browsers
346
+ browsers,
347
+ feature: 'flexbox'
348
348
  })
349
349
  prefix(
350
350
  [
@@ -358,20 +358,20 @@ f(prefixFlexbox, { match: /a\sx/ }, browsers => {
358
358
  'align-content'
359
359
  ],
360
360
  {
361
- feature: 'flexbox',
362
- browsers
361
+ browsers,
362
+ feature: 'flexbox'
363
363
  }
364
364
  )
365
365
  })
366
366
 
367
367
  f(prefixFlexbox, { match: /y\sx/ }, browsers => {
368
368
  add(['display-flex', 'inline-flex'], {
369
- feature: 'flexbox',
370
- browsers
369
+ browsers,
370
+ feature: 'flexbox'
371
371
  })
372
372
  add(['flex', 'flex-grow', 'flex-shrink', 'flex-basis'], {
373
- feature: 'flexbox',
374
- browsers
373
+ browsers,
374
+ feature: 'flexbox'
375
375
  })
376
376
  add(
377
377
  [
@@ -385,8 +385,8 @@ f(prefixFlexbox, { match: /y\sx/ }, browsers => {
385
385
  'align-content'
386
386
  ],
387
387
  {
388
- feature: 'flexbox',
389
- browsers
388
+ browsers,
389
+ feature: 'flexbox'
390
390
  }
391
391
  )
392
392
  })
@@ -396,9 +396,9 @@ let prefixCalc = require('caniuse-lite/data/features/calc')
396
396
 
397
397
  f(prefixCalc, browsers =>
398
398
  prefix(['calc'], {
399
- props: ['*'],
399
+ browsers,
400
400
  feature: 'calc',
401
- browsers
401
+ props: ['*']
402
402
  })
403
403
  )
404
404
 
@@ -407,8 +407,8 @@ let prefixBackgroundOptions = require('caniuse-lite/data/features/background-img
407
407
 
408
408
  f(prefixBackgroundOptions, browsers =>
409
409
  prefix(['background-origin', 'background-size'], {
410
- feature: 'background-img-opts',
411
- browsers
410
+ browsers,
411
+ feature: 'background-img-opts'
412
412
  })
413
413
  )
414
414
 
@@ -417,8 +417,8 @@ let prefixBackgroundClipText = require('caniuse-lite/data/features/background-cl
417
417
 
418
418
  f(prefixBackgroundClipText, browsers =>
419
419
  prefix(['background-clip'], {
420
- feature: 'background-clip-text',
421
- browsers
420
+ browsers,
421
+ feature: 'background-clip-text'
422
422
  })
423
423
  )
424
424
 
@@ -433,8 +433,8 @@ f(prefixFontFeature, browsers =>
433
433
  'font-language-override'
434
434
  ],
435
435
  {
436
- feature: 'font-feature',
437
- browsers
436
+ browsers,
437
+ feature: 'font-feature'
438
438
  }
439
439
  )
440
440
  )
@@ -444,8 +444,8 @@ let prefixFontKerning = require('caniuse-lite/data/features/font-kerning')
444
444
 
445
445
  f(prefixFontKerning, browsers =>
446
446
  prefix(['font-kerning'], {
447
- feature: 'font-kerning',
448
- browsers
447
+ browsers,
448
+ feature: 'font-kerning'
449
449
  })
450
450
  )
451
451
 
@@ -454,8 +454,8 @@ let prefixBorderImage = require('caniuse-lite/data/features/border-image')
454
454
 
455
455
  f(prefixBorderImage, browsers =>
456
456
  prefix(['border-image'], {
457
- feature: 'border-image',
458
- browsers
457
+ browsers,
458
+ feature: 'border-image'
459
459
  })
460
460
  )
461
461
 
@@ -464,9 +464,9 @@ let prefixSelection = require('caniuse-lite/data/features/css-selection')
464
464
 
465
465
  f(prefixSelection, browsers =>
466
466
  prefix(['::selection'], {
467
- selector: true,
467
+ browsers,
468
468
  feature: 'css-selection',
469
- browsers
469
+ selector: true
470
470
  })
471
471
  )
472
472
 
@@ -475,9 +475,9 @@ let prefixPlaceholder = require('caniuse-lite/data/features/css-placeholder')
475
475
 
476
476
  f(prefixPlaceholder, browsers => {
477
477
  prefix(['::placeholder'], {
478
- selector: true,
478
+ browsers: browsers.concat(['ie 10 old', 'ie 11 old', 'firefox 18 old']),
479
479
  feature: 'css-placeholder',
480
- browsers: browsers.concat(['ie 10 old', 'ie 11 old', 'firefox 18 old'])
480
+ selector: true
481
481
  })
482
482
  })
483
483
 
@@ -486,9 +486,9 @@ let prefixPlaceholderShown = require('caniuse-lite/data/features/css-placeholder
486
486
 
487
487
  f(prefixPlaceholderShown, browsers => {
488
488
  prefix([':placeholder-shown'], {
489
- selector: true,
489
+ browsers,
490
490
  feature: 'css-placeholder-shown',
491
- browsers
491
+ selector: true
492
492
  })
493
493
  })
494
494
 
@@ -497,8 +497,8 @@ let prefixHyphens = require('caniuse-lite/data/features/css-hyphens')
497
497
 
498
498
  f(prefixHyphens, browsers =>
499
499
  prefix(['hyphens'], {
500
- feature: 'css-hyphens',
501
- browsers
500
+ browsers,
501
+ feature: 'css-hyphens'
502
502
  })
503
503
  )
504
504
 
@@ -507,17 +507,21 @@ let prefixFullscreen = require('caniuse-lite/data/features/fullscreen')
507
507
 
508
508
  f(prefixFullscreen, browsers =>
509
509
  prefix([':fullscreen'], {
510
- selector: true,
510
+ browsers,
511
511
  feature: 'fullscreen',
512
- browsers
512
+ selector: true
513
513
  })
514
514
  )
515
515
 
516
- f(prefixFullscreen, { match: /x(\s#2|$)/ }, browsers =>
516
+ // ::backdrop pseudo-element
517
+ // https://caniuse.com/mdn-css_selectors_backdrop
518
+ let prefixBackdrop = require('caniuse-lite/data/features/mdn-css-backdrop-pseudo-element')
519
+
520
+ f(prefixBackdrop, browsers =>
517
521
  prefix(['::backdrop'], {
518
- selector: true,
519
- feature: 'fullscreen',
520
- browsers
522
+ browsers,
523
+ feature: 'backdrop',
524
+ selector: true
521
525
  })
522
526
  )
523
527
 
@@ -526,9 +530,9 @@ let prefixFileSelectorButton = require('caniuse-lite/data/features/css-file-sele
526
530
 
527
531
  f(prefixFileSelectorButton, browsers =>
528
532
  prefix(['::file-selector-button'], {
529
- selector: true,
533
+ browsers,
530
534
  feature: 'file-selector-button',
531
- browsers
535
+ selector: true
532
536
  })
533
537
  )
534
538
 
@@ -537,9 +541,9 @@ let prefixAutofill = require('caniuse-lite/data/features/css-autofill')
537
541
 
538
542
  f(prefixAutofill, browsers =>
539
543
  prefix([':autofill'], {
540
- selector: true,
544
+ browsers,
541
545
  feature: 'css-autofill',
542
- browsers
546
+ selector: true
543
547
  })
544
548
  )
545
549
 
@@ -548,8 +552,8 @@ let prefixTabsize = require('caniuse-lite/data/features/css3-tabsize')
548
552
 
549
553
  f(prefixTabsize, browsers =>
550
554
  prefix(['tab-size'], {
551
- feature: 'css3-tabsize',
552
- browsers
555
+ browsers,
556
+ feature: 'css3-tabsize'
553
557
  })
554
558
  )
555
559
 
@@ -579,25 +583,25 @@ let sizeProps = [
579
583
 
580
584
  f(prefixIntrinsic, browsers =>
581
585
  prefix(['max-content', 'min-content'], {
582
- props: sizeProps,
586
+ browsers,
583
587
  feature: 'intrinsic-width',
584
- browsers
588
+ props: sizeProps
585
589
  })
586
590
  )
587
591
 
588
592
  f(prefixIntrinsic, { match: /x|\s#4/ }, browsers =>
589
593
  prefix(['fill', 'fill-available'], {
590
- props: sizeProps,
594
+ browsers,
591
595
  feature: 'intrinsic-width',
592
- browsers
596
+ props: sizeProps
593
597
  })
594
598
  )
595
599
 
596
600
  f(prefixIntrinsic, { match: /x|\s#5/ }, browsers =>
597
601
  prefix(['fit-content'], {
598
- props: sizeProps,
602
+ browsers,
599
603
  feature: 'intrinsic-width',
600
- browsers
604
+ props: sizeProps
601
605
  })
602
606
  )
603
607
 
@@ -607,9 +611,9 @@ let prefixStretch = require('caniuse-lite/data/features/css-width-stretch')
607
611
 
608
612
  f(prefixStretch, browsers =>
609
613
  prefix(['stretch'], {
610
- props: sizeProps,
614
+ browsers,
611
615
  feature: 'css-width-stretch',
612
- browsers
616
+ props: sizeProps
613
617
  })
614
618
  )
615
619
 
@@ -618,9 +622,9 @@ let prefixCursorsNewer = require('caniuse-lite/data/features/css3-cursors-newer'
618
622
 
619
623
  f(prefixCursorsNewer, browsers =>
620
624
  prefix(['zoom-in', 'zoom-out'], {
621
- props: ['cursor'],
625
+ browsers,
622
626
  feature: 'css3-cursors-newer',
623
- browsers
627
+ props: ['cursor']
624
628
  })
625
629
  )
626
630
 
@@ -629,9 +633,9 @@ let prefixCursorsGrab = require('caniuse-lite/data/features/css3-cursors-grab')
629
633
 
630
634
  f(prefixCursorsGrab, browsers =>
631
635
  prefix(['grab', 'grabbing'], {
632
- props: ['cursor'],
636
+ browsers,
633
637
  feature: 'css3-cursors-grab',
634
- browsers
638
+ props: ['cursor']
635
639
  })
636
640
  )
637
641
 
@@ -640,9 +644,9 @@ let prefixSticky = require('caniuse-lite/data/features/css-sticky')
640
644
 
641
645
  f(prefixSticky, browsers =>
642
646
  prefix(['sticky'], {
643
- props: ['position'],
647
+ browsers,
644
648
  feature: 'css-sticky',
645
- browsers
649
+ props: ['position']
646
650
  })
647
651
  )
648
652
 
@@ -651,8 +655,8 @@ let prefixPointer = require('caniuse-lite/data/features/pointer')
651
655
 
652
656
  f(prefixPointer, browsers =>
653
657
  prefix(['touch-action'], {
654
- feature: 'pointer',
655
- browsers
658
+ browsers,
659
+ feature: 'pointer'
656
660
  })
657
661
  )
658
662
 
@@ -661,8 +665,8 @@ let prefixDecoration = require('caniuse-lite/data/features/text-decoration')
661
665
 
662
666
  f(prefixDecoration, { match: /x.*#[235]/ }, browsers =>
663
667
  prefix(['text-decoration-skip', 'text-decoration-skip-ink'], {
664
- feature: 'text-decoration',
665
- browsers
668
+ browsers,
669
+ feature: 'text-decoration'
666
670
  })
667
671
  )
668
672
 
@@ -670,8 +674,8 @@ let prefixDecorationShorthand = require('caniuse-lite/data/features/mdn-text-dec
670
674
 
671
675
  f(prefixDecorationShorthand, browsers =>
672
676
  prefix(['text-decoration'], {
673
- feature: 'text-decoration',
674
- browsers
677
+ browsers,
678
+ feature: 'text-decoration'
675
679
  })
676
680
  )
677
681
 
@@ -679,8 +683,8 @@ let prefixDecorationColor = require('caniuse-lite/data/features/mdn-text-decorat
679
683
 
680
684
  f(prefixDecorationColor, browsers =>
681
685
  prefix(['text-decoration-color'], {
682
- feature: 'text-decoration',
683
- browsers
686
+ browsers,
687
+ feature: 'text-decoration'
684
688
  })
685
689
  )
686
690
 
@@ -688,8 +692,8 @@ let prefixDecorationLine = require('caniuse-lite/data/features/mdn-text-decorati
688
692
 
689
693
  f(prefixDecorationLine, browsers =>
690
694
  prefix(['text-decoration-line'], {
691
- feature: 'text-decoration',
692
- browsers
695
+ browsers,
696
+ feature: 'text-decoration'
693
697
  })
694
698
  )
695
699
 
@@ -697,8 +701,8 @@ let prefixDecorationStyle = require('caniuse-lite/data/features/mdn-text-decorat
697
701
 
698
702
  f(prefixDecorationStyle, browsers =>
699
703
  prefix(['text-decoration-style'], {
700
- feature: 'text-decoration',
701
- browsers
704
+ browsers,
705
+ feature: 'text-decoration'
702
706
  })
703
707
  )
704
708
 
@@ -707,8 +711,8 @@ let prefixTextSizeAdjust = require('caniuse-lite/data/features/text-size-adjust'
707
711
 
708
712
  f(prefixTextSizeAdjust, browsers =>
709
713
  prefix(['text-size-adjust'], {
710
- feature: 'text-size-adjust',
711
- browsers
714
+ browsers,
715
+ feature: 'text-size-adjust'
712
716
  })
713
717
  )
714
718
 
@@ -727,8 +731,8 @@ f(prefixCssMasks, browsers => {
727
731
  'mask-border-source'
728
732
  ],
729
733
  {
730
- feature: 'css-masks',
731
- browsers
734
+ browsers,
735
+ feature: 'css-masks'
732
736
  }
733
737
  )
734
738
  prefix(
@@ -742,8 +746,8 @@ f(prefixCssMasks, browsers => {
742
746
  'mask-border-slice'
743
747
  ],
744
748
  {
745
- feature: 'css-masks',
746
- browsers
749
+ browsers,
750
+ feature: 'css-masks'
747
751
  }
748
752
  )
749
753
  })
@@ -753,8 +757,8 @@ let prefixClipPath = require('caniuse-lite/data/features/css-clip-path')
753
757
 
754
758
  f(prefixClipPath, browsers =>
755
759
  prefix(['clip-path'], {
756
- feature: 'css-clip-path',
757
- browsers
760
+ browsers,
761
+ feature: 'css-clip-path'
758
762
  })
759
763
  )
760
764
 
@@ -763,8 +767,8 @@ let prefixBoxdecoration = require('caniuse-lite/data/features/css-boxdecorationb
763
767
 
764
768
  f(prefixBoxdecoration, browsers =>
765
769
  prefix(['box-decoration-break'], {
766
- feature: 'css-boxdecorationbreak',
767
- browsers
770
+ browsers,
771
+ feature: 'css-boxdecorationbreak'
768
772
  })
769
773
  )
770
774
 
@@ -773,8 +777,8 @@ let prefixObjectFit = require('caniuse-lite/data/features/object-fit')
773
777
 
774
778
  f(prefixObjectFit, browsers =>
775
779
  prefix(['object-fit', 'object-position'], {
776
- feature: 'object-fit',
777
- browsers
780
+ browsers,
781
+ feature: 'object-fit'
778
782
  })
779
783
  )
780
784
 
@@ -783,8 +787,8 @@ let prefixShapes = require('caniuse-lite/data/features/css-shapes')
783
787
 
784
788
  f(prefixShapes, browsers =>
785
789
  prefix(['shape-margin', 'shape-outside', 'shape-image-threshold'], {
786
- feature: 'css-shapes',
787
- browsers
790
+ browsers,
791
+ feature: 'css-shapes'
788
792
  })
789
793
  )
790
794
 
@@ -793,8 +797,8 @@ let prefixTextOverflow = require('caniuse-lite/data/features/text-overflow')
793
797
 
794
798
  f(prefixTextOverflow, browsers =>
795
799
  prefix(['text-overflow'], {
796
- feature: 'text-overflow',
797
- browsers
800
+ browsers,
801
+ feature: 'text-overflow'
798
802
  })
799
803
  )
800
804
 
@@ -803,8 +807,8 @@ let prefixDeviceadaptation = require('caniuse-lite/data/features/css-deviceadapt
803
807
 
804
808
  f(prefixDeviceadaptation, browsers =>
805
809
  prefix(['@viewport'], {
806
- feature: 'css-deviceadaptation',
807
- browsers
810
+ browsers,
811
+ feature: 'css-deviceadaptation'
808
812
  })
809
813
  )
810
814
 
@@ -813,8 +817,8 @@ let prefixResolut = require('caniuse-lite/data/features/css-media-resolution')
813
817
 
814
818
  f(prefixResolut, { match: /( x($| )|a #2)/ }, browsers =>
815
819
  prefix(['@resolution'], {
816
- feature: 'css-media-resolution',
817
- browsers
820
+ browsers,
821
+ feature: 'css-media-resolution'
818
822
  })
819
823
  )
820
824
 
@@ -823,8 +827,8 @@ let prefixTextAlignLast = require('caniuse-lite/data/features/css-text-align-las
823
827
 
824
828
  f(prefixTextAlignLast, browsers =>
825
829
  prefix(['text-align-last'], {
826
- feature: 'css-text-align-last',
827
- browsers
830
+ browsers,
831
+ feature: 'css-text-align-last'
828
832
  })
829
833
  )
830
834
 
@@ -833,16 +837,16 @@ let prefixCrispedges = require('caniuse-lite/data/features/css-crisp-edges')
833
837
 
834
838
  f(prefixCrispedges, { match: /y x|a x #1/ }, browsers =>
835
839
  prefix(['pixelated'], {
836
- props: ['image-rendering'],
840
+ browsers,
837
841
  feature: 'css-crisp-edges',
838
- browsers
842
+ props: ['image-rendering']
839
843
  })
840
844
  )
841
845
 
842
846
  f(prefixCrispedges, { match: /a x #2/ }, browsers =>
843
847
  prefix(['image-rendering'], {
844
- feature: 'css-crisp-edges',
845
- browsers
848
+ browsers,
849
+ feature: 'css-crisp-edges'
846
850
  })
847
851
  )
848
852
 
@@ -860,8 +864,8 @@ f(prefixLogicalProps, browsers =>
860
864
  'padding-inline-end'
861
865
  ],
862
866
  {
863
- feature: 'css-logical-props',
864
- browsers
867
+ browsers,
868
+ feature: 'css-logical-props'
865
869
  }
866
870
  )
867
871
  )
@@ -877,8 +881,8 @@ f(prefixLogicalProps, { match: /x\s#2/ }, browsers =>
877
881
  'padding-block-end'
878
882
  ],
879
883
  {
880
- feature: 'css-logical-props',
881
- browsers
884
+ browsers,
885
+ feature: 'css-logical-props'
882
886
  }
883
887
  )
884
888
  )
@@ -888,8 +892,8 @@ let prefixAppearance = require('caniuse-lite/data/features/css-appearance')
888
892
 
889
893
  f(prefixAppearance, { match: /#2|x/ }, browsers =>
890
894
  prefix(['appearance'], {
891
- feature: 'css-appearance',
892
- browsers
895
+ browsers,
896
+ feature: 'css-appearance'
893
897
  })
894
898
  )
895
899
 
@@ -906,8 +910,8 @@ f(prefixSnappoints, browsers =>
906
910
  'scroll-snap-points-y'
907
911
  ],
908
912
  {
909
- feature: 'css-snappoints',
910
- browsers
913
+ browsers,
914
+ feature: 'css-snappoints'
911
915
  }
912
916
  )
913
917
  )
@@ -917,8 +921,8 @@ let prefixRegions = require('caniuse-lite/data/features/css-regions')
917
921
 
918
922
  f(prefixRegions, browsers =>
919
923
  prefix(['flow-into', 'flow-from', 'region-fragment'], {
920
- feature: 'css-regions',
921
- browsers
924
+ browsers,
925
+ feature: 'css-regions'
922
926
  })
923
927
  )
924
928
 
@@ -927,6 +931,8 @@ let prefixImageSet = require('caniuse-lite/data/features/css-image-set')
927
931
 
928
932
  f(prefixImageSet, browsers =>
929
933
  prefix(['image-set'], {
934
+ browsers,
935
+ feature: 'css-image-set',
930
936
  props: [
931
937
  'background',
932
938
  'background-image',
@@ -937,9 +943,7 @@ f(prefixImageSet, browsers =>
937
943
  'list-style',
938
944
  'list-style-image',
939
945
  'content'
940
- ],
941
- feature: 'css-image-set',
942
- browsers
946
+ ]
943
947
  })
944
948
  )
945
949
 
@@ -948,8 +952,8 @@ let prefixWritingMode = require('caniuse-lite/data/features/css-writing-mode')
948
952
 
949
953
  f(prefixWritingMode, { match: /a|x/ }, browsers =>
950
954
  prefix(['writing-mode'], {
951
- feature: 'css-writing-mode',
952
- browsers
955
+ browsers,
956
+ feature: 'css-writing-mode'
953
957
  })
954
958
  )
955
959
 
@@ -958,6 +962,8 @@ let prefixCrossFade = require('caniuse-lite/data/features/css-cross-fade')
958
962
 
959
963
  f(prefixCrossFade, browsers =>
960
964
  prefix(['cross-fade'], {
965
+ browsers,
966
+ feature: 'css-cross-fade',
961
967
  props: [
962
968
  'background',
963
969
  'background-image',
@@ -967,9 +973,7 @@ f(prefixCrossFade, browsers =>
967
973
  'list-style-image',
968
974
  'content',
969
975
  'mask-image'
970
- ],
971
- feature: 'css-cross-fade',
972
- browsers
976
+ ]
973
977
  })
974
978
  )
975
979
 
@@ -978,9 +982,9 @@ let prefixReadOnly = require('caniuse-lite/data/features/css-read-only-write')
978
982
 
979
983
  f(prefixReadOnly, browsers =>
980
984
  prefix([':read-only', ':read-write'], {
981
- selector: true,
985
+ browsers,
982
986
  feature: 'css-read-only-write',
983
- browsers
987
+ selector: true
984
988
  })
985
989
  )
986
990
 
@@ -996,8 +1000,8 @@ f(prefixTextEmphasis, browsers =>
996
1000
  'text-emphasis-color'
997
1001
  ],
998
1002
  {
999
- feature: 'text-emphasis',
1000
- browsers
1003
+ browsers,
1004
+ feature: 'text-emphasis'
1001
1005
  }
1002
1006
  )
1003
1007
  )
@@ -1007,9 +1011,9 @@ let prefixGrid = require('caniuse-lite/data/features/css-grid')
1007
1011
 
1008
1012
  f(prefixGrid, browsers => {
1009
1013
  prefix(['display-grid', 'inline-grid'], {
1010
- props: ['display'],
1014
+ browsers,
1011
1015
  feature: 'css-grid',
1012
- browsers
1016
+ props: ['display']
1013
1017
  })
1014
1018
  prefix(
1015
1019
  [
@@ -1027,16 +1031,16 @@ f(prefixGrid, browsers => {
1027
1031
  'place-self'
1028
1032
  ],
1029
1033
  {
1030
- feature: 'css-grid',
1031
- browsers
1034
+ browsers,
1035
+ feature: 'css-grid'
1032
1036
  }
1033
1037
  )
1034
1038
  })
1035
1039
 
1036
1040
  f(prefixGrid, { match: /a x/ }, browsers =>
1037
1041
  prefix(['grid-column-align', 'grid-row-align'], {
1038
- feature: 'css-grid',
1039
- browsers
1042
+ browsers,
1043
+ feature: 'css-grid'
1040
1044
  })
1041
1045
  )
1042
1046
 
@@ -1045,8 +1049,8 @@ let prefixTextSpacing = require('caniuse-lite/data/features/css-text-spacing')
1045
1049
 
1046
1050
  f(prefixTextSpacing, browsers =>
1047
1051
  prefix(['text-spacing'], {
1048
- feature: 'css-text-spacing',
1049
- browsers
1052
+ browsers,
1053
+ feature: 'css-text-spacing'
1050
1054
  })
1051
1055
  )
1052
1056
 
@@ -1055,9 +1059,9 @@ let prefixAnyLink = require('caniuse-lite/data/features/css-any-link')
1055
1059
 
1056
1060
  f(prefixAnyLink, browsers =>
1057
1061
  prefix([':any-link'], {
1058
- selector: true,
1062
+ browsers,
1059
1063
  feature: 'css-any-link',
1060
- browsers
1064
+ selector: true
1061
1065
  })
1062
1066
  )
1063
1067
 
@@ -1067,9 +1071,9 @@ let bidiIsolate = require('caniuse-lite/data/features/mdn-css-unicode-bidi-isola
1067
1071
 
1068
1072
  f(bidiIsolate, browsers =>
1069
1073
  prefix(['isolate'], {
1070
- props: ['unicode-bidi'],
1074
+ browsers,
1071
1075
  feature: 'css-unicode-bidi',
1072
- browsers
1076
+ props: ['unicode-bidi']
1073
1077
  })
1074
1078
  )
1075
1079
 
@@ -1077,9 +1081,9 @@ let bidiPlaintext = require('caniuse-lite/data/features/mdn-css-unicode-bidi-pla
1077
1081
 
1078
1082
  f(bidiPlaintext, browsers =>
1079
1083
  prefix(['plaintext'], {
1080
- props: ['unicode-bidi'],
1084
+ browsers,
1081
1085
  feature: 'css-unicode-bidi',
1082
- browsers
1086
+ props: ['unicode-bidi']
1083
1087
  })
1084
1088
  )
1085
1089
 
@@ -1087,9 +1091,9 @@ let bidiOverride = require('caniuse-lite/data/features/mdn-css-unicode-bidi-isol
1087
1091
 
1088
1092
  f(bidiOverride, { match: /y x/ }, browsers =>
1089
1093
  prefix(['isolate-override'], {
1090
- props: ['unicode-bidi'],
1094
+ browsers,
1091
1095
  feature: 'css-unicode-bidi',
1092
- browsers
1096
+ props: ['unicode-bidi']
1093
1097
  })
1094
1098
  )
1095
1099
 
@@ -1098,8 +1102,8 @@ let prefixOverscroll = require('caniuse-lite/data/features/css-overscroll-behavi
1098
1102
 
1099
1103
  f(prefixOverscroll, { match: /a #1/ }, browsers =>
1100
1104
  prefix(['overscroll-behavior'], {
1101
- feature: 'css-overscroll-behavior',
1102
- browsers
1105
+ browsers,
1106
+ feature: 'css-overscroll-behavior'
1103
1107
  })
1104
1108
  )
1105
1109
 
@@ -1108,8 +1112,8 @@ let prefixTextOrientation = require('caniuse-lite/data/features/css-text-orienta
1108
1112
 
1109
1113
  f(prefixTextOrientation, browsers =>
1110
1114
  prefix(['text-orientation'], {
1111
- feature: 'css-text-orientation',
1112
- browsers
1115
+ browsers,
1116
+ feature: 'css-text-orientation'
1113
1117
  })
1114
1118
  )
1115
1119
 
@@ -1118,7 +1122,7 @@ let prefixPrintAdjust = require('caniuse-lite/data/features/css-print-color-adju
1118
1122
 
1119
1123
  f(prefixPrintAdjust, browsers =>
1120
1124
  prefix(['print-color-adjust', 'color-adjust'], {
1121
- feature: 'css-print-color-adjust',
1122
- browsers
1125
+ browsers,
1126
+ feature: 'css-print-color-adjust'
1123
1127
  })
1124
1128
  )