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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c98bfac03efd935510bb9b69e3d6e5e086b22aaf70c5b8efdffbdaf2fc4cf39a
4
- data.tar.gz: 30d7bde4a5a53a6b248dc17155eaf32f48aa7cfdbb64e672565e9ae234627f0f
3
+ metadata.gz: 98cf66fc3bb54861918634d73791b05066bcdae4fd6ed8ccbc7b84377a89bccd
4
+ data.tar.gz: ec5365b78c0d14a23041d8909a4b7e44f5515dc3ca6e74e8f1721d9d6244d464
5
5
  SHA512:
6
- metadata.gz: d6614e7a0fc0c90b55e1f84025d5e42d1ad883493289f2daeae92fdc7aefb1aad0b5e24349f51f00eadb9c9e0967cb4e7a40cdf0404731e72f4628485e4eaa8a
7
- data.tar.gz: 4ad070bd3187eb91d701dc538cfaf9e83a801819922ed004e7aad101cbfe087f9c75315282c48efa3c82cbff1218ee6a5fd7a5cbcf2d207003392b8589c19379
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) to `map` option:
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AutoprefixerRails # :nodoc:
4
- VERSION = "10.4.16.0" unless defined? AutoprefixerRails::VERSION
4
+ VERSION = "10.4.21.0" unless defined? AutoprefixerRails::VERSION
5
5
  end