Update dependency autoprefixer to v10
Compare changes
Files
2+ 1
− 1
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
autoprefixer | devDependencies | major | 9.8.8 -> 10.4.11 |
v10.4.11
text-decoration
prefixes by moving to MDN data (by Romain Menke).v10.4.10
unicode-bidi
prefixes by moving to MDN data.v10.4.9
css-unicode-bidi
issue from latest Can I Use.v10.4.8
color-adjust
warning if print-color-adjust
also is in rule.v10.4.7
print-color-adjust
support in Firefox.v10.4.6
print-color-adjust
support.v10.4.5
NaN
in grid (by @SukkaW).v10.4.4
package.funding
to have same value between all PostCSS packages.v10.4.3
package.funding
(by Álvaro Mondéjar).v10.4.2
-webkit-
prefix for width: stretch
.v10.4.1
text-decoration
prefixes by moving to MDN data (by Romain Menke).v10.4.0
In Autoprefixer 10.4 @lukewarlow added :autofill
support:
input:-webkit-autofill {
background-color: red;
}
input:autofill {
background-color: red;
}
v10.3.7
nanocolors
to picocolors
.v10.3.6
nanocolors
.v10.3.5
colorette
to nanocolors
.v10.3.4
stretch
value in latest Firefox.v10.3.3
-moz-
prefix from ::file-selector-button
(by Usman Yunusov).v10.3.2
::file-selector-button
support (by Usman Yunusov).v10.3.1
content
(by Luke Warlow).v10.3.0
In Autoprefixer 10.3 @lukewarlow added ::file-selector-button
support.
::-webkit-file-upload-button {
border: 2px solid #​6c5ce7;
padding: .2em .4em;
border-radius: .2em;
background-color: #a29bfe;
}
::file-selector-button {
border: 2px solid #​6c5ce7;
padding: .2em .4em;
border-radius: .2em;
background-color: #a29bfe;
}
v10.2.6
v10.2.5
:
support in @supports
(by Dmitry Semigradsky).v10.2.4
npx autoprefixer --info
.v10.2.3
v10.2.2
v10.2.1
transition-property
warnings (by @Sheraff).v10.2.0
Autoprefixer 10.2 now has built-in TypeScript definitions. You do not need @types/autoprefixer
anymore.
Thanks to @Semigradsky and DefinitelyTyped’s contributors.
@Sheraff also improved docs.
v10.1.0
Autoprefixer 10.1 improved min-resolution
support.
@infusion added dpcm
unit support and num2fraction
with Fraction.js, which uses Farey Sequences as a rational approximation (more precise) and simplifies the fraction using continued fractions to ɛ <0.001 afterward.
/* input */
@​media (min-resolution: 113.38dpcm) {
…
}
/* output */
@​media (-webkit-min-device-pixel-ratio: 3),
(min--moz-device-pixel-ratio: 3),
(-o-min-device-pixel-ratio: 3/1),
(min-resolution: 113.38dpcm) {
…
}
v10.0.4
Cannot read property 'proxyOf' of undefined
error (by Igor Kamyshev).v10.0.3
substract
to subtract
value for mask-composite
(by Michelle Enos).v10.0.2
-ms-user-select: all
because IE and old Edge don’t support it.v10.0.1
package.json
.v10.0.0
Autoprefixer 10 is based on top of PostCSS 8 (check Known Issues section before updating).
Node.js 6.x, 8.x, 11.x support was removed.
Now you need to install Autoprefixer by npm install --save-dev autoprefixer postcss
. We moved postcss
from dependencies
to peerDependencies
according to new PostCSS plugin guidelines.
This MR has been generated by Renovate Bot.