autoprefixer-rails 7.2.6 → 8.0.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 +4 -0
- data/lib/autoprefixer-rails/processor.rb +13 -1
- data/lib/autoprefixer-rails/version.rb +1 -1
- data/spec/autoprefixer_spec.rb +6 -0
- data/vendor/autoprefixer.js +55 -50
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: a80446a5e5fb2a36c0c38eb3c8a8dfe547fa0017
         | 
| 4 | 
            +
              data.tar.gz: af5a4295f75eed7e4da5882cf66ccbc73a3a958b
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 109d0d345035521b8605151ffb54c1307a3c5da75d32dfec16abb8d6ddc1e042a20a449ffadea0d892214f08d2942c2bdbb72818506dbba1e61f100e91bccf56
         | 
| 7 | 
            +
              data.tar.gz: 6ec44e687a66a7f2dd8078ff40354171f4e4932265b69261a0c8d7edcadb4077be6c836261182cdccd5519c0968eb1bcd71016916afe5d1c3019798fcc2db19f
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| @@ -33,7 +33,19 @@ module AutoprefixerRails | |
| 33 33 | 
             
                    map:  pluginOpts.delete(:map)
         | 
| 34 34 | 
             
                  }
         | 
| 35 35 |  | 
| 36 | 
            -
                   | 
| 36 | 
            +
                  begin
         | 
| 37 | 
            +
                    result = runtime.call(apply_wrapper, [css, processOpts, pluginOpts])
         | 
| 38 | 
            +
                  rescue ExecJS::ProgramError => e
         | 
| 39 | 
            +
                    contry_error = 'BrowserslistError: ' +
         | 
| 40 | 
            +
                      'Country statistics is not supported ' +
         | 
| 41 | 
            +
                      'in client-side build of Browserslist'
         | 
| 42 | 
            +
                    if e.message == contry_error
         | 
| 43 | 
            +
                      raise 'Country statistics is not supported in AutoprefixerRails. ' +
         | 
| 44 | 
            +
                            'Use Autoprefixer with webpack or other Node.js builder.'
         | 
| 45 | 
            +
                    else
         | 
| 46 | 
            +
                      raise e
         | 
| 47 | 
            +
                    end
         | 
| 48 | 
            +
                  end
         | 
| 37 49 |  | 
| 38 50 | 
             
                  Result.new(result['css'], result['map'], result['warnings'])
         | 
| 39 51 | 
             
                end
         | 
    
        data/spec/autoprefixer_spec.rb
    CHANGED
    
    | @@ -75,6 +75,12 @@ describe AutoprefixerRails do | |
| 75 75 | 
             
                  'direction syntax. New syntax is like `to left` instead of `right`.'])
         | 
| 76 76 | 
             
              end
         | 
| 77 77 |  | 
| 78 | 
            +
              it "shows correct error on country statistics" do
         | 
| 79 | 
            +
                expect {
         | 
| 80 | 
            +
                  AutoprefixerRails.process('', browsers: '> 1% in US')
         | 
| 81 | 
            +
                }.to raise_error(/Use Autoprefixer with webpack/)
         | 
| 82 | 
            +
              end
         | 
| 83 | 
            +
             | 
| 78 84 | 
             
              context 'Sprockets' do
         | 
| 79 85 | 
             
                before :each do
         | 
| 80 86 | 
             
                  @assets = Sprockets::Environment.new
         | 
    
        data/vendor/autoprefixer.js
    CHANGED
    
    | @@ -221,14 +221,17 @@ f(require('caniuse-lite/data/features/css-element-function.js'), function (brows | |
| 221 221 |  | 
| 222 222 | 
             
            // Multicolumns
         | 
| 223 223 | 
             
            f(require('caniuse-lite/data/features/multicolumn.js'), function (browsers) {
         | 
| 224 | 
            -
                prefix(['columns', 'column-width', 'column-gap', 'column-rule', 'column-rule-color', 'column-rule-width'], {
         | 
| 224 | 
            +
                prefix(['columns', 'column-width', 'column-gap', 'column-rule', 'column-rule-color', 'column-rule-width', 'column-count', 'column-rule-style', 'column-span', 'column-fill'], {
         | 
| 225 225 | 
             
                    feature: 'multicolumn',
         | 
| 226 226 | 
             
                    browsers: browsers
         | 
| 227 227 | 
             
                });
         | 
| 228 228 |  | 
| 229 | 
            -
                 | 
| 229 | 
            +
                var noff = browsers.filter(function (i) {
         | 
| 230 | 
            +
                    return !/firefox/.test(i);
         | 
| 231 | 
            +
                });
         | 
| 232 | 
            +
                prefix(['break-before', 'break-after', 'break-inside'], {
         | 
| 230 233 | 
             
                    feature: 'multicolumn',
         | 
| 231 | 
            -
                    browsers:  | 
| 234 | 
            +
                    browsers: noff
         | 
| 232 235 | 
             
                });
         | 
| 233 236 | 
             
            });
         | 
| 234 237 |  | 
| @@ -2161,11 +2164,7 @@ var BreakProps = function (_Declaration) { | |
| 2161 2164 | 
             
                 * Change name for -webkit- and -moz- prefix
         | 
| 2162 2165 | 
             
                 */
         | 
| 2163 2166 | 
             
                BreakProps.prototype.prefixed = function prefixed(prop, prefix) {
         | 
| 2164 | 
            -
                     | 
| 2165 | 
            -
                        return 'page-' + prop;
         | 
| 2166 | 
            -
                    } else {
         | 
| 2167 | 
            -
                        return prefix + 'column-' + prop;
         | 
| 2168 | 
            -
                    }
         | 
| 2167 | 
            +
                    return prefix + 'column-' + prop;
         | 
| 2169 2168 | 
             
                };
         | 
| 2170 2169 |  | 
| 2171 2170 | 
             
                /**
         | 
| @@ -2200,9 +2199,7 @@ var BreakProps = function (_Declaration) { | |
| 2200 2199 | 
             
                BreakProps.prototype.insert = function insert(decl, prefix, prefixes) {
         | 
| 2201 2200 | 
             
                    if (decl.prop !== 'break-inside') {
         | 
| 2202 2201 | 
             
                        return _Declaration.prototype.insert.call(this, decl, prefix, prefixes);
         | 
| 2203 | 
            -
                    } else if (decl.value  | 
| 2204 | 
            -
                        return undefined;
         | 
| 2205 | 
            -
                    } else if (decl.value === 'avoid-page' && prefix === '-webkit-') {
         | 
| 2202 | 
            +
                    } else if (/region/i.test(decl.value) || /page/i.test(decl.value)) {
         | 
| 2206 2203 | 
             
                        return undefined;
         | 
| 2207 2204 | 
             
                    } else {
         | 
| 2208 2205 | 
             
                        return _Declaration.prototype.insert.call(this, decl, prefix, prefixes);
         | 
| @@ -9040,6 +9037,10 @@ module.exports = { | |
| 9040 9037 | 
             
                }
         | 
| 9041 9038 | 
             
              },
         | 
| 9042 9039 |  | 
| 9040 | 
            +
              loadCountry: function loadCountry() {
         | 
| 9041 | 
            +
                throw new BrowserslistError('Country statistics is not supported ' + 'in client-side build of Browserslist');
         | 
| 9042 | 
            +
              },
         | 
| 9043 | 
            +
             | 
| 9043 9044 | 
             
              parseConfig: noop,
         | 
| 9044 9045 |  | 
| 9045 9046 | 
             
              readConfig: noop,
         | 
| @@ -9054,7 +9055,7 @@ module.exports = { | |
| 9054 9055 |  | 
| 9055 9056 | 
             
            function BrowserslistError(message) {
         | 
| 9056 9057 | 
             
              this.name = 'BrowserslistError';
         | 
| 9057 | 
            -
              this.message = message | 
| 9058 | 
            +
              this.message = message;
         | 
| 9058 9059 | 
             
              this.browserslist = true;
         | 
| 9059 9060 | 
             
              if (Error.captureStackTrace) {
         | 
| 9060 9061 | 
             
                Error.captureStackTrace(this, BrowserslistError);
         | 
| @@ -9074,7 +9075,6 @@ var path = require('path'); | |
| 9074 9075 | 
             
            var e2c = require('electron-to-chromium/versions');
         | 
| 9075 9076 |  | 
| 9076 9077 | 
             
            var agents = require('caniuse-lite/dist/unpacker/agents').agents;
         | 
| 9077 | 
            -
            var region = require('caniuse-lite/dist/unpacker/region').default;
         | 
| 9078 9078 |  | 
| 9079 9079 | 
             
            var BrowserslistError = require('./error');
         | 
| 9080 9080 | 
             
            var env = require('./node'); // Will load browser.js in webpack
         | 
| @@ -9163,20 +9163,6 @@ function normalizeVersion(data, version) { | |
| 9163 9163 | 
             
              }
         | 
| 9164 9164 | 
             
            }
         | 
| 9165 9165 |  | 
| 9166 | 
            -
            function loadCountryStatistics(country) {
         | 
| 9167 | 
            -
              country = country.replace(/[^\w-]/g, '');
         | 
| 9168 | 
            -
              if (!browserslist.usage[country]) {
         | 
| 9169 | 
            -
                var usage = {};
         | 
| 9170 | 
            -
                // eslint-disable-next-line security/detect-non-literal-require
         | 
| 9171 | 
            -
                var compressed = require('caniuse-lite/data/regions/' + country + '.js');
         | 
| 9172 | 
            -
                var data = region(compressed);
         | 
| 9173 | 
            -
                for (var i in data) {
         | 
| 9174 | 
            -
                  fillUsage(usage, i, data[i]);
         | 
| 9175 | 
            -
                }
         | 
| 9176 | 
            -
                browserslist.usage[country] = usage;
         | 
| 9177 | 
            -
              }
         | 
| 9178 | 
            -
            }
         | 
| 9179 | 
            -
             | 
| 9180 9166 | 
             
            function filterByYear(since) {
         | 
| 9181 9167 | 
             
              return Object.keys(agents).reduce(function (selected, name) {
         | 
| 9182 9168 | 
             
                var data = byName(name);
         | 
| @@ -9256,12 +9242,12 @@ function resolve(queries, context) { | |
| 9256 9242 | 
             
            function browserslist(queries, opts) {
         | 
| 9257 9243 | 
             
              if (typeof opts === 'undefined') opts = {};
         | 
| 9258 9244 |  | 
| 9259 | 
            -
              if ( | 
| 9245 | 
            +
              if (typeof opts.path === 'undefined') {
         | 
| 9260 9246 | 
             
                opts.path = path.resolve ? path.resolve('.') : '.';
         | 
| 9261 9247 | 
             
              }
         | 
| 9262 9248 |  | 
| 9263 9249 | 
             
              if (typeof queries === 'undefined' || queries === null) {
         | 
| 9264 | 
            -
                var config =  | 
| 9250 | 
            +
                var config = browserslist.loadConfig(opts);
         | 
| 9265 9251 | 
             
                if (config) {
         | 
| 9266 9252 | 
             
                  queries = config;
         | 
| 9267 9253 | 
             
                } else {
         | 
| @@ -9323,7 +9309,7 @@ browserslist.usage = { | |
| 9323 9309 | 
             
              custom: null
         | 
| 9324 9310 |  | 
| 9325 9311 | 
             
              // Default browsers query
         | 
| 9326 | 
            -
            };browserslist.defaults = ['>  | 
| 9312 | 
            +
            };browserslist.defaults = ['> 0.5%', 'last 2 versions', 'Firefox ESR', 'not dead'];
         | 
| 9327 9313 |  | 
| 9328 9314 | 
             
            // Browser names aliases
         | 
| 9329 9315 | 
             
            browserslist.aliases = {
         | 
| @@ -9347,34 +9333,48 @@ browserslist.clearCaches = env.clearCaches; | |
| 9347 9333 | 
             
            browserslist.parseConfig = env.parseConfig;
         | 
| 9348 9334 | 
             
            browserslist.readConfig = env.readConfig;
         | 
| 9349 9335 | 
             
            browserslist.findConfig = env.findConfig;
         | 
| 9336 | 
            +
            browserslist.loadConfig = env.loadConfig;
         | 
| 9350 9337 |  | 
| 9351 9338 | 
             
            /**
         | 
| 9352 9339 | 
             
             * Return browsers market coverage.
         | 
| 9353 9340 | 
             
             *
         | 
| 9354 9341 | 
             
             * @param {string[]} browsers Browsers names in Can I Use.
         | 
| 9355 | 
            -
             * @param {string} [ | 
| 9342 | 
            +
             * @param {string|object} [stats="global"] Which statistics should be used.
         | 
| 9343 | 
            +
             *                                         Country code or custom statistics.
         | 
| 9356 9344 | 
             
             *
         | 
| 9357 9345 | 
             
             * @return {number} Total market coverage for all selected browsers.
         | 
| 9358 9346 | 
             
             *
         | 
| 9359 9347 | 
             
             * @example
         | 
| 9360 9348 | 
             
             * browserslist.coverage(browserslist('> 1% in US'), 'US') //=> 83.1
         | 
| 9361 9349 | 
             
             */
         | 
| 9362 | 
            -
            browserslist.coverage = function (browsers,  | 
| 9363 | 
            -
               | 
| 9364 | 
            -
             | 
| 9365 | 
            -
             | 
| 9350 | 
            +
            browserslist.coverage = function (browsers, stats) {
         | 
| 9351 | 
            +
              var data;
         | 
| 9352 | 
            +
              if (typeof stats === 'undefined') {
         | 
| 9353 | 
            +
                data = browserslist.usage.global;
         | 
| 9354 | 
            +
              } else if (typeof stats === 'string') {
         | 
| 9355 | 
            +
                if (stats.length > 2) {
         | 
| 9356 | 
            +
                  stats = stats.toLowerCase();
         | 
| 9366 9357 | 
             
                } else {
         | 
| 9367 | 
            -
                   | 
| 9358 | 
            +
                  stats = stats.toUpperCase();
         | 
| 9368 9359 | 
             
                }
         | 
| 9369 | 
            -
                 | 
| 9360 | 
            +
                env.loadCountry(browserslist.usage, stats);
         | 
| 9361 | 
            +
                data = browserslist.usage[stats];
         | 
| 9370 9362 | 
             
              } else {
         | 
| 9371 | 
            -
                 | 
| 9363 | 
            +
                if ('dataByBrowser' in stats) {
         | 
| 9364 | 
            +
                  stats = stats.dataByBrowser;
         | 
| 9365 | 
            +
                }
         | 
| 9366 | 
            +
                data = {};
         | 
| 9367 | 
            +
                for (var name in stats) {
         | 
| 9368 | 
            +
                  for (var version in stats[name]) {
         | 
| 9369 | 
            +
                    data[name + ' ' + version] = stats[name][version];
         | 
| 9370 | 
            +
                  }
         | 
| 9371 | 
            +
                }
         | 
| 9372 9372 | 
             
              }
         | 
| 9373 9373 |  | 
| 9374 9374 | 
             
              return browsers.reduce(function (all, i) {
         | 
| 9375 | 
            -
                var usage =  | 
| 9375 | 
            +
                var usage = data[i];
         | 
| 9376 9376 | 
             
                if (usage === undefined) {
         | 
| 9377 | 
            -
                  usage =  | 
| 9377 | 
            +
                  usage = data[i.replace(/ [\d.]+$/, ' 0')];
         | 
| 9378 9378 | 
             
                }
         | 
| 9379 9379 | 
             
                return all + (usage || 0);
         | 
| 9380 9380 | 
             
              }, 0);
         | 
| @@ -9543,7 +9543,7 @@ var QUERIES = [{ | |
| 9543 9543 | 
             
                  place = place.toLowerCase();
         | 
| 9544 9544 | 
             
                }
         | 
| 9545 9545 |  | 
| 9546 | 
            -
                 | 
| 9546 | 
            +
                env.loadCountry(browserslist.usage, place);
         | 
| 9547 9547 | 
             
                var usage = browserslist.usage[place];
         | 
| 9548 9548 |  | 
| 9549 9549 | 
             
                return Object.keys(usage).reduce(function (result, version) {
         | 
| @@ -9648,7 +9648,7 @@ var QUERIES = [{ | |
| 9648 9648 | 
             
                } else {
         | 
| 9649 9649 | 
             
                  if (version.indexOf('.') === -1) {
         | 
| 9650 9650 | 
             
                    alias = version + '.0';
         | 
| 9651 | 
            -
                  } else  | 
| 9651 | 
            +
                  } else {
         | 
| 9652 9652 | 
             
                    alias = version.replace(/\.0$/, '');
         | 
| 9653 9653 | 
             
                  }
         | 
| 9654 9654 | 
             
                  alias = normalizeVersion(data, alias);
         | 
| @@ -9670,6 +9670,11 @@ var QUERIES = [{ | |
| 9670 9670 | 
             
              select: function select() {
         | 
| 9671 9671 | 
             
                return browserslist(browserslist.defaults);
         | 
| 9672 9672 | 
             
              }
         | 
| 9673 | 
            +
            }, {
         | 
| 9674 | 
            +
              regexp: /^dead$/i,
         | 
| 9675 | 
            +
              select: function select() {
         | 
| 9676 | 
            +
                return ['ie 10', 'ie_mob 10', 'bb 10', 'bb 7'];
         | 
| 9677 | 
            +
              }
         | 
| 9673 9678 | 
             
            }];
         | 
| 9674 9679 |  | 
| 9675 9680 | 
             
            // Get and convert Can I Use data
         | 
| @@ -9702,7 +9707,7 @@ var QUERIES = [{ | |
| 9702 9707 |  | 
| 9703 9708 | 
             
            module.exports = browserslist;
         | 
| 9704 9709 |  | 
| 9705 | 
            -
            },{"./error":70,"./node":69,"caniuse-lite/dist/unpacker/agents":550," | 
| 9710 | 
            +
            },{"./error":70,"./node":69,"caniuse-lite/dist/unpacker/agents":550,"electron-to-chromium/versions":557,"path":68}],72:[function(require,module,exports){
         | 
| 9706 9711 | 
             
            /*!
         | 
| 9707 9712 | 
             
             * The buffer module from node.js, for the browser.
         | 
| 9708 9713 | 
             
             *
         | 
| @@ -11500,7 +11505,7 @@ module.exports = { A: { A: { "1": "A B", "2": "K C G YB", "132": "E" }, B: { "1" | |
| 11500 11505 | 
             
            },{}],96:[function(require,module,exports){
         | 
| 11501 11506 | 
             
            "use strict";
         | 
| 11502 11507 |  | 
| 11503 | 
            -
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "2": "D w Z I M H" }, C: { " | 
| 11508 | 
            +
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "2": "D w Z I M", "16": "H" }, C: { "2": "0 1 3 5 6 7 WB AB F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x UB OB", "16": "8" }, D: { "1": "0 1 3 5 6 7 8 s t u v z x BB IB DB FB ZB GB", "2": "F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r" }, E: { "2": "F J K C G E A B HB CB JB KB LB MB NB g PB" }, F: { "1": "f L h i j k l m n o p q r s t u v", "2": "4 9 E B D I M H N O P Q R S T U V W X Y y a b c d e QB RB SB TB g VB" }, G: { "2": "2 G CB XB EB aB bB cB dB eB fB gB hB iB" }, H: { "2": "jB" }, I: { "1": "BB", "2": "2 AB F kB lB mB nB oB pB" }, J: { "2": "C A" }, K: { "1": "L", "2": "4 9 A B D g" }, L: { "1": "DB" }, M: { "2": "x" }, N: { "2": "A B" }, O: { "1": "qB" }, P: { "1": "J rB", "2": "F" }, Q: { "1": "sB" }, R: { "2": "tB" } }, B: 7, C: "Background Sync API" };
         | 
| 11504 11509 |  | 
| 11505 11510 | 
             
            },{}],97:[function(require,module,exports){
         | 
| 11506 11511 | 
             
            "use strict";
         | 
| @@ -11575,7 +11580,7 @@ module.exports = { A: { A: { "2": "K C G YB", "132": "E A B" }, B: { "1": "D w Z | |
| 11575 11580 | 
             
            },{}],111:[function(require,module,exports){
         | 
| 11576 11581 | 
             
            "use strict";
         | 
| 11577 11582 |  | 
| 11578 | 
            -
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "2": "D w Z I M H" }, C: { "1": "0 1 3 5 6 7 8 q r s t u v z x", "2": "WB AB F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p UB OB" }, D: { "1": "0 1 3 5 6 7 8 s t u v z x BB IB DB FB ZB GB", "2": "F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b", "129": "c d e f L h i j k l m n o p q r" }, E: { "2": "F J K C G E A B HB CB JB KB LB MB NB g PB" }, F: { "1": "f L h i j k l m n o p q r s t u v", "2": "4 9 E B D I M H N O P Q R S T U V W X Y y a b c d e QB RB SB TB g VB" }, G: { "2": "2 G CB XB EB aB bB cB dB eB fB gB | 
| 11583 | 
            +
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "2": "D w Z I M H" }, C: { "1": "0 1 3 5 6 7 8 q r s t u v z x", "2": "WB AB F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p UB OB" }, D: { "1": "0 1 3 5 6 7 8 s t u v z x BB IB DB FB ZB GB", "2": "F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b", "129": "c d e f L h i j k l m n o p q r" }, E: { "2": "F J K C G E A B HB CB JB KB LB MB NB g PB" }, F: { "1": "f L h i j k l m n o p q r s t u v", "2": "4 9 E B D I M H N O P Q R S T U V W X Y y a b c d e QB RB SB TB g VB" }, G: { "1": "hB iB", "2": "2 G CB XB EB aB bB cB dB eB fB gB" }, H: { "2": "jB" }, I: { "1": "BB", "2": "2 AB F kB lB mB nB oB", "16": "pB" }, J: { "2": "C A" }, K: { "1": "L", "2": "4 9 A B D g" }, L: { "1": "DB" }, M: { "1": "x" }, N: { "2": "A B" }, O: { "2": "qB" }, P: { "1": "F J rB" }, Q: { "1": "sB" }, R: { "1": "tB" } }, B: 6, C: "ChaCha20-Poly1305 cipher suites for TLS" };
         | 
| 11579 11584 |  | 
| 11580 11585 | 
             
            },{}],112:[function(require,module,exports){
         | 
| 11581 11586 | 
             
            "use strict";
         | 
| @@ -12030,7 +12035,7 @@ module.exports = { A: { A: { "2": "K C G E YB", "36": "A B" }, B: { "36": "D w Z | |
| 12030 12035 | 
             
            },{}],202:[function(require,module,exports){
         | 
| 12031 12036 | 
             
            "use strict";
         | 
| 12032 12037 |  | 
| 12033 | 
            -
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "1": "w Z I M H", "2": "D" }, C: { "16": "WB AB F J K C G E A B D w Z I M H N O P Q R S T U V  | 
| 12038 | 
            +
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "1": "w Z I M H", "2": "D" }, C: { "16": "WB", "33": "0 1 3 5 6 7 8 AB F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x UB OB" }, D: { "1": "0 1 3 5 6 7 8 f L h i j k l m n o p q r s t u v z x BB IB DB FB ZB GB", "16": "F J K C G E A B D w Z", "132": "I M H N O P Q R S T U V W X Y y a b c d e" }, E: { "1": "E A B MB NB g PB", "16": "HB CB", "132": "F J K C G JB KB LB" }, F: { "1": "S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v", "16": "E B QB RB SB TB g", "132": "4 9 D I M H N O P Q R VB" }, G: { "1": "dB eB fB gB hB iB", "16": "CB XB", "132": "2 G EB aB bB cB" }, H: { "2": "jB" }, I: { "1": "BB", "16": "kB lB", "132": "2 AB F mB nB oB pB" }, J: { "1": "A", "132": "C" }, K: { "1": "L", "2": "A B g", "132": "4 9 D" }, L: { "1": "DB" }, M: { "33": "x" }, N: { "2": "A B" }, O: { "1": "qB" }, P: { "1": "F J rB" }, Q: { "1": "sB" }, R: { "1": "tB" } }, B: 1, C: "CSS :read-only and :read-write selectors" };
         | 
| 12034 12039 |  | 
| 12035 12040 | 
             
            },{}],203:[function(require,module,exports){
         | 
| 12036 12041 | 
             
            "use strict";
         | 
| @@ -12195,7 +12200,7 @@ module.exports = { A: { A: { "1": "K C YB", "129": "G E A B" }, B: { "1": "D w Z | |
| 12195 12200 | 
             
            },{}],235:[function(require,module,exports){
         | 
| 12196 12201 | 
             
            "use strict";
         | 
| 12197 12202 |  | 
| 12198 | 
            -
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "2": "D w Z I M H" }, C: { "2": "0 1 3 5 6 7 8 WB AB F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x UB OB" }, D: { "2": "0 1 3 5 6 7 8 F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x BB IB DB FB ZB GB" }, E: { "2": "F J K C G E A B HB CB JB KB LB MB NB g PB" }, F: { "2": "4 9 E B D I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v QB RB SB TB g VB" }, G: { "2": "2 G CB XB EB aB bB cB dB eB fB gB hB iB" }, H: { "2": "jB" }, I: { "2": "2 AB F BB kB lB mB nB oB pB" }, J: { "2": "C A" }, K: { "2": "4 9 A B D L g" }, L: { "2": "DB" }, M: { "2": "x" }, N: { "2": "A B" }, O: { "2": "qB" }, P: { "2": "F J rB" }, Q: { "2": "sB" }, R: { "2": "tB" } }, B: 4, C: "CSS3 attr() function" };
         | 
| 12203 | 
            +
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "2": "D w Z I M H" }, C: { "2": "0 1 3 5 6 7 8 WB AB F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x UB OB" }, D: { "2": "0 1 3 5 6 7 8 F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x BB IB DB FB ZB GB" }, E: { "2": "F J K C G E A B HB CB JB KB LB MB NB g PB" }, F: { "2": "4 9 E B D I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v QB RB SB TB g VB" }, G: { "2": "2 G CB XB EB aB bB cB dB eB fB gB hB iB" }, H: { "2": "jB" }, I: { "2": "2 AB F BB kB lB mB nB oB pB" }, J: { "2": "C A" }, K: { "2": "4 9 A B D L g" }, L: { "2": "DB" }, M: { "2": "x" }, N: { "2": "A B" }, O: { "2": "qB" }, P: { "2": "F J rB" }, Q: { "2": "sB" }, R: { "2": "tB" } }, B: 4, C: "CSS3 attr() function for all properties" };
         | 
| 12199 12204 |  | 
| 12200 12205 | 
             
            },{}],236:[function(require,module,exports){
         | 
| 12201 12206 | 
             
            "use strict";
         | 
| @@ -12250,7 +12255,7 @@ module.exports = { A: { A: { "2": "K C G YB", "132": "E A B" }, B: { "1": "D w Z | |
| 12250 12255 | 
             
            },{}],246:[function(require,module,exports){
         | 
| 12251 12256 | 
             
            "use strict";
         | 
| 12252 12257 |  | 
| 12253 | 
            -
            module.exports = { A: { A: { "2": "YB", "8": "K C G E", "260": "A B" }, B: { "260": "D w Z I M H" }, C: { "8": "WB AB UB OB", "516": "0 1 3 5 6 7 8 F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x" }, D: { " | 
| 12258 | 
            +
            module.exports = { A: { A: { "2": "YB", "8": "K C G E", "260": "A B" }, B: { "260": "D w Z I M H" }, C: { "8": "WB AB UB OB", "516": "0 1 3 5 6 7 8 F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x" }, D: { "8": "F J K C G E A B D w Z I M H N O", "132": "0 1 3 5 6 7 8 P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x BB IB DB FB ZB GB" }, E: { "8": "F J K C G E A B HB CB JB KB LB MB NB g PB" }, F: { "1": "4 9 E B D QB RB SB TB g VB", "132": "I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v" }, G: { "8": "2 G CB XB EB aB bB cB dB eB fB gB hB iB" }, H: { "2": "jB" }, I: { "1": "pB", "8": "2 AB F kB lB mB nB oB", "132": "BB" }, J: { "1": "A", "8": "C" }, K: { "1": "4 9 A B D g", "8": "L" }, L: { "1": "DB" }, M: { "516": "x" }, N: { "8": "A B" }, O: { "8": "qB" }, P: { "1": "F J rB" }, Q: { "1": "sB" }, R: { "1": "tB" } }, B: 1, C: "Datalist element" };
         | 
| 12254 12259 |  | 
| 12255 12260 | 
             
            },{}],247:[function(require,module,exports){
         | 
| 12256 12261 | 
             
            "use strict";
         | 
| @@ -13565,7 +13570,7 @@ module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "2": "D w Z I M H" }, | |
| 13565 13570 | 
             
            },{}],509:[function(require,module,exports){
         | 
| 13566 13571 | 
             
            "use strict";
         | 
| 13567 13572 |  | 
| 13568 | 
            -
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "2": "D w Z I M | 
| 13573 | 
            +
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "1": "H", "2": "D w Z I M" }, C: { "1": "0 1 3 5 6 7 8 l m n o p q r s t u v z x", "2": "WB AB F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k UB OB" }, D: { "1": "0 1 3 5 6 7 8 m n o p q r s t u v z x BB IB DB FB ZB GB", "2": "F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l" }, E: { "1": "B NB g PB", "2": "F J K C G E A HB CB JB KB LB MB" }, F: { "1": "y a b c d e f L h i j k l m n o p q r s t u v", "2": "4 9 E B D I M H N O P Q R S T U V W X Y QB RB SB TB g VB" }, G: { "1": "gB hB iB", "2": "2 G CB XB EB aB bB cB dB eB fB" }, H: { "2": "jB" }, I: { "1": "BB", "2": "2 AB F kB lB mB nB oB pB" }, J: { "2": "C A" }, K: { "1": "L", "2": "4 9 A B D g" }, L: { "1": "DB" }, M: { "1": "x" }, N: { "2": "A B" }, O: { "2": "qB" }, P: { "1": "F J rB" }, Q: { "1": "sB" }, R: { "1": "tB" } }, B: 4, C: "Upgrade Insecure Requests" };
         | 
| 13569 13574 |  | 
| 13570 13575 | 
             
            },{}],510:[function(require,module,exports){
         | 
| 13571 13576 | 
             
            "use strict";
         | 
| @@ -13595,7 +13600,7 @@ module.exports = { A: { A: { "1": "A B", "2": "K C G E YB" }, B: { "1": "D w Z I | |
| 13595 13600 | 
             
            },{}],515:[function(require,module,exports){
         | 
| 13596 13601 | 
             
            "use strict";
         | 
| 13597 13602 |  | 
| 13598 | 
            -
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { " | 
| 13603 | 
            +
            module.exports = { A: { A: { "2": "K C G E A B YB" }, B: { "2": "D w Z I M", "1028": "H" }, C: { "2": "WB AB F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v UB OB", "1346": "0 1 3 5 6 7 8 z x" }, D: { "2": "0 1 3 5 F J K C G E A B D w Z I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r s t u v z x", "194": "6 7 8", "1028": "BB IB DB FB ZB GB" }, E: { "2": "F J K C G E A HB CB JB KB LB MB NB", "513": "B g PB" }, F: { "2": "4 9 E B D I M H N O P Q R S T U V W X Y y a b c d e f L h i j k l m n o p q r QB RB SB TB g VB", "1028": "s t u v" }, G: { "1": "hB iB", "2": "2 G CB XB EB aB bB cB dB eB fB gB" }, H: { "2": "jB" }, I: { "2": "2 AB F kB lB mB nB oB pB", "1028": "BB" }, J: { "2": "C A" }, K: { "2": "4 9 A B D L g" }, L: { "1028": "DB" }, M: { "2": "x" }, N: { "2": "A B" }, O: { "2": "qB" }, P: { "2": "F J rB" }, Q: { "2": "sB" }, R: { "2": "tB" } }, B: 5, C: "Variable fonts" };
         | 
| 13599 13604 |  | 
| 13600 13605 | 
             
            },{}],516:[function(require,module,exports){
         | 
| 13601 13606 | 
             
            "use strict";
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: autoprefixer-rails
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version:  | 
| 4 | 
            +
              version: 8.0.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Andrey Sitnik
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2018-02- | 
| 11 | 
            +
            date: 2018-02-12 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: execjs
         |