terminus-ui
terminus-ui copied to clipboard
chore(packages): update dependency autoprefixer to v10
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| autoprefixer | 9.7.6 -> 10.4.14 |
Release Notes
postcss/autoprefixer
v10.4.14
- Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).
v10.4.13
- Fixed missed prefixes on vendor prefixes in name of CSS Custom Property.
v10.4.12
- Fixed support of unit-less zero angle in backgrounds (by 一丝).
v10.4.11
- Fixed
text-decorationprefixes by moving to MDN data (by Romain Menke).
v10.4.10
- Fixed
unicode-bidiprefixes by moving to MDN data.
v10.4.9
- Fixed
css-unicode-bidiissue from latest Can I Use.
v10.4.8
- Do not print
color-adjustwarning ifprint-color-adjustalso is in rule.
v10.4.7
- Fixed
print-color-adjustsupport in Firefox.
v10.4.6
- Fixed
print-color-adjustsupport.
v10.4.5
- Fixed
NaNin grid (by @SukkaW).
v10.4.4
- Fixed
package.fundingto have same value between all PostCSS packages.
v10.4.3
- Fixed
package.funding(by Álvaro Mondéjar).
v10.4.2
- Fixed missed
-webkit-prefix forwidth: stretch.
v10.4.1
- Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).
v10.4.0: 10.4 “ǃke e꞉ ǀxarra ǁke”
In Autoprefixer 10.4 @lukewarlow added :autofill support:
input:-webkit-autofill {
background-color: red;
}
input:autofill {
background-color: red;
}
v10.3.7
- Replaced
nanocolorstopicocolors.
v10.3.6
- Updated
nanocolors. - Reduced package size.
v10.3.5
- Replaced
colorettetonanocolors.
v10.3.4
- Fixed
stretchvalue in latest Firefox.
v10.3.3
- Fixed wrong
-moz-prefix from::file-selector-button(by Usman Yunusov).
v10.3.2
- Fixed
::file-selector-buttonsupport (by Usman Yunusov).
v10.3.1
- Fixed adding wrong prefixes to
content(by Luke Warlow).
v10.3.0: 10.3 “Чести своей не отдам никому”
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
- Fixed “no prefixes needed” warning (by @Pwntheon).
v10.2.5
- Fixed
:support in@supports(by Dmitry Semigradsky). - Fixed docs (by Christian Oliff).
v10.2.4
- Fixed browser names in
npx autoprefixer --info.
v10.2.3
- Fixed PostCSS 8 support.
v10.2.2
- Fixed PostCSS 8 plugins compatibility.
v10.2.1
- Fixed
transition-propertywarnings (by @Sheraff).
v10.2.0: 10.2 “Sub rosa”
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: 10.1 “Pula”
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
- Fixed
Cannot read property 'proxyOf' of undefinederror (by Igor Kamyshev).
v10.0.3
- Fixed
substracttosubtractvalue formask-composite(by Michelle Enos).
v10.0.2
- Removed
-ms-user-select: allbecause IE and old Edge don’t support it. - Fixed Grid Layout warning.
v10.0.1
- Fix PostCSS 8.1 compatability.
- Add our OpenCollective to
package.json. - Clean up code (by Sukka).
v10.0.0: 10.0 “Alis volat propriis”
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.
v9.8.8
- Replaced
nanocolorswithpicocolors. - Reduced package size.
v9.8.7
- Replaced
colorettewithnanocolors. - Reduced package size.
v9.8.6
- Fixed
envoption.
v9.8.5
- Improved Grid Layout warnings (by Daniel Tonon).
- Fixed
align-selfandjustify-selfwithdisplay: flex(by Daniel Tonon).
v9.8.4
- Replace color output library.
v9.8.3
- Return old non-LTS Node.js versions to avoid breaking changes.
v9.8.2
- Remove Node.js 13.0-13.7 from supported engines, because of buggy ESM support.
v9.8.1
- Replace
chalktokleur(by Luke Edwards). - Update docs (by @mbomb007).
v9.8.0: 9.8 “Vigilo Confido”
Autoprefixer 9.8 brings IE support for :placeholder-shown.
Placeholder Shown
@tkrotoff found that input:placeholder-shown can be emulated with input:-ms-input-placeholder.
input:-ms-input-placeholder {
box-shadow: 0 0 0 1px blue;
}
input:placeholder-shown {
box-shadow: 0 0 0 1px blue;
}
Note, that we already had support for ::placeholder. Selector ::placeholder is for the text of the placeholder. :placeholder-shown is for the input, where placeholder text is shown. In ::placeholder you can’t change the border or size of the <input>.
Configuration
📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Never, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.