autoprefixer-rails 10.4.16.0 → 10.4.21.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +4 -3
- data/lib/autoprefixer-rails/version.rb +1 -1
- data/vendor/autoprefixer.js +8049 -7558
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98cf66fc3bb54861918634d73791b05066bcdae4fd6ed8ccbc7b84377a89bccd
|
4
|
+
data.tar.gz: ec5365b78c0d14a23041d8909a4b7e44f5515dc3ca6e74e8f1721d9d6244d464
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae6e1c61d08568630bb2db7cf551472de0a47e90732d51188f2532c2f2c233aa425a5e6ef7f36aca1ce252bda73fc4277ef8a7cd1387c7dce4d84fa5b33b9985
|
7
|
+
data.tar.gz: 65f837e19562bcaf9e2c7ea19d5fdb761ac3176ca5deadd285d73fd9d82b869ed8b038abe9f1626ddd8b57c074c59b489a96d5f785dd83a6e35338d440618520
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,13 @@
|
|
1
1
|
# Change Log
|
2
|
+
## 10.4.21.0
|
3
|
+
* Fixed old `-moz-` prefix for `:placeholder-shown` (by @Marukome0743).
|
4
|
+
* Fixed `fit-content` prefix for Firefox.
|
5
|
+
|
6
|
+
## 10.4.19.0
|
7
|
+
* Removed `end value has mixed support, consider using flex-end` warning
|
8
|
+
since `end`/`start` now have good support.
|
9
|
+
* Fixed removing `-webkit-box-orient` on `-webkit-line-clamp` (@Goodwine).
|
10
|
+
* Fixed `user-select: contain` prefixes.
|
2
11
|
|
3
12
|
## 10.4.16.0
|
4
13
|
* Improved performance (by Romain Menke).
|
data/README.md
CHANGED
@@ -202,7 +202,7 @@ Autoprefixer will generate a source map if you set `map` option to `true` in
|
|
202
202
|
`process` method.
|
203
203
|
|
204
204
|
You must set input and output CSS files paths (by `from` and `to` options)
|
205
|
-
to generate correct map.
|
205
|
+
to generate a correct map.
|
206
206
|
|
207
207
|
```ruby
|
208
208
|
result = AutoprefixerRails.process(css,
|
@@ -212,11 +212,12 @@ result = AutoprefixerRails.process(css,
|
|
212
212
|
```
|
213
213
|
|
214
214
|
Autoprefixer can also modify previous source map (for example, from Sass
|
215
|
-
compilation). Just set original source map content (as string)
|
215
|
+
compilation). Just set original source map content (as string) as `prev`
|
216
|
+
in the `map` option.
|
216
217
|
|
217
218
|
```ruby
|
218
219
|
result = AutoprefixerRails.process(css, {
|
219
|
-
map: File.read('main.sass.css.map'),
|
220
|
+
map: { prev: File.read('main.sass.css.map') },
|
220
221
|
from: 'main.sass.css',
|
221
222
|
to: 'main.min.css')
|
222
223
|
|