Optimize build and update
Browse files- config/webpack.config.demo.js +16 -1
- config/webpack.config.prod.js +16 -1
- dist/demo/driver-demo.min.css +1 -1
- dist/demo/driver-demo.min.js +0 -0
- dist/driver.min.css +1 -2
- dist/driver.min.css.map +1 -1
- dist/driver.min.js +1 -1
- package.json +2 -0
- yarn.lock +728 -10
config/webpack.config.demo.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
const path = require('path');
|
2 |
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
3 |
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
|
4 |
|
5 |
const isProduction = process.env.NODE_ENV === 'production';
|
6 |
const scriptFileName = 'driver-demo.min.js';
|
@@ -15,7 +16,7 @@ module.exports = {
|
|
15 |
'./src/index.js',
|
16 |
],
|
17 |
output: {
|
18 |
-
path: path.join(__dirname, '
|
19 |
publicPath: '/dist/demo/',
|
20 |
filename: scriptFileName,
|
21 |
libraryTarget: 'umd',
|
@@ -55,6 +56,20 @@ module.exports = {
|
|
55 |
filename: styleFileName,
|
56 |
allChunks: true,
|
57 |
}),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
new CopyWebpackPlugin([
|
59 |
'./demo/images/separator.png',
|
60 |
'./demo/images/driver.png',
|
|
|
1 |
const path = require('path');
|
2 |
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
3 |
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
4 |
+
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
|
5 |
|
6 |
const isProduction = process.env.NODE_ENV === 'production';
|
7 |
const scriptFileName = 'driver-demo.min.js';
|
|
|
16 |
'./src/index.js',
|
17 |
],
|
18 |
output: {
|
19 |
+
path: path.join(__dirname, '/../dist/demo'),
|
20 |
publicPath: '/dist/demo/',
|
21 |
filename: scriptFileName,
|
22 |
libraryTarget: 'umd',
|
|
|
56 |
filename: styleFileName,
|
57 |
allChunks: true,
|
58 |
}),
|
59 |
+
new OptimizeCssAssetsPlugin({
|
60 |
+
assetNameRegExp: /\.min\.css$/g,
|
61 |
+
// eslint-disable-next-line global-require
|
62 |
+
cssProcessor: require('cssnano'),
|
63 |
+
cssProcessorPluginOptions: {
|
64 |
+
preset: [
|
65 |
+
'default',
|
66 |
+
{
|
67 |
+
discardComments: { removeAll: true },
|
68 |
+
},
|
69 |
+
],
|
70 |
+
},
|
71 |
+
canPrint: true,
|
72 |
+
}),
|
73 |
new CopyWebpackPlugin([
|
74 |
'./demo/images/separator.png',
|
75 |
'./demo/images/driver.png',
|
config/webpack.config.prod.js
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
const path = require('path');
|
2 |
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
|
3 |
|
4 |
module.exports = {
|
5 |
mode: 'production',
|
@@ -8,7 +9,7 @@ module.exports = {
|
|
8 |
'./src/index.js',
|
9 |
],
|
10 |
output: {
|
11 |
-
path: path.join(__dirname, '
|
12 |
publicPath: '/dist/',
|
13 |
filename: 'driver.min.js',
|
14 |
libraryTarget: 'umd',
|
@@ -48,6 +49,20 @@ module.exports = {
|
|
48 |
filename: 'driver.min.css',
|
49 |
allChunks: true,
|
50 |
}),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
],
|
52 |
stats: {
|
53 |
colors: true,
|
|
|
1 |
const path = require('path');
|
2 |
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
3 |
+
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
|
4 |
|
5 |
module.exports = {
|
6 |
mode: 'production',
|
|
|
9 |
'./src/index.js',
|
10 |
],
|
11 |
output: {
|
12 |
+
path: path.join(__dirname, '/../dist'),
|
13 |
publicPath: '/dist/',
|
14 |
filename: 'driver.min.js',
|
15 |
libraryTarget: 'umd',
|
|
|
49 |
filename: 'driver.min.css',
|
50 |
allChunks: true,
|
51 |
}),
|
52 |
+
new OptimizeCssAssetsPlugin({
|
53 |
+
assetNameRegExp: /\.min\.css$/g,
|
54 |
+
// eslint-disable-next-line global-require
|
55 |
+
cssProcessor: require('cssnano'),
|
56 |
+
cssProcessorPluginOptions: {
|
57 |
+
preset: [
|
58 |
+
'default',
|
59 |
+
{
|
60 |
+
discardComments: { removeAll: true },
|
61 |
+
},
|
62 |
+
],
|
63 |
+
},
|
64 |
+
canPrint: true,
|
65 |
+
}),
|
66 |
],
|
67 |
stats: {
|
68 |
colors: true,
|
dist/demo/driver-demo.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0;padding:0}*,:after,:before{box-sizing:border-box}body,html{position:relative;margin:0;width:100%;height:100%}body{padding-top:1px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;font-size:16px;line-height:1.4;color:#fff;background-color:#2e2e30;overflow-x:hidden}label{display:block;margin-bottom:8px;font-size:14px;font-weight:500;cursor:pointer}p{margin-top:0;margin-bottom:20px;line-height:1.5}.hr,hr{display:block;margin:30px 0;border:0;border-bottom:1px solid #eaeaea;height:1px}.hr.hr__fancy,hr.hr__fancy{background:url(
|
|
|
1 |
+
*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0;padding:0}*,:after,:before{box-sizing:border-box}body,html{position:relative;margin:0;width:100%;height:100%}body{padding-top:1px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:16px;line-height:1.4;color:#fff;background-color:#2e2e30;overflow-x:hidden}label{display:block;margin-bottom:8px;font-size:14px;font-weight:500;cursor:pointer}p{margin-top:0;margin-bottom:20px;line-height:1.5}.hr,hr{display:block;margin:30px 0;border:0;border-bottom:1px solid #eaeaea;height:1px}.hr.hr__fancy,hr.hr__fancy{background:url(separator.png) repeat-y;height:5px;background-size:cover}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:12px;font-weight:700;line-height:1.2}a,a:focus,a:visited{color:#fff;text-decoration:none;font-weight:600}.form-control{display:block;width:100%;background-color:#f9f9f9;padding:12px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;-webkit-appearance:none;appearance:none;outline:none;margin-bottom:24px}.h1,h1{font-size:32px}.h2,h2{font-size:24px}.h3,h3{font-size:20px}.h4,h4{font-size:18px}.h5,h5{font-size:16px}.h6,h6{font-size:14px}ol li,ul li{list-style-type:none;line-height:1.5;margin-bottom:3px}blockquote{background:#f5f3f1;padding:10px;margin-bottom:35px;border-radius:10px}.top-20{margin-top:20px}.top-30{margin-top:30px}.zero-bottom{margin-bottom:0}.zero-top{margin-top:0}.text-center{text-align:center}div#driver-popover-item{display:none;position:absolute;background:#fff;color:#2d2d2d;margin:0;padding:15px;border-radius:5px;min-width:250px;max-width:300px;box-shadow:0 1px 10px rgba(0,0,0,.4);z-index:1000000000}div#driver-popover-item .driver-popover-tip{border:5px solid #fff;content:"";position:absolute}div#driver-popover-item .driver-popover-tip.bottom{bottom:-10px;border-color:#fff transparent transparent}div#driver-popover-item .driver-popover-tip.bottom.position-center{left:49%}div#driver-popover-item .driver-popover-tip.bottom.position-right{right:20px}div#driver-popover-item .driver-popover-tip.left{left:-10px;top:10px;border-color:transparent #fff transparent transparent}div#driver-popover-item .driver-popover-tip.left.position-center{top:46%}div#driver-popover-item .driver-popover-tip.left.position-bottom{top:auto;bottom:20px}div#driver-popover-item .driver-popover-tip.right{right:-10px;top:10px;border-color:transparent transparent transparent #fff}div#driver-popover-item .driver-popover-tip.right.position-center{top:46%}div#driver-popover-item .driver-popover-tip.right.position-bottom{top:auto;bottom:20px}div#driver-popover-item .driver-popover-tip.top{top:-10px;border-color:transparent transparent #fff}div#driver-popover-item .driver-popover-tip.top.position-center{left:49%}div#driver-popover-item .driver-popover-tip.top.position-right{right:20px}div#driver-popover-item .driver-popover-footer{display:block;clear:both;margin-top:5px}div#driver-popover-item .driver-popover-footer button{display:inline-block;padding:3px 10px;border:1px solid #d4d4d4;text-decoration:none;text-shadow:1px 1px 0 #fff;color:#2d2d2d;font:11px/normal sans-serif;cursor:pointer;outline:0;background-color:#f1f1f1;border-radius:2px;zoom:1;margin:10px 0 0;line-height:1.3}div#driver-popover-item .driver-popover-footer button.driver-disabled{color:grey;cursor:default;pointer-events:none}div#driver-popover-item .driver-popover-footer .driver-close-btn{float:left}div#driver-popover-item .driver-popover-footer .driver-btn-group{float:right}div#driver-popover-item .driver-popover-title{font:19px/normal sans-serif;margin:0 0 5px;font-weight:700;display:block;position:relative;line-height:1.5;zoom:1}div#driver-popover-item .driver-popover-description{margin-bottom:0;font:14px/normal sans-serif;line-height:1.5;color:#2d2d2d;font-weight:400;zoom:1}.driver-stage-no-animation{-webkit-transition:none!important;-moz-transition:none!important;-ms-transition:none!important;-o-transition:none!important;transition:none!important;background:transparent!important;outline:5000px solid rgba(0,0,0,.75)}div#driver-page-overlay{background:#000;position:fixed;bottom:0;right:0;display:block;width:100%;height:100%;zoom:1;filter:alpha(opacity=75);opacity:.75;z-index:100002!important}div#driver-highlighted-element-stage,div#driver-page-overlay{top:0;left:0;-webkit-transition:all .4s;-moz-transition:all .4s;-ms-transition:all .4s;-o-transition:all .4s;transition:all .4s}div#driver-highlighted-element-stage{position:absolute;height:50px;width:300px;background:#fff;z-index:100003!important;display:none;border-radius:2px}.driver-highlighted-element{z-index:100004!important}.driver-position-relative{position:relative!important}.driver-fix-stacking{z-index:auto!important;opacity:1!important;-webkit-transform:none!important;-moz-transform:none!important;-ms-transform:none!important;-o-transform:none!important;transform:none!important;-webkit-filter:none!important;-moz-filter:none!important;-ms-filter:none!important;-o-filter:none!important;filter:none!important;-webkit-perspective:none!important;-moz-perspective:none!important;-ms-perspective:none!important;-o-perspective:none!important;perspective:none!important;-webkit-transform-style:flat!important;-moz-transform-style:flat!important;-ms-transform-style:flat!important;transform-style:flat!important;-webkit-transform-box:border-box!important;-moz-transform-box:border-box!important;-ms-transform-box:border-box!important;-o-transform-box:border-box!important;transform-box:border-box!important;will-change:unset!important}img.emoji{height:1em;width:1em;margin:0 .05em 0 .1em;vertical-align:-.1em}.brand,.brand img{position:relative}.brand img{height:67px;top:10px}.page-wrap{max-width:550px;margin:50px auto;background:#fff;padding:10px 30px;border-radius:5px;color:#1f1f1f}.page-wrap a,.page-wrap a:focus,.page-wrap a:visited{color:#1f1f1f;text-decoration:underline}.page-wrap a.btn__dark{text-decoration:none;color:#fff;background-color:#f44336;padding:0 18px;height:40px;line-height:40px;border-radius:8px;cursor:pointer;transition:background-color .2s,color .2s;font-weight:500;width:195px;font-size:17px;display:inline-block;margin-top:2px}.page-wrap a.btn__run-demo{text-decoration:none;background:#f54336;padding:5px;border-radius:20px;color:#fff;display:block;margin:15px 0 10px;text-align:center}section{margin-bottom:30px}.section__header{margin:10px 0 20px;text-align:center;display:block;padding:10px}.section__header h1{font-size:55px}.section__header h1 .emoji{font-size:45px;top:-4px;margin-right:3px;position:relative}.section__header .tagline{max-width:450px;margin:0 auto 25px;text-align:center}.section__examples .section__example{margin-bottom:20px}.section__examples #creation-input{margin-top:20px}.section__examples input{padding:10px;background-color:#fafbfc;border:3px solid #e1e4e8;border-radius:3px;box-shadow:inset 0 0 10px rgba(27,31,35,.05);margin-bottom:0;margin-top:7px}.position-btns a{text-decoration:none;font-size:13px;padding:10px 15px;background:#f54336;color:#fff!important;border-radius:6px}
|
dist/demo/driver-demo.min.js
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
dist/driver.min.css
CHANGED
@@ -1,2 +1 @@
|
|
1 |
-
div#driver-popover-item{display:none;position:absolute;background:#fff;color:#2d2d2d;margin:0;padding:15px;border-radius:5px;min-width:250px;max-width:300px;box-shadow:0 1px 10px rgba(0,0,0,.4);z-index:1000000000}div#driver-popover-item .driver-popover-tip{border:5px solid #fff;content:"";position:absolute}div#driver-popover-item .driver-popover-tip.bottom{bottom:-10px;border-
|
2 |
-
/*# sourceMappingURL=driver.min.css.map*/
|
|
|
1 |
+
div#driver-popover-item{display:none;position:absolute;background:#fff;color:#2d2d2d;margin:0;padding:15px;border-radius:5px;min-width:250px;max-width:300px;box-shadow:0 1px 10px rgba(0,0,0,.4);z-index:1000000000}div#driver-popover-item .driver-popover-tip{border:5px solid #fff;content:"";position:absolute}div#driver-popover-item .driver-popover-tip.bottom{bottom:-10px;border-color:#fff transparent transparent}div#driver-popover-item .driver-popover-tip.bottom.position-center{left:49%}div#driver-popover-item .driver-popover-tip.bottom.position-right{right:20px}div#driver-popover-item .driver-popover-tip.left{left:-10px;top:10px;border-color:transparent #fff transparent transparent}div#driver-popover-item .driver-popover-tip.left.position-center{top:46%}div#driver-popover-item .driver-popover-tip.left.position-bottom{top:auto;bottom:20px}div#driver-popover-item .driver-popover-tip.right{right:-10px;top:10px;border-color:transparent transparent transparent #fff}div#driver-popover-item .driver-popover-tip.right.position-center{top:46%}div#driver-popover-item .driver-popover-tip.right.position-bottom{top:auto;bottom:20px}div#driver-popover-item .driver-popover-tip.top{top:-10px;border-color:transparent transparent #fff}div#driver-popover-item .driver-popover-tip.top.position-center{left:49%}div#driver-popover-item .driver-popover-tip.top.position-right{right:20px}div#driver-popover-item .driver-popover-footer{display:block;clear:both;margin-top:5px}div#driver-popover-item .driver-popover-footer button{display:inline-block;padding:3px 10px;border:1px solid #d4d4d4;text-decoration:none;text-shadow:1px 1px 0 #fff;color:#2d2d2d;font:11px/normal sans-serif;cursor:pointer;outline:0;background-color:#f1f1f1;border-radius:2px;zoom:1;margin:10px 0 0;line-height:1.3}div#driver-popover-item .driver-popover-footer button.driver-disabled{color:grey;cursor:default;pointer-events:none}div#driver-popover-item .driver-popover-footer .driver-close-btn{float:left}div#driver-popover-item .driver-popover-footer .driver-btn-group{float:right}div#driver-popover-item .driver-popover-title{font:19px/normal sans-serif;margin:0 0 5px;font-weight:700;display:block;position:relative;line-height:1.5;zoom:1}div#driver-popover-item .driver-popover-description{margin-bottom:0;font:14px/normal sans-serif;line-height:1.5;color:#2d2d2d;font-weight:400;zoom:1}.driver-stage-no-animation{-webkit-transition:none!important;-moz-transition:none!important;-ms-transition:none!important;-o-transition:none!important;transition:none!important;background:transparent!important;outline:5000px solid rgba(0,0,0,.75)}div#driver-page-overlay{background:#000;position:fixed;bottom:0;right:0;display:block;width:100%;height:100%;zoom:1;filter:alpha(opacity=75);opacity:.75;z-index:100002!important}div#driver-highlighted-element-stage,div#driver-page-overlay{top:0;left:0;-webkit-transition:all .4s;-moz-transition:all .4s;-ms-transition:all .4s;-o-transition:all .4s;transition:all .4s}div#driver-highlighted-element-stage{position:absolute;height:50px;width:300px;background:#fff;z-index:100003!important;display:none;border-radius:2px}.driver-highlighted-element{z-index:100004!important}.driver-position-relative{position:relative!important}.driver-fix-stacking{z-index:auto!important;opacity:1!important;-webkit-transform:none!important;-moz-transform:none!important;-ms-transform:none!important;-o-transform:none!important;transform:none!important;-webkit-filter:none!important;-moz-filter:none!important;-ms-filter:none!important;-o-filter:none!important;filter:none!important;-webkit-perspective:none!important;-moz-perspective:none!important;-ms-perspective:none!important;-o-perspective:none!important;perspective:none!important;-webkit-transform-style:flat!important;-moz-transform-style:flat!important;-ms-transform-style:flat!important;transform-style:flat!important;-webkit-transform-box:border-box!important;-moz-transform-box:border-box!important;-ms-transform-box:border-box!important;-o-transform-box:border-box!important;transform-box:border-box!important;will-change:unset!important}
|
|
dist/driver.min.css.map
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"file":"driver.min.css","sources":[],"mappings":"","sourceRoot":""}
|
|
|
1 |
+
{"version":3,"file":"driver.min.css","sources":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","sourceRoot":""}
|
dist/driver.min.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.Driver=e():t.Driver=e()}(window,function(){return function(t){var e={};function i(o){if(e[o])return e[o].exports;var n=e[o]={i:o,l:!1,exports:{}};return t[o].call(n.exports,n,n.exports,i),n.l=!0,n.exports}return i.m=t,i.c=e,i.d=function(t,e,o){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:o})},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var o=Object.create(null);if(i.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var n in t)i.d(o,n,function(e){return t[e]}.bind(null,n));return o},i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="/dist/",i(i.s=9)}([function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.createNodeFromString=function(t){var e=document.createElement("div");return e.innerHTML=t.trim(),e.firstChild},e.getStyleProperty=function t(e,i){if(arguments.length>2&&void 0!==arguments[2]&&arguments[2]){for(var o=["","-webkit-","-ms-","moz-","-o-"],n=0;n<o.length;n++){var s=t(e,o[n]+i);if(s)return s}return""}var r="";return e.currentStyle?r=e.currentStyle[i]:document.defaultView&&document.defaultView.getComputedStyle&&(r=document.defaultView.getComputedStyle(e,null).getPropertyValue(i)),r&&r.toLowerCase?r.toLowerCase():r},e.isDomElement=function(t){return t&&"object"===(void 0===t?"undefined":o(t))&&"nodeType"in t}},function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.OVERLAY_OPACITY=.75,e.OVERLAY_PADDING=10,e.SHOULD_ANIMATE_OVERLAY=!0,e.SHOULD_OUTSIDE_CLICK_CLOSE=!0,e.ALLOW_KEYBOARD_CONTROL=!0,e.SHOULD_OUTSIDE_CLICK_NEXT=!1,e.ESC_KEY_CODE=27,e.LEFT_KEY_CODE=37,e.RIGHT_KEY_CODE=39;var o=e.ID_OVERLAY="driver-page-overlay",n=e.ID_STAGE="driver-highlighted-element-stage",s=e.ID_POPOVER="driver-popover-item",r=(e.CLASS_DRIVER_HIGHLIGHTED_ELEMENT="driver-highlighted-element",e.CLASS_POSITION_RELATIVE="driver-position-relative",e.CLASS_FIX_STACKING_CONTEXT="driver-fix-stacking",e.CLASS_STAGE_NO_ANIMATION="driver-stage-no-animation",e.CLASS_POPOVER_TIP="driver-popover-tip"),h=e.CLASS_POPOVER_TITLE="driver-popover-title",l=e.CLASS_POPOVER_DESCRIPTION="driver-popover-description",a=e.CLASS_POPOVER_FOOTER="driver-popover-footer",d=e.CLASS_CLOSE_BTN="driver-close-btn",u=e.CLASS_NEXT_STEP_BTN="driver-next-btn",p=e.CLASS_PREV_STEP_BTN="driver-prev-btn";e.CLASS_BTN_DISABLED="driver-disabled",e.ANIMATION_DURATION_MS=400,e.POPOVER_HTML='\n <div id="'+s+'">\n <div class="'+r+'"></div>\n <div class="'+h+'">Popover Title</div>\n <div class="'+l+'">Popover Description</div>\n <div class="'+a+'">\n <button class="'+d+'">Close</button>\n <span class="driver-btn-group">\n <button class="'+p+'">← Previous</button>\n <button class="'+u+'">Next →</button>\n </span>\n </div>\n </div>',e.OVERLAY_HTML='<div id="'+o+'"></div>',e.STAGE_HTML='<div id="'+n+'"></div>'},function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var i=0;i<e.length;i++){var o=e[i];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,i,o){return i&&t(e.prototype,i),o&&t(e,o),e}}(),n=i(1),s=i(0),r=function(t){return t&&t.__esModule?t:{default:t}}(i(5));var h=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=e.node,o=e.options,n=e.popover,s=e.stage,r=e.overlay,h=e.window,l=e.document;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.node=i,this.document=l,this.window=h,this.options=o,this.overlay=r,this.popover=n,this.stage=s,this.animationTimeout=null}return o(t,[{key:"isInView",value:function(){for(var t=this.node.offsetTop,e=this.node.offsetLeft,i=this.node.offsetWidth,o=this.node.offsetHeight,n=this.node;n.offsetParent;)t+=(n=n.offsetParent).offsetTop,e+=n.offsetLeft;return t>=this.window.pageYOffset&&e>=this.window.pageXOffset&&t+o<=this.window.pageYOffset+this.window.innerHeight&&e+i<=this.window.pageXOffset+this.window.innerWidth}},{key:"scrollManually",value:function(){var t=this.node.getBoundingClientRect().top+this.window.pageYOffset-this.window.innerHeight/2;this.window.scrollTo(0,t)}},{key:"bringInView",value:function(){if(!this.isInView())if(this.node.scrollIntoView)try{this.node.scrollIntoView(this.options.scrollIntoViewOptions||{behavior:"instant",block:"center"})}catch(t){this.scrollManually()}else this.scrollManually()}},{key:"getCalculatedPosition",value:function(){var t=this.document.body,e=this.document.documentElement,i=this.window,o=this.window.pageYOffset||e.scrollTop||t.scrollTop,n=i.pageXOffset||e.scrollLeft||t.scrollLeft,s=this.node.getBoundingClientRect();return new r.default({top:s.top+o,left:s.left+n,right:s.left+n+s.width,bottom:s.top+o+s.height})}},{key:"getPopover",value:function(){return this.popover}},{key:"onDeselected",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.hidePopover(),t&&this.hideStage(),this.removeHighlightClasses(),this.window.clearTimeout(this.animationTimeout),this.options.onDeselected&&this.options.onDeselected(this)}},{key:"isSame",value:function(t){return!(!t||!t.node)&&t.node===this.node}},{key:"onHighlightStarted",value:function(){this.options.onHighlightStarted&&this.options.onHighlightStarted(this)}},{key:"onHighlighted",value:function(){this.showPopover(),this.showStage(),this.addHighlightClasses();var t=this.popover;t&&!t.isInView()&&t.bringInView(),this.isInView()||this.bringInView(),this.options.onHighlighted&&this.options.onHighlighted(this)}},{key:"removeHighlightClasses",value:function(){this.node.classList.remove(n.CLASS_DRIVER_HIGHLIGHTED_ELEMENT),this.node.classList.remove(n.CLASS_POSITION_RELATIVE);for(var t=this.document.querySelectorAll("."+n.CLASS_FIX_STACKING_CONTEXT),e=0;e<t.length;e++)t[e].classList.remove(n.CLASS_FIX_STACKING_CONTEXT)}},{key:"addHighlightClasses",value:function(){this.node.classList.add(n.CLASS_DRIVER_HIGHLIGHTED_ELEMENT),this.canMakeRelative()&&this.node.classList.add(n.CLASS_POSITION_RELATIVE),this.fixStackingContext()}},{key:"fixStackingContext",value:function(){for(var t=this.node.parentNode;t&&t.tagName&&"body"!==t.tagName.toLowerCase();){var e=(0,s.getStyleProperty)(t,"z-index"),i=parseFloat((0,s.getStyleProperty)(t,"opacity")),o=(0,s.getStyleProperty)(t,"transform",!0),r=(0,s.getStyleProperty)(t,"transform-style",!0),h=(0,s.getStyleProperty)(t,"transform-box",!0),l=(0,s.getStyleProperty)(t,"filter",!0),a=(0,s.getStyleProperty)(t,"perspective",!0);(/[0-9]+/.test(e)||i<1||o&&"none"!==o||r&&"flat"!==r||h&&"border-box"!==h||l&&"none"!==l||a&&"none"!==a)&&t.classList.add(n.CLASS_FIX_STACKING_CONTEXT),t=t.parentNode}}},{key:"canMakeRelative",value:function(){var t=this.getStyleProperty("position");return-1===["absolute","fixed","relative"].indexOf(t)}},{key:"getStyleProperty",value:function(t){return(0,s.getStyleProperty)(this.node,t)}},{key:"showStage",value:function(){this.stage.show(this.getCalculatedPosition())}},{key:"getNode",value:function(){return this.node}},{key:"hideStage",value:function(){this.stage.hide()}},{key:"hidePopover",value:function(){this.popover&&this.popover.hide()}},{key:"showPopover",value:function(){var t=this;if(this.popover){var e=this.getCalculatedPosition(),i=n.ANIMATION_DURATION_MS;this.options.animate&&this.overlay.lastHighlightedElement||(i=0),this.animationTimeout=this.window.setTimeout(function(){t.popover.show(e)},i)}}},{key:"getFullPageSize",value:function(){var t=this.document.body,e=this.document.documentElement;return{height:Math.max(t.scrollHeight,t.offsetHeight,e.scrollHeight,e.offsetHeight),width:Math.max(t.scrollWidth,t.offsetWidth,e.scrollWidth,e.offsetWidth)}}},{key:"getSize",value:function(){return{height:Math.max(this.node.scrollHeight,this.node.offsetHeight),width:Math.max(this.node.scrollWidth,this.node.offsetWidth)}}}]),t}();e.default=h,t.exports=e.default},function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var i=0;i<e.length;i++){var o=e[i];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,i,o){return i&&t(e.prototype,i),o&&t(e,o),e}}(),n=i(1),s=i(0),r=function(t){return t&&t.__esModule?t:{default:t}}(i(2));var h=function(t){function e(t,i,o){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var n=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return n.options=t,n.window=i,n.document=o,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,r.default),o(e,[{key:"attachNode",value:function(){var t=this.document.getElementById(n.ID_STAGE);t||(t=(0,s.createNodeFromString)(n.STAGE_HTML),document.body.appendChild(t)),this.node=t,this.options.animate?this.node.classList.remove(n.CLASS_STAGE_NO_ANIMATION):this.node.classList.add(n.CLASS_STAGE_NO_ANIMATION)}},{key:"hide",value:function(){this.node&&this.node.parentElement&&this.node.parentElement.removeChild(this.node)}},{key:"setInitialStyle",value:function(){this.node.style.display="block",this.node.style.left="0",this.node.style.top="0",this.node.style.bottom="",this.node.style.right=""}},{key:"show",value:function(t){this.attachNode(),this.setInitialStyle();var e=2*this.options.padding,i=t.right-t.left+e,o=t.bottom-t.top+e;this.node.style.display="block",this.node.style.position="absolute",this.node.style.width=i+"px",this.node.style.height=o+"px",this.node.style.top=t.top-e/2+"px",this.node.style.left=t.left-e/2+"px",this.node.style.backgroundColor=this.options.stageBackground}}]),e}();e.default=h,t.exports=e.default},function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var i=arguments[e];for(var o in i)Object.prototype.hasOwnProperty.call(i,o)&&(t[o]=i[o])}return t},n=function(){function t(t,e){for(var i=0;i<e.length;i++){var o=e[i];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,i,o){return i&&t(e.prototype,i),o&&t(e,o),e}}(),s=function(t){return t&&t.__esModule?t:{default:t}}(i(2)),r=i(1),h=i(0);var l=function(t){function e(t,i,n){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var s=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return s.options=o({isFirst:!0,isLast:!0,totalCount:1,currentIndex:0,offset:0,showButtons:!0,closeBtnText:"Close",doneBtnText:"Done",startBtnText:"Next →",nextBtnText:"Next →",prevBtnText:"← Previous"},t),s.window=i,s.document=n,s.attachNode(),s.hide(),s}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,s.default),n(e,[{key:"attachNode",value:function(){var t=this.document.getElementById(r.ID_POPOVER);t||(t=(0,h.createNodeFromString)(r.POPOVER_HTML),document.body.appendChild(t)),this.node=t,this.tipNode=t.querySelector("."+r.CLASS_POPOVER_TIP),this.titleNode=t.querySelector("."+r.CLASS_POPOVER_TITLE),this.descriptionNode=t.querySelector("."+r.CLASS_POPOVER_DESCRIPTION),this.footerNode=t.querySelector("."+r.CLASS_POPOVER_FOOTER),this.nextBtnNode=t.querySelector("."+r.CLASS_NEXT_STEP_BTN),this.prevBtnNode=t.querySelector("."+r.CLASS_PREV_STEP_BTN),this.closeBtnNode=t.querySelector("."+r.CLASS_CLOSE_BTN)}},{key:"getTitleNode",value:function(){return this.titleNode}},{key:"getDescriptionNode",value:function(){return this.descriptionNode}},{key:"hide",value:function(){this.node.style.display="none"}},{key:"setInitialState",value:function(){this.node.style.display="block",this.node.style.left="0",this.node.style.top="0",this.node.style.bottom="",this.node.style.right="",this.node.querySelector("."+r.CLASS_POPOVER_TIP).className=r.CLASS_POPOVER_TIP}},{key:"show",value:function(t){switch(this.setInitialState(),this.titleNode.innerHTML=this.options.title,this.descriptionNode.innerHTML=this.options.description||"",this.renderFooter(),this.options.position){case"left":case"left-top":this.positionOnLeft(t);break;case"left-center":this.positionOnLeftCenter(t);break;case"left-bottom":this.positionOnLeftBottom(t);break;case"right":case"right-top":this.positionOnRight(t);break;case"right-center":this.positionOnRightCenter(t);break;case"right-bottom":this.positionOnRightBottom(t);break;case"top":case"top-left":this.positionOnTop(t);break;case"top-center":this.positionOnTopCenter(t);break;case"top-right":this.positionOnTopRight(t);break;case"bottom":case"bottom-left":this.positionOnBottom(t);break;case"bottom-center":this.positionOnBottomCenter(t);break;case"bottom-right":this.positionOnBottomRight(t);break;case"auto":default:this.autoPosition(t)}}},{key:"renderFooter",value:function(){this.nextBtnNode.innerHTML=this.options.nextBtnText,this.prevBtnNode.innerHTML=this.options.prevBtnText,this.closeBtnNode.innerHTML=this.options.closeBtnText,this.options.showButtons&&this.options.totalCount&&1!==this.options.totalCount?(this.footerNode.style.display="block",this.options.isFirst?(this.prevBtnNode.classList.add(r.CLASS_BTN_DISABLED),this.nextBtnNode.innerHTML=this.options.startBtnText):this.prevBtnNode.classList.remove(r.CLASS_BTN_DISABLED),this.options.isLast?this.nextBtnNode.innerHTML=this.options.doneBtnText:this.nextBtnNode.innerHTML=this.options.nextBtnText):this.footerNode.style.display="none"}},{key:"positionOnLeft",value:function(t){var e=this.getSize().width,i=this.options.padding+10;this.node.style.left=t.left-e-i+"px",this.node.style.top=t.top+this.options.offset-this.options.padding+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("right")}},{key:"positionOnLeftBottom",value:function(t){var e=this.getSize(),i=e.width,o=this.options.padding+10;this.node.style.left=t.left-i-o+"px",this.node.style.top=t.bottom+this.options.padding+this.options.offset-e.height+"px",this.node.style.bottom="",this.node.style.right="",this.tipNode.classList.add("right","position-bottom")}},{key:"positionOnLeftCenter",value:function(t){var e=this.getSize(),i=e.width,o=e.height/2,n=this.options.padding+10,s=(t.bottom-t.top)/2,r=t.top-o+s+this.options.offset;this.node.style.left=t.left-i-n+"px",this.node.style.top=r+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("right","position-center")}},{key:"positionOnRight",value:function(t){var e=this.options.padding+10;this.node.style.left=t.right+e+"px",this.node.style.top=t.top+this.options.offset-this.options.padding+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("left")}},{key:"positionOnRightCenter",value:function(t){var e=this.getSize(),i=this.options.padding+10,o=e.height/2,n=(t.bottom-t.top)/2,s=t.top-o+n+this.options.offset;this.node.style.left=t.right+i+"px",this.node.style.top=s+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("left","position-center")}},{key:"positionOnRightBottom",value:function(t){var e=this.options.padding+10,i=this.getSize();this.node.style.left=t.right+e+"px",this.node.style.top=t.bottom+this.options.padding+this.options.offset-i.height+"px",this.node.style.bottom="",this.node.style.right="",this.tipNode.classList.add("left","position-bottom")}},{key:"positionOnTop",value:function(t){var e=this.getSize().height,i=this.options.padding+10;this.node.style.top=t.top-e-i+"px",this.node.style.left=t.left-this.options.padding+this.options.offset+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("bottom")}},{key:"positionOnTopCenter",value:function(t){var e=this.getSize(),i=e.height,o=e.width/2,n=this.options.padding+10,s=this.options.offset+t.left+(t.right-t.left)/2;this.node.style.top=t.top-i-n+"px",this.node.style.left=s-o-this.options.padding+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("bottom","position-center")}},{key:"positionOnTopRight",value:function(t){var e=this.getSize(),i=e.height,o=this.options.padding+10;this.node.style.top=t.top-i-o+"px",this.node.style.left=t.right+this.options.padding+this.options.offset-e.width+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("bottom","position-right")}},{key:"positionOnBottom",value:function(t){var e=this.options.padding+10;this.node.style.top=t.bottom+e+"px",this.node.style.left=t.left-this.options.padding+this.options.offset+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("top")}},{key:"positionOnBottomCenter",value:function(t){var e=this.getSize().width/2,i=this.options.padding+10,o=this.options.offset+t.left+(t.right-t.left)/2;this.node.style.top=t.bottom+i+"px",this.node.style.left=o-e-this.options.padding+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("top","position-center")}},{key:"positionOnBottomRight",value:function(t){var e=this.getSize(),i=this.options.padding+10;this.node.style.top=t.bottom+i+"px",this.node.style.left=t.right+this.options.padding+this.options.offset-e.width+"px",this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("top","position-right")}},{key:"autoPosition",value:function(t){var e=this.getFullPageSize(),i=this.getSize(),o=e.height,n=i.height,s=this.options.padding+10;t.bottom+n+s>=o?this.positionOnTop(t):this.positionOnBottom(t)}}]),e}();e.default=l,t.exports=e.default},function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var i=0;i<e.length;i++){var o=e[i];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,i,o){return i&&t(e.prototype,i),o&&t(e,o),e}}();var n=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=e.left,o=void 0===i?0:i,n=e.top,s=void 0===n?0:n,r=e.right,h=void 0===r?0:r,l=e.bottom,a=void 0===l?0:l;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.left=o,this.right=h,this.top=s,this.bottom=a}return o(t,[{key:"canHighlight",value:function(){return this.left<this.right&&this.top<this.bottom}},{key:"equals",value:function(t){return Math.round(this.left)===Math.round(t.left)&&Math.round(this.right)===Math.round(t.right)&&Math.round(this.top)===Math.round(t.top)&&Math.round(this.bottom)===Math.round(t.bottom)}}]),t}();e.default=n,t.exports=e.default},function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var i=0;i<e.length;i++){var o=e[i];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,i,o){return i&&t(e.prototype,i),o&&t(e,o),e}}(),n=i(1),s=i(0);var r=function(){function t(e,i,o){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.options=e,this.highlightedElement=null,this.lastHighlightedElement=null,this.hideTimer=null,this.window=i,this.document=o,this.removeNode=this.removeNode.bind(this)}return o(t,[{key:"attachNode",value:function(){var t=this.document.getElementById(n.ID_OVERLAY);t||(t=(0,s.createNodeFromString)(n.OVERLAY_HTML),document.body.appendChild(t)),this.node=t,this.node.style.opacity="0",this.options.animate||this.node.parentElement&&this.node.parentElement.removeChild(this.node)}},{key:"highlight",value:function(t){t&&t.node?t.isSame(this.highlightedElement)||(this.window.clearTimeout(this.hideTimer),t.onHighlightStarted(),this.highlightedElement&&!this.highlightedElement.isSame(this.lastHighlightedElement)&&this.highlightedElement.onDeselected(),t.getCalculatedPosition().canHighlight()&&(this.lastHighlightedElement=this.highlightedElement,this.highlightedElement=t,this.show(),this.highlightedElement.onHighlighted())):console.warn("Invalid element to highlight. Must be an instance of `Element`")}},{key:"show",value:function(){var t=this;this.node&&this.node.parentElement||(this.attachNode(),window.setTimeout(function(){t.node.style.opacity=""+t.options.opacity,t.node.style.position="fixed",t.node.style.left="0",t.node.style.top="0",t.node.style.bottom="0",t.node.style.right="0"}))}},{key:"getHighlightedElement",value:function(){return this.highlightedElement}},{key:"getLastHighlightedElement",value:function(){return this.lastHighlightedElement}},{key:"clear",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this.options.onReset&&this.options.onReset(this.highlightedElement),this.highlightedElement){this.highlightedElement.onDeselected(!0)}this.highlightedElement=null,this.lastHighlightedElement=null,this.node&&(this.window.clearTimeout(this.hideTimer),this.options.animate&&!t?(this.node.style.opacity="0",this.hideTimer=this.window.setTimeout(this.removeNode,n.ANIMATION_DURATION_MS)):this.removeNode())}},{key:"removeNode",value:function(){this.node&&this.node.parentElement&&this.node.parentElement.removeChild(this.node)}},{key:"refresh",value:function(){this.highlightedElement&&(this.highlightedElement.showPopover(),this.highlightedElement.showStage())}}]),t}();e.default=r,t.exports=e.default},function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var i=arguments[e];for(var o in i)Object.prototype.hasOwnProperty.call(i,o)&&(t[o]=i[o])}return t},n=function(){function t(t,e){for(var i=0;i<e.length;i++){var o=e[i];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,i,o){return i&&t(e.prototype,i),o&&t(e,o),e}}(),s=u(i(6)),r=u(i(2)),h=u(i(4)),l=i(1),a=u(i(3)),d=i(0);function u(t){return t&&t.__esModule?t:{default:t}}var p=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.options=o({animate:l.SHOULD_ANIMATE_OVERLAY,opacity:l.OVERLAY_OPACITY,padding:l.OVERLAY_PADDING,scrollIntoViewOptions:null,allowClose:l.SHOULD_OUTSIDE_CLICK_CLOSE,keyboardControl:l.ALLOW_KEYBOARD_CONTROL,overlayClickNext:l.SHOULD_OUTSIDE_CLICK_NEXT,stageBackground:"#ffffff",onHighlightStarted:function(){return null},onHighlighted:function(){return null},onDeselected:function(){return null},onReset:function(){return null},onNext:function(){return null},onPrevious:function(){return null}},e),this.document=document,this.window=window,this.isActivated=!1,this.steps=[],this.currentStep=0,this.currentMovePrevented=!1,this.overlay=new s.default(this.options,window,document),this.onResize=this.onResize.bind(this),this.onKeyUp=this.onKeyUp.bind(this),this.onClick=this.onClick.bind(this),this.moveNext=this.moveNext.bind(this),this.movePrevious=this.movePrevious.bind(this),this.preventMove=this.preventMove.bind(this),this.bind()}return n(t,[{key:"getSteps",value:function(){return this.steps}},{key:"setSteps",value:function(t){this.steps=t}},{key:"bind",value:function(){this.window.addEventListener("resize",this.onResize,!1),this.window.addEventListener("keyup",this.onKeyUp,!1),this.window.addEventListener("click",this.onClick,!1),this.window.addEventListener("touchstart",this.onClick,!1)}},{key:"onClick",value:function(t){if(this.isActivated&&this.hasHighlightedElement()){var e=this.overlay.getHighlightedElement(),i=this.document.getElementById(l.ID_POPOVER),o=e.node.contains(t.target),n=i&&i.contains(t.target);if(o||n||!this.options.overlayClickNext)if(o||n||!this.options.allowClose){var s=t.target.classList.contains(l.CLASS_NEXT_STEP_BTN),r=t.target.classList.contains(l.CLASS_PREV_STEP_BTN);t.target.classList.contains(l.CLASS_CLOSE_BTN)?this.reset():s?this.handleNext():r&&this.handlePrevious()}else this.reset();else this.handleNext()}}},{key:"onResize",value:function(){this.isActivated&&this.overlay.refresh()}},{key:"onKeyUp",value:function(t){this.isActivated&&this.options.keyboardControl&&(t.keyCode!==l.ESC_KEY_CODE?0!==this.steps.length&&(t.keyCode===l.RIGHT_KEY_CODE?this.handleNext():t.keyCode===l.LEFT_KEY_CODE&&this.handlePrevious()):this.reset())}},{key:"movePrevious",value:function(){var t=this.steps[this.currentStep-1];t?(this.overlay.highlight(t),this.currentStep-=1):this.reset()}},{key:"preventMove",value:function(){this.currentMovePrevented=!0}},{key:"handleNext",value:function(){this.currentMovePrevented=!1;var t=this.steps[this.currentStep];t.options.onNext&&t.options.onNext(this.overlay.highlightedElement),this.currentMovePrevented||this.moveNext()}},{key:"handlePrevious",value:function(){this.currentMovePrevented=!1;var t=this.steps[this.currentStep];t.options.onPrevious&&t.options.onPrevious(this.overlay.highlightedElement),this.currentMovePrevented||this.movePrevious()}},{key:"moveNext",value:function(){var t=this.steps[this.currentStep+1];t?(this.overlay.highlight(t),this.currentStep+=1):this.reset()}},{key:"hasNextStep",value:function(){return!!this.steps[this.currentStep+1]}},{key:"hasPreviousStep",value:function(){return!!this.steps[this.currentStep-1]}},{key:"reset",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.currentStep=0,this.isActivated=!1,this.overlay.clear(t)}},{key:"hasHighlightedElement",value:function(){var t=this.overlay.getHighlightedElement();return t&&t.node}},{key:"getHighlightedElement",value:function(){return this.overlay.getHighlightedElement()}},{key:"getLastHighlightedElement",value:function(){return this.overlay.getLastHighlightedElement()}},{key:"defineSteps",value:function(t){this.steps=[];for(var e=0;e<t.length;e++){var i=this.prepareElementFromStep(t[e],t,e);i&&this.steps.push(i)}}},{key:"prepareElementFromStep",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,n={},s=t,l="string"!=typeof t&&!(0,d.isDomElement)(t);if(!t||l&&!t.element)throw new Error("Element is required in step "+i);l&&(s=t.element,n=o({},this.options,t));var u=(0,d.isDomElement)(s)?s:this.document.querySelector(s);if(!u)return console.warn("Element to highlight "+s+" not found"),null;var p=null;if(n.popover&&n.popover.title){var c=o({},this.options,n.popover,{totalCount:e.length,currentIndex:i,isFirst:0===i,isLast:i===e.length-1});p=new h.default(c,this.window,this.document)}var f=o({},this.options,n),v=new a.default(f,this.window,this.document);return new r.default({node:u,options:n,popover:p,stage:v,overlay:this.overlay,window:this.window,document:this.document})}},{key:"start",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;if(!this.steps||0===this.steps.length)throw new Error("There are no steps defined to iterate");this.isActivated=!0,this.currentStep=t,this.overlay.highlight(this.steps[t])}},{key:"highlight",value:function(t){this.isActivated=!0;var e=this.prepareElementFromStep(t);e&&this.overlay.highlight(e)}}]),t}();e.default=p,t.exports=e.default},function(t,e){},function(t,e,i){i(8),t.exports=i(7)}])});
|
2 |
//# sourceMappingURL=driver.min.js.map
|
|
|
1 |
+
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.Driver=e():t.Driver=e()}(window,function(){return function(t){var e={};function n(o){if(e[o])return e[o].exports;var i=e[o]={i:o,l:!1,exports:{}};return t[o].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,o){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:o})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(o,i,function(e){return t[e]}.bind(null,i));return o},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/dist/",n(n.s=79)}([function(t,e,n){var o=n(1),i=n(14),r=n(8),s=n(16),c=n(31),a=function(t,e,n){var u,l,h,f,p=t&a.F,d=t&a.G,v=t&a.S,y=t&a.P,g=t&a.B,m=d?o:v?o[e]||(o[e]={}):(o[e]||{}).prototype,b=d?i:i[e]||(i[e]={}),w=b.prototype||(b.prototype={});for(u in d&&(n=e),n)h=((l=!p&&m&&void 0!==m[u])?m:n)[u],f=g&&l?c(h,o):y&&"function"==typeof h?c(Function.call,h):h,m&&s(m,u,h,t&a.U),b[u]!=h&&r(b,u,f),y&&w[u]!=h&&(w[u]=h)};o.core=i,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e,n){var o=n(28)("wks"),i=n(12),r=n(1).Symbol,s="function"==typeof r;(t.exports=function(t){return o[t]||(o[t]=s&&r[t]||(s?r:i)("Symbol."+t))}).store=o},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){t.exports=!n(5)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e,n){var o=n(13),i=n(54),r=n(32),s=Object.defineProperty;e.f=n(6)?Object.defineProperty:function(t,e,n){if(o(t),e=r(e,!0),o(n),i)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var o=n(7),i=n(17);t.exports=n(6)?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var o=n(0);o(o.S+o.F*!n(6),"Object",{defineProperty:n(7).f})},function(t,e,n){var o=n(50),i=n(29);t.exports=function(t){return o(i(t))}},function(t,e,n){var o=n(43),i=n(22);t.exports=Object.keys||function(t){return o(t,i)}},function(t,e){var n=0,o=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+o).toString(36))}},function(t,e,n){var o=n(3);t.exports=function(t){if(!o(t))throw TypeError(t+" is not an object!");return t}},function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(t,e){t.exports=!1},function(t,e,n){var o=n(1),i=n(8),r=n(4),s=n(12)("src"),c=Function.toString,a=(""+c).split("toString");n(14).inspectSource=function(t){return c.call(t)},(t.exports=function(t,e,n,c){var u="function"==typeof n;u&&(r(n,"name")||i(n,"name",e)),t[e]!==n&&(u&&(r(n,s)||i(n,s,t[e]?""+t[e]:a.join(String(e)))),t===o?t[e]=n:c?t[e]?t[e]=n:i(t,e,n):(delete t[e],i(t,e,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[s]||c.call(this)})},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){"use strict";var o=n(1),i=n(4),r=n(6),s=n(0),c=n(16),a=n(64).KEY,u=n(5),l=n(28),h=n(21),f=n(12),p=n(2),d=n(38),v=n(39),y=n(63),g=n(46),m=n(13),b=n(3),w=n(10),x=n(32),S=n(17),O=n(24),k=n(62),P=n(35),E=n(7),T=n(11),L=P.f,N=E.f,j=k.f,C=o.Symbol,_=o.JSON,H=_&&_.stringify,M=p("_hidden"),B=p("toPrimitive"),F={}.propertyIsEnumerable,I=l("symbol-registry"),R=l("symbols"),A=l("op-symbols"),z=Object.prototype,D="function"==typeof C,V=o.QObject,W=!V||!V.prototype||!V.prototype.findChild,q=r&&u(function(){return 7!=O(N({},"a",{get:function(){return N(this,"a",{value:7}).a}})).a})?function(t,e,n){var o=L(z,e);o&&delete z[e],N(t,e,n),o&&t!==z&&N(z,e,o)}:N,G=function(t){var e=R[t]=O(C.prototype);return e._k=t,e},K=D&&"symbol"==typeof C.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof C},U=function(t,e,n){return t===z&&U(A,e,n),m(t),e=x(e,!0),m(n),i(R,e)?(n.enumerable?(i(t,M)&&t[M][e]&&(t[M][e]=!1),n=O(n,{enumerable:S(0,!1)})):(i(t,M)||N(t,M,S(1,{})),t[M][e]=!0),q(t,e,n)):N(t,e,n)},Y=function(t,e){m(t);for(var n,o=y(e=w(e)),i=0,r=o.length;r>i;)U(t,n=o[i++],e[n]);return t},J=function(t){var e=F.call(this,t=x(t,!0));return!(this===z&&i(R,t)&&!i(A,t))&&(!(e||!i(this,t)||!i(R,t)||i(this,M)&&this[M][t])||e)},X=function(t,e){if(t=w(t),e=x(e,!0),t!==z||!i(R,e)||i(A,e)){var n=L(t,e);return!n||!i(R,e)||i(t,M)&&t[M][e]||(n.enumerable=!0),n}},Q=function(t){for(var e,n=j(w(t)),o=[],r=0;n.length>r;)i(R,e=n[r++])||e==M||e==a||o.push(e);return o},$=function(t){for(var e,n=t===z,o=j(n?A:w(t)),r=[],s=0;o.length>s;)!i(R,e=o[s++])||n&&!i(z,e)||r.push(R[e]);return r};D||(c((C=function(){if(this instanceof C)throw TypeError("Symbol is not a constructor!");var t=f(arguments.length>0?arguments[0]:void 0),e=function(n){this===z&&e.call(A,n),i(this,M)&&i(this[M],t)&&(this[M][t]=!1),q(this,t,S(1,n))};return r&&W&&q(z,t,{configurable:!0,set:e}),G(t)}).prototype,"toString",function(){return this._k}),P.f=X,E.f=U,n(36).f=k.f=Q,n(18).f=J,n(37).f=$,r&&!n(15)&&c(z,"propertyIsEnumerable",J,!0),d.f=function(t){return G(p(t))}),s(s.G+s.W+s.F*!D,{Symbol:C});for(var Z="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),tt=0;Z.length>tt;)p(Z[tt++]);for(var et=T(p.store),nt=0;et.length>nt;)v(et[nt++]);s(s.S+s.F*!D,"Symbol",{for:function(t){return i(I,t+="")?I[t]:I[t]=C(t)},keyFor:function(t){if(!K(t))throw TypeError(t+" is not a symbol!");for(var e in I)if(I[e]===t)return e},useSetter:function(){W=!0},useSimple:function(){W=!1}}),s(s.S+s.F*!D,"Object",{create:function(t,e){return void 0===e?O(t):Y(O(t),e)},defineProperty:U,defineProperties:Y,getOwnPropertyDescriptor:X,getOwnPropertyNames:Q,getOwnPropertySymbols:$}),_&&s(s.S+s.F*(!D||u(function(){var t=C();return"[null]"!=H([t])||"{}"!=H({a:t})||"{}"!=H(Object(t))})),"JSON",{stringify:function(t){for(var e,n,o=[t],i=1;arguments.length>i;)o.push(arguments[i++]);if(n=e=o[1],(b(e)||void 0!==t)&&!K(t))return g(e)||(e=function(t,e){if("function"==typeof n&&(e=n.call(this,t,e)),!K(e))return e}),o[1]=e,H.apply(_,o)}}),C.prototype[B]||n(8)(C.prototype,B,C.prototype.valueOf),h(C,"Symbol"),h(Math,"Math",!0),h(o.JSON,"JSON",!0)},function(t,e,n){n(39)("asyncIterator")},function(t,e,n){var o=n(7).f,i=n(4),r=n(2)("toStringTag");t.exports=function(t,e,n){t&&!i(t=n?t:t.prototype,r)&&o(t,r,{configurable:!0,value:e})}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var o=n(28)("keys"),i=n(12);t.exports=function(t){return o[t]||(o[t]=i(t))}},function(t,e,n){var o=n(13),i=n(71),r=n(22),s=n(23)("IE_PROTO"),c=function(){},a=function(){var t,e=n(53)("iframe"),o=r.length;for(e.style.display="none",n(69).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),a=t.F;o--;)delete a.prototype[r[o]];return a()};t.exports=Object.create||function(t,e){var n;return null!==t?(c.prototype=o(t),n=new c,c.prototype=null,n[s]=t):n=a(),void 0===e?n:i(n,e)}},function(t,e){t.exports={}},function(t,e,n){"use strict";var o=n(75),i=n(74),r=n(25),s=n(10);t.exports=n(73)(Array,"Array",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,i(1)):i(0,"keys"==e?n:"values"==e?t[n]:[n,t[n]])},"values"),r.Arguments=r.Array,o("keys"),o("values"),o("entries")},function(t,e,n){"use strict";var o=n(5);t.exports=function(t,e){return!!t&&o(function(){e?t.call(null,function(){},1):t.call(null)})}},function(t,e,n){var o=n(14),i=n(1),r=i["__core-js_shared__"]||(i["__core-js_shared__"]={});(t.exports=function(t,e){return r[t]||(r[t]=void 0!==e?e:{})})("versions",[]).push({version:o.version,mode:n(15)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){var o=n(29);t.exports=function(t){return Object(o(t))}},function(t,e,n){var o=n(52);t.exports=function(t,e,n){if(o(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,o){return t.call(e,n,o)};case 3:return function(n,o,i){return t.call(e,n,o,i)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var o=n(3);t.exports=function(t,e){if(!o(t))return t;var n,i;if(e&&"function"==typeof(n=t.toString)&&!o(i=n.call(t)))return i;if("function"==typeof(n=t.valueOf)&&!o(i=n.call(t)))return i;if(!e&&"function"==typeof(n=t.toString)&&!o(i=n.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var o=n(0);o(o.S,"Object",{setPrototypeOf:n(57).set})},function(t,e,n){var o=n(0);o(o.S,"Object",{create:n(24)})},function(t,e,n){var o=n(18),i=n(17),r=n(10),s=n(32),c=n(4),a=n(54),u=Object.getOwnPropertyDescriptor;e.f=n(6)?u:function(t,e){if(t=r(t),e=s(e,!0),a)try{return u(t,e)}catch(t){}if(c(t,e))return i(!o.f.call(t,e),t[e])}},function(t,e,n){var o=n(43),i=n(22).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return o(t,i)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){e.f=n(2)},function(t,e,n){var o=n(1),i=n(14),r=n(15),s=n(38),c=n(7).f;t.exports=function(t){var e=i.Symbol||(i.Symbol=r?{}:o.Symbol||{});"_"==t.charAt(0)||t in e||c(e,t,{value:s.f(t)})}},function(t,e,n){var o=n(0);o(o.P,"Function",{bind:n(66)})},function(t,e,n){var o=n(30),i=n(11);n(67)("keys",function(){return function(t){return i(o(t))}})},function(t,e,n){var o=n(10),i=n(48),r=n(70);t.exports=function(t){return function(e,n,s){var c,a=o(e),u=i(a.length),l=r(s,u);if(t&&n!=n){for(;u>l;)if((c=a[l++])!=c)return!0}else for(;u>l;l++)if((t||l in a)&&a[l]===n)return t||l||0;return!t&&-1}}},function(t,e,n){var o=n(4),i=n(10),r=n(42)(!1),s=n(23)("IE_PROTO");t.exports=function(t,e){var n,c=i(t),a=0,u=[];for(n in c)n!=s&&o(c,n)&&u.push(n);for(;e.length>a;)o(c,n=e[a++])&&(~r(u,n)||u.push(n));return u}},function(t,e,n){for(var o=n(26),i=n(11),r=n(16),s=n(1),c=n(8),a=n(25),u=n(2),l=u("iterator"),h=u("toStringTag"),f=a.Array,p={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},d=i(p),v=0;v<d.length;v++){var y,g=d[v],m=p[g],b=s[g],w=b&&b.prototype;if(w&&(w[l]||c(w,l,f),w[h]||c(w,h,g),a[g]=f,m))for(y in o)w[y]||r(w,y,o[y],!0)}},function(t,e,n){"use strict";var o=n(0),i=n(51)(2);o(o.P+o.F*!n(27)([].filter,!0),"Array",{filter:function(t){return i(this,t,arguments[1])}})},function(t,e,n){var o=n(49);t.exports=Array.isArray||function(t){return"Array"==o(t)}},function(t,e){var n=Math.ceil,o=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?o:n)(t)}},function(t,e,n){var o=n(47),i=Math.min;t.exports=function(t){return t>0?i(o(t),9007199254740991):0}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var o=n(49);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==o(t)?t.split(""):Object(t)}},function(t,e,n){var o=n(31),i=n(50),r=n(30),s=n(48),c=n(77);t.exports=function(t,e){var n=1==t,a=2==t,u=3==t,l=4==t,h=6==t,f=5==t||h,p=e||c;return function(e,c,d){for(var v,y,g=r(e),m=i(g),b=o(c,d,3),w=s(m.length),x=0,S=n?p(e,w):a?p(e,0):void 0;w>x;x++)if((f||x in m)&&(y=b(v=m[x],x,g),t))if(n)S[x]=y;else if(y)switch(t){case 3:return!0;case 5:return v;case 6:return x;case 2:S.push(v)}else if(l)return!1;return h?-1:u||l?l:S}}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e,n){var o=n(3),i=n(1).document,r=o(i)&&o(i.createElement);t.exports=function(t){return r?i.createElement(t):{}}},function(t,e,n){t.exports=!n(6)&&!n(5)(function(){return 7!=Object.defineProperty(n(53)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){"use strict";var o=n(0),i=n(51)(0),r=n(27)([].forEach,!0);o(o.P+o.F*!r,"Array",{forEach:function(t){return i(this,t,arguments[1])}})},function(t,e,n){"use strict";n.r(e);n(55),n(45),n(44),n(26),n(41),n(9),n(40);var o=.75,i=10,r=!0,s=!0,c=!0,a=!1,u="driver-highlighted-element-stage",l='\n <div id="'.concat("driver-popover-item",'">\n <div class="').concat("driver-popover-tip",'"></div>\n <div class="').concat("driver-popover-title",'">Popover Title</div>\n <div class="').concat("driver-popover-description",'">Popover Description</div>\n <div class="').concat("driver-popover-footer",'">\n <button class="').concat("driver-close-btn",'">Close</button>\n <span class="driver-btn-group">\n <button class="').concat("driver-prev-btn",'">← Previous</button>\n <button class="').concat("driver-next-btn",'">Next →</button>\n </span>\n </div>\n </div>'),h='<div id="'.concat("driver-page-overlay",'"></div>'),f='<div id="'.concat(u,'"></div>');n(20),n(19),n(61);function p(t){return(p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var d=function(t){var e=document.createElement("div");return e.innerHTML=t.trim(),e.firstChild},v=function t(e,n){if(arguments.length>2&&void 0!==arguments[2]&&arguments[2]){for(var o=["","-webkit-","-ms-","moz-","-o-"],i=0;i<o.length;i++){var r=t(e,o[i]+n);if(r)return r}return""}var s="";return e.currentStyle?s=e.currentStyle[n]:document.defaultView&&document.defaultView.getComputedStyle&&(s=document.defaultView.getComputedStyle(e,null).getPropertyValue(n)),s&&s.toLowerCase?s.toLowerCase():s},y=function(t){return t&&"object"===p(t)&&"nodeType"in t};function g(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}var m=function(){function t(e,n,o){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.options=e,this.highlightedElement=null,this.lastHighlightedElement=null,this.hideTimer=null,this.window=n,this.document=o,this.removeNode=this.removeNode.bind(this)}return function(t,e,n){e&&g(t.prototype,e),n&&g(t,n)}(t,[{key:"attachNode",value:function(){var t=this.document.getElementById("driver-page-overlay");t||(t=d(h),document.body.appendChild(t)),this.node=t,this.node.style.opacity="0",this.options.animate||this.node.parentElement&&this.node.parentElement.removeChild(this.node)}},{key:"highlight",value:function(t){t&&t.node?t.isSame(this.highlightedElement)||(this.window.clearTimeout(this.hideTimer),t.onHighlightStarted(),this.highlightedElement&&!this.highlightedElement.isSame(this.lastHighlightedElement)&&this.highlightedElement.onDeselected(),t.getCalculatedPosition().canHighlight()&&(this.lastHighlightedElement=this.highlightedElement,this.highlightedElement=t,this.show(),this.highlightedElement.onHighlighted())):console.warn("Invalid element to highlight. Must be an instance of `Element`")}},{key:"show",value:function(){var t=this;this.node&&this.node.parentElement||(this.attachNode(),window.setTimeout(function(){t.node.style.opacity="".concat(t.options.opacity),t.node.style.position="fixed",t.node.style.left="0",t.node.style.top="0",t.node.style.bottom="0",t.node.style.right="0"}))}},{key:"getHighlightedElement",value:function(){return this.highlightedElement}},{key:"getLastHighlightedElement",value:function(){return this.lastHighlightedElement}},{key:"clear",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this.options.onReset&&this.options.onReset(this.highlightedElement),this.highlightedElement){this.highlightedElement.onDeselected(!0)}this.highlightedElement=null,this.lastHighlightedElement=null,this.node&&(this.window.clearTimeout(this.hideTimer),this.options.animate&&!t?(this.node.style.opacity="0",this.hideTimer=this.window.setTimeout(this.removeNode,400)):this.removeNode())}},{key:"removeNode",value:function(){this.node&&this.node.parentElement&&this.node.parentElement.removeChild(this.node)}},{key:"refresh",value:function(){this.highlightedElement&&(this.highlightedElement.showPopover(),this.highlightedElement.showStage())}}]),t}();n(58);function b(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}var w=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.left,o=void 0===n?0:n,i=e.top,r=void 0===i?0:i,s=e.right,c=void 0===s?0:s,a=e.bottom,u=void 0===a?0:a;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.left=o,this.right=c,this.top=r,this.bottom=u}return function(t,e,n){e&&b(t.prototype,e),n&&b(t,n)}(t,[{key:"canHighlight",value:function(){return this.left<this.right&&this.top<this.bottom}}]),t}();function x(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}var S=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.node,o=e.options,i=e.popover,r=e.stage,s=e.overlay,c=e.window,a=e.document;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.node=n,this.document=a,this.window=c,this.options=o,this.overlay=s,this.popover=i,this.stage=r,this.animationTimeout=null}return function(t,e,n){e&&x(t.prototype,e),n&&x(t,n)}(t,[{key:"isInView",value:function(){for(var t=this.node.offsetTop,e=this.node.offsetLeft,n=this.node.offsetWidth,o=this.node.offsetHeight,i=this.node;i.offsetParent;)t+=(i=i.offsetParent).offsetTop,e+=i.offsetLeft;return t>=this.window.pageYOffset&&e>=this.window.pageXOffset&&t+o<=this.window.pageYOffset+this.window.innerHeight&&e+n<=this.window.pageXOffset+this.window.innerWidth}},{key:"scrollManually",value:function(){var t=this.node.getBoundingClientRect().top+this.window.pageYOffset-this.window.innerHeight/2;this.window.scrollTo(0,t)}},{key:"bringInView",value:function(){if(!this.isInView())if(this.node.scrollIntoView)try{this.node.scrollIntoView(this.options.scrollIntoViewOptions||{behavior:"instant",block:"center"})}catch(t){this.scrollManually()}else this.scrollManually()}},{key:"getCalculatedPosition",value:function(){var t=this.document.body,e=this.document.documentElement,n=this.window,o=this.window.pageYOffset||e.scrollTop||t.scrollTop,i=n.pageXOffset||e.scrollLeft||t.scrollLeft,r=this.node.getBoundingClientRect();return new w({top:r.top+o,left:r.left+i,right:r.left+i+r.width,bottom:r.top+o+r.height})}},{key:"getPopover",value:function(){return this.popover}},{key:"onDeselected",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.hidePopover(),t&&this.hideStage(),this.removeHighlightClasses(),this.window.clearTimeout(this.animationTimeout),this.options.onDeselected&&this.options.onDeselected(this)}},{key:"isSame",value:function(t){return!(!t||!t.node)&&t.node===this.node}},{key:"onHighlightStarted",value:function(){this.options.onHighlightStarted&&this.options.onHighlightStarted(this)}},{key:"onHighlighted",value:function(){this.showPopover(),this.showStage(),this.addHighlightClasses();var t=this.popover;t&&!t.isInView()&&t.bringInView(),this.isInView()||this.bringInView(),this.options.onHighlighted&&this.options.onHighlighted(this)}},{key:"removeHighlightClasses",value:function(){this.node.classList.remove("driver-highlighted-element"),this.node.classList.remove("driver-position-relative");for(var t=this.document.querySelectorAll(".".concat("driver-fix-stacking")),e=0;e<t.length;e++)t[e].classList.remove("driver-fix-stacking")}},{key:"addHighlightClasses",value:function(){this.node.classList.add("driver-highlighted-element"),this.canMakeRelative()&&this.node.classList.add("driver-position-relative"),this.fixStackingContext()}},{key:"fixStackingContext",value:function(){for(var t=this.node.parentNode;t&&t.tagName&&"body"!==t.tagName.toLowerCase();){var e=v(t,"z-index"),n=parseFloat(v(t,"opacity")),o=v(t,"transform",!0),i=v(t,"transform-style",!0),r=v(t,"transform-box",!0),s=v(t,"filter",!0),c=v(t,"perspective",!0);(/[0-9]+/.test(e)||n<1||o&&"none"!==o||i&&"flat"!==i||r&&"border-box"!==r||s&&"none"!==s||c&&"none"!==c)&&t.classList.add("driver-fix-stacking"),t=t.parentNode}}},{key:"canMakeRelative",value:function(){var t=this.getStyleProperty("position");return-1===["absolute","fixed","relative"].indexOf(t)}},{key:"getStyleProperty",value:function(t){return v(this.node,t)}},{key:"showStage",value:function(){this.stage.show(this.getCalculatedPosition())}},{key:"getNode",value:function(){return this.node}},{key:"hideStage",value:function(){this.stage.hide()}},{key:"hidePopover",value:function(){this.popover&&this.popover.hide()}},{key:"showPopover",value:function(){var t=this;if(this.popover){var e=this.getCalculatedPosition(),n=400;this.options.animate&&this.overlay.lastHighlightedElement||(n=0),this.animationTimeout=this.window.setTimeout(function(){t.popover.show(e)},n)}}},{key:"getFullPageSize",value:function(){var t=this.document.body,e=this.document.documentElement;return{height:Math.max(t.scrollHeight,t.offsetHeight,e.scrollHeight,e.offsetHeight),width:Math.max(t.scrollWidth,t.offsetWidth,e.scrollWidth,e.offsetWidth)}}},{key:"getSize",value:function(){return{height:Math.max(this.node.scrollHeight,this.node.offsetHeight),width:Math.max(this.node.scrollWidth,this.node.offsetWidth)}}}]),t}();n(34),n(33);function O(t){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function k(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function P(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function E(t,e){return!e||"object"!==O(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function T(t){return(T=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function L(t,e){return(L=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}var N=function(t){function e(t,n,o){var i;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(i=E(this,T(e).call(this))).options=function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){k(t,e,n[e])})}return t}({isFirst:!0,isLast:!0,totalCount:1,currentIndex:0,offset:0,showButtons:!0,closeBtnText:"Close",doneBtnText:"Done",startBtnText:"Next →",nextBtnText:"Next →",prevBtnText:"← Previous"},t),i.window=n,i.document=o,i.attachNode(),i.hide(),i}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&L(t,e)}(e,S),function(t,e,n){e&&P(t.prototype,e),n&&P(t,n)}(e,[{key:"attachNode",value:function(){var t=this.document.getElementById("driver-popover-item");t||(t=d(l),document.body.appendChild(t)),this.node=t,this.tipNode=t.querySelector(".".concat("driver-popover-tip")),this.titleNode=t.querySelector(".".concat("driver-popover-title")),this.descriptionNode=t.querySelector(".".concat("driver-popover-description")),this.footerNode=t.querySelector(".".concat("driver-popover-footer")),this.nextBtnNode=t.querySelector(".".concat("driver-next-btn")),this.prevBtnNode=t.querySelector(".".concat("driver-prev-btn")),this.closeBtnNode=t.querySelector(".".concat("driver-close-btn"))}},{key:"getTitleNode",value:function(){return this.titleNode}},{key:"getDescriptionNode",value:function(){return this.descriptionNode}},{key:"hide",value:function(){this.node.style.display="none"}},{key:"setInitialState",value:function(){this.node.style.display="block",this.node.style.left="0",this.node.style.top="0",this.node.style.bottom="",this.node.style.right="",this.node.querySelector(".".concat("driver-popover-tip")).className="driver-popover-tip"}},{key:"show",value:function(t){switch(this.setInitialState(),this.titleNode.innerHTML=this.options.title,this.descriptionNode.innerHTML=this.options.description||"",this.renderFooter(),this.options.position){case"left":case"left-top":this.positionOnLeft(t);break;case"left-center":this.positionOnLeftCenter(t);break;case"left-bottom":this.positionOnLeftBottom(t);break;case"right":case"right-top":this.positionOnRight(t);break;case"right-center":this.positionOnRightCenter(t);break;case"right-bottom":this.positionOnRightBottom(t);break;case"top":case"top-left":this.positionOnTop(t);break;case"top-center":this.positionOnTopCenter(t);break;case"top-right":this.positionOnTopRight(t);break;case"bottom":case"bottom-left":this.positionOnBottom(t);break;case"bottom-center":this.positionOnBottomCenter(t);break;case"bottom-right":this.positionOnBottomRight(t);break;case"auto":default:this.autoPosition(t)}}},{key:"renderFooter",value:function(){this.nextBtnNode.innerHTML=this.options.nextBtnText,this.prevBtnNode.innerHTML=this.options.prevBtnText,this.closeBtnNode.innerHTML=this.options.closeBtnText,this.options.showButtons&&this.options.totalCount&&1!==this.options.totalCount?(this.footerNode.style.display="block",this.options.isFirst?(this.prevBtnNode.classList.add("driver-disabled"),this.nextBtnNode.innerHTML=this.options.startBtnText):this.prevBtnNode.classList.remove("driver-disabled"),this.options.isLast?this.nextBtnNode.innerHTML=this.options.doneBtnText:this.nextBtnNode.innerHTML=this.options.nextBtnText):this.footerNode.style.display="none"}},{key:"positionOnLeft",value:function(t){var e=this.getSize().width,n=this.options.padding+10;this.node.style.left="".concat(t.left-e-n,"px"),this.node.style.top="".concat(t.top+this.options.offset-this.options.padding,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("right")}},{key:"positionOnLeftBottom",value:function(t){var e=this.getSize(),n=e.width,o=this.options.padding+10;this.node.style.left="".concat(t.left-n-o,"px"),this.node.style.top="".concat(t.bottom+this.options.padding+this.options.offset-e.height,"px"),this.node.style.bottom="",this.node.style.right="",this.tipNode.classList.add("right","position-bottom")}},{key:"positionOnLeftCenter",value:function(t){var e=this.getSize(),n=e.width,o=e.height/2,i=this.options.padding+10,r=(t.bottom-t.top)/2,s=t.top-o+r+this.options.offset;this.node.style.left="".concat(t.left-n-i,"px"),this.node.style.top="".concat(s,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("right","position-center")}},{key:"positionOnRight",value:function(t){var e=this.options.padding+10;this.node.style.left="".concat(t.right+e,"px"),this.node.style.top="".concat(t.top+this.options.offset-this.options.padding,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("left")}},{key:"positionOnRightCenter",value:function(t){var e=this.getSize(),n=this.options.padding+10,o=e.height/2,i=(t.bottom-t.top)/2,r=t.top-o+i+this.options.offset;this.node.style.left="".concat(t.right+n,"px"),this.node.style.top="".concat(r,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("left","position-center")}},{key:"positionOnRightBottom",value:function(t){var e=this.options.padding+10,n=this.getSize();this.node.style.left="".concat(t.right+e,"px"),this.node.style.top="".concat(t.bottom+this.options.padding+this.options.offset-n.height,"px"),this.node.style.bottom="",this.node.style.right="",this.tipNode.classList.add("left","position-bottom")}},{key:"positionOnTop",value:function(t){var e=this.getSize().height,n=this.options.padding+10;this.node.style.top="".concat(t.top-e-n,"px"),this.node.style.left="".concat(t.left-this.options.padding+this.options.offset,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("bottom")}},{key:"positionOnTopCenter",value:function(t){var e=this.getSize(),n=e.height,o=e.width/2,i=this.options.padding+10,r=this.options.offset+t.left+(t.right-t.left)/2;this.node.style.top="".concat(t.top-n-i,"px"),this.node.style.left="".concat(r-o-this.options.padding,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("bottom","position-center")}},{key:"positionOnTopRight",value:function(t){var e=this.getSize(),n=e.height,o=this.options.padding+10;this.node.style.top="".concat(t.top-n-o,"px"),this.node.style.left="".concat(t.right+this.options.padding+this.options.offset-e.width,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("bottom","position-right")}},{key:"positionOnBottom",value:function(t){var e=this.options.padding+10;this.node.style.top="".concat(t.bottom+e,"px"),this.node.style.left="".concat(t.left-this.options.padding+this.options.offset,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("top")}},{key:"positionOnBottomCenter",value:function(t){var e=this.getSize().width/2,n=this.options.padding+10,o=this.options.offset+t.left+(t.right-t.left)/2;this.node.style.top="".concat(t.bottom+n,"px"),this.node.style.left="".concat(o-e-this.options.padding,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("top","position-center")}},{key:"positionOnBottomRight",value:function(t){var e=this.getSize(),n=this.options.padding+10;this.node.style.top="".concat(t.bottom+n,"px"),this.node.style.left="".concat(t.right+this.options.padding+this.options.offset-e.width,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("top","position-right")}},{key:"autoPosition",value:function(t){var e=this.getFullPageSize(),n=this.getSize(),o=e.height,i=n.height,r=this.options.padding+10;t.bottom+i+r>=o?this.positionOnTop(t):this.positionOnBottom(t)}}]),e}();function j(t){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function C(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function _(t,e){return!e||"object"!==j(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function H(t){return(H=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function M(t,e){return(M=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}var B=function(t){function e(t,n,o){var i;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(i=_(this,H(e).call(this))).options=t,i.window=n,i.document=o,i}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&M(t,e)}(e,S),function(t,e,n){e&&C(t.prototype,e),n&&C(t,n)}(e,[{key:"attachNode",value:function(){var t=this.document.getElementById(u);t||(t=d(f),document.body.appendChild(t)),this.node=t,this.options.animate?this.node.classList.remove("driver-stage-no-animation"):this.node.classList.add("driver-stage-no-animation")}},{key:"hide",value:function(){this.node&&this.node.parentElement&&this.node.parentElement.removeChild(this.node)}},{key:"setInitialStyle",value:function(){this.node.style.display="block",this.node.style.left="0",this.node.style.top="0",this.node.style.bottom="",this.node.style.right=""}},{key:"show",value:function(t){this.attachNode(),this.setInitialStyle();var e=2*this.options.padding,n=t.right-t.left+e,o=t.bottom-t.top+e;this.node.style.display="block",this.node.style.position="absolute",this.node.style.width="".concat(n,"px"),this.node.style.height="".concat(o,"px"),this.node.style.top="".concat(t.top-e/2,"px"),this.node.style.left="".concat(t.left-e/2,"px"),this.node.style.backgroundColor=this.options.stageBackground}}]),e}();function F(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),o.forEach(function(e){I(t,e,n[e])})}return t}function I(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function R(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}n.d(e,"default",function(){return A});var A=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.options=F({animate:r,opacity:o,padding:i,scrollIntoViewOptions:null,allowClose:s,keyboardControl:c,overlayClickNext:a,stageBackground:"#ffffff",onHighlightStarted:function(){return null},onHighlighted:function(){return null},onDeselected:function(){return null},onReset:function(){return null},onNext:function(){return null},onPrevious:function(){return null}},e),this.document=document,this.window=window,this.isActivated=!1,this.steps=[],this.currentStep=0,this.currentMovePrevented=!1,this.overlay=new m(this.options,window,document),this.onResize=this.onResize.bind(this),this.onKeyUp=this.onKeyUp.bind(this),this.onClick=this.onClick.bind(this),this.moveNext=this.moveNext.bind(this),this.movePrevious=this.movePrevious.bind(this),this.preventMove=this.preventMove.bind(this),this.bind()}return function(t,e,n){e&&R(t.prototype,e),n&&R(t,n)}(t,[{key:"getSteps",value:function(){return this.steps}},{key:"setSteps",value:function(t){this.steps=t}},{key:"bind",value:function(){this.window.addEventListener("resize",this.onResize,!1),this.window.addEventListener("keyup",this.onKeyUp,!1),this.window.addEventListener("click",this.onClick,!1),this.window.addEventListener("touchstart",this.onClick,!1)}},{key:"onClick",value:function(t){if(this.isActivated&&this.hasHighlightedElement()){var e=this.overlay.getHighlightedElement(),n=this.document.getElementById("driver-popover-item"),o=e.node.contains(t.target),i=n&&n.contains(t.target);if(o||i||!this.options.overlayClickNext)if(o||i||!this.options.allowClose){var r=t.target.classList.contains("driver-next-btn"),s=t.target.classList.contains("driver-prev-btn");t.target.classList.contains("driver-close-btn")?this.reset():r?this.handleNext():s&&this.handlePrevious()}else this.reset();else this.handleNext()}}},{key:"onResize",value:function(){this.isActivated&&this.overlay.refresh()}},{key:"onKeyUp",value:function(t){this.isActivated&&this.options.keyboardControl&&(27!==t.keyCode?0!==this.steps.length&&(39===t.keyCode?this.handleNext():37===t.keyCode&&this.handlePrevious()):this.reset())}},{key:"movePrevious",value:function(){var t=this.steps[this.currentStep-1];t?(this.overlay.highlight(t),this.currentStep-=1):this.reset()}},{key:"preventMove",value:function(){this.currentMovePrevented=!0}},{key:"handleNext",value:function(){this.currentMovePrevented=!1;var t=this.steps[this.currentStep];t.options.onNext&&t.options.onNext(this.overlay.highlightedElement),this.currentMovePrevented||this.moveNext()}},{key:"handlePrevious",value:function(){this.currentMovePrevented=!1;var t=this.steps[this.currentStep];t.options.onPrevious&&t.options.onPrevious(this.overlay.highlightedElement),this.currentMovePrevented||this.movePrevious()}},{key:"moveNext",value:function(){var t=this.steps[this.currentStep+1];t?(this.overlay.highlight(t),this.currentStep+=1):this.reset()}},{key:"hasNextStep",value:function(){return!!this.steps[this.currentStep+1]}},{key:"hasPreviousStep",value:function(){return!!this.steps[this.currentStep-1]}},{key:"reset",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.currentStep=0,this.isActivated=!1,this.overlay.clear(t)}},{key:"hasHighlightedElement",value:function(){var t=this.overlay.getHighlightedElement();return t&&t.node}},{key:"getHighlightedElement",value:function(){return this.overlay.getHighlightedElement()}},{key:"getLastHighlightedElement",value:function(){return this.overlay.getLastHighlightedElement()}},{key:"defineSteps",value:function(t){this.steps=[];for(var e=0;e<t.length;e++){var n=this.prepareElementFromStep(t[e],t,e);n&&this.steps.push(n)}}},{key:"prepareElementFromStep",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o={},i=t,r="string"!=typeof t&&!y(t);if(!t||r&&!t.element)throw new Error("Element is required in step ".concat(n));r&&(i=t.element,o=F({},this.options,t));var s=y(i)?i:this.document.querySelector(i);if(!s)return console.warn("Element to highlight ".concat(i," not found")),null;var c=null;if(o.popover&&o.popover.title){var a=F({},this.options,o.popover,{totalCount:e.length,currentIndex:n,isFirst:0===n,isLast:n===e.length-1});c=new N(a,this.window,this.document)}var u=F({},this.options,o),l=new B(u,this.window,this.document);return new S({node:s,options:o,popover:c,stage:l,overlay:this.overlay,window:this.window,document:this.document})}},{key:"start",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;if(!this.steps||0===this.steps.length)throw new Error("There are no steps defined to iterate");this.isActivated=!0,this.currentStep=t,this.overlay.highlight(this.steps[t])}},{key:"highlight",value:function(t){this.isActivated=!0;var e=this.prepareElementFromStep(t);e&&this.overlay.highlight(e)}}]),t}()},function(t,e,n){var o=n(3),i=n(13),r=function(t,e){if(i(t),!o(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,o){try{(o=n(31)(Function.call,n(35).f(Object.prototype,"__proto__").set,2))(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return r(t,n),e?t.__proto__=n:o(t,n),t}}({},!1):void 0),check:r}},function(t,e,n){"use strict";var o=n(0),i=n(42)(!1),r=[].indexOf,s=!!r&&1/[1].indexOf(1,-0)<0;o(o.P+o.F*(s||!n(27)(r)),"Array",{indexOf:function(t){return s?r.apply(this,arguments)||0:i(this,t,arguments[1])}})},function(t,e){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},function(t,e,n){var o=n(0),i=n(29),r=n(5),s=n(59),c="["+s+"]",a=RegExp("^"+c+c+"*"),u=RegExp(c+c+"*$"),l=function(t,e,n){var i={},c=r(function(){return!!s[t]()||"
"!="
"[t]()}),a=i[t]=c?e(h):s[t];n&&(i[n]=a),o(o.P+o.F*c,"String",i)},h=l.trim=function(t,e){return t=String(i(t)),1&e&&(t=t.replace(a,"")),2&e&&(t=t.replace(u,"")),t};t.exports=l},function(t,e,n){"use strict";n(60)("trim",function(t){return function(){return t(this,3)}})},function(t,e,n){var o=n(10),i=n(36).f,r={}.toString,s="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return s&&"[object Window]"==r.call(t)?function(t){try{return i(t)}catch(t){return s.slice()}}(t):i(o(t))}},function(t,e,n){var o=n(11),i=n(37),r=n(18);t.exports=function(t){var e=o(t),n=i.f;if(n)for(var s,c=n(t),a=r.f,u=0;c.length>u;)a.call(t,s=c[u++])&&e.push(s);return e}},function(t,e,n){var o=n(12)("meta"),i=n(3),r=n(4),s=n(7).f,c=0,a=Object.isExtensible||function(){return!0},u=!n(5)(function(){return a(Object.preventExtensions({}))}),l=function(t){s(t,o,{value:{i:"O"+ ++c,w:{}}})},h=t.exports={KEY:o,NEED:!1,fastKey:function(t,e){if(!i(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!r(t,o)){if(!a(t))return"F";if(!e)return"E";l(t)}return t[o].i},getWeak:function(t,e){if(!r(t,o)){if(!a(t))return!0;if(!e)return!1;l(t)}return t[o].w},onFreeze:function(t){return u&&h.NEED&&a(t)&&!r(t,o)&&l(t),t}}},function(t,e){t.exports=function(t,e,n){var o=void 0===n;switch(e.length){case 0:return o?t():t.call(n);case 1:return o?t(e[0]):t.call(n,e[0]);case 2:return o?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return o?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return o?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},function(t,e,n){"use strict";var o=n(52),i=n(3),r=n(65),s=[].slice,c={};t.exports=Function.bind||function(t){var e=o(this),n=s.call(arguments,1),a=function(){var o=n.concat(s.call(arguments));return this instanceof a?function(t,e,n){if(!(e in c)){for(var o=[],i=0;i<e;i++)o[i]="a["+i+"]";c[e]=Function("F,a","return new F("+o.join(",")+")")}return c[e](t,n)}(e,o.length,o):r(e,o,t)};return i(e.prototype)&&(a.prototype=e.prototype),a}},function(t,e,n){var o=n(0),i=n(14),r=n(5);t.exports=function(t,e){var n=(i.Object||{})[t]||Object[t],s={};s[t]=e(n),o(o.S+o.F*r(function(){n(1)}),"Object",s)}},function(t,e,n){var o=n(4),i=n(30),r=n(23)("IE_PROTO"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=i(t),o(t,r)?t[r]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e,n){var o=n(1).document;t.exports=o&&o.documentElement},function(t,e,n){var o=n(47),i=Math.max,r=Math.min;t.exports=function(t,e){return(t=o(t))<0?i(t+e,0):r(t,e)}},function(t,e,n){var o=n(7),i=n(13),r=n(11);t.exports=n(6)?Object.defineProperties:function(t,e){i(t);for(var n,s=r(e),c=s.length,a=0;c>a;)o.f(t,n=s[a++],e[n]);return t}},function(t,e,n){"use strict";var o=n(24),i=n(17),r=n(21),s={};n(8)(s,n(2)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=o(s,{next:i(1,n)}),r(t,e+" Iterator")}},function(t,e,n){"use strict";var o=n(15),i=n(0),r=n(16),s=n(8),c=n(25),a=n(72),u=n(21),l=n(68),h=n(2)("iterator"),f=!([].keys&&"next"in[].keys()),p=function(){return this};t.exports=function(t,e,n,d,v,y,g){a(n,e,d);var m,b,w,x=function(t){if(!f&&t in P)return P[t];switch(t){case"keys":case"values":return function(){return new n(this,t)}}return function(){return new n(this,t)}},S=e+" Iterator",O="values"==v,k=!1,P=t.prototype,E=P[h]||P["@@iterator"]||v&&P[v],T=E||x(v),L=v?O?x("entries"):T:void 0,N="Array"==e&&P.entries||E;if(N&&(w=l(N.call(new t)))!==Object.prototype&&w.next&&(u(w,S,!0),o||"function"==typeof w[h]||s(w,h,p)),O&&E&&"values"!==E.name&&(k=!0,T=function(){return E.call(this)}),o&&!g||!f&&!k&&P[h]||s(P,h,T),c[e]=T,c[S]=p,v)if(m={values:O?T:x("values"),keys:y?T:x("keys"),entries:L},g)for(b in m)b in P||r(P,b,m[b]);else i(i.P+i.F*(f||k),e,m);return m}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var o=n(2)("unscopables"),i=Array.prototype;void 0==i[o]&&n(8)(i,o,{}),t.exports=function(t){i[o][t]=!0}},function(t,e,n){var o=n(3),i=n(46),r=n(2)("species");t.exports=function(t){var e;return i(t)&&("function"!=typeof(e=t.constructor)||e!==Array&&!i(e.prototype)||(e=void 0),o(e)&&null===(e=e[r])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var o=n(76);t.exports=function(t,e){return new(o(t))(e)}},function(t,e){},function(t,e,n){n(78),t.exports=n(56)}])});
|
2 |
//# sourceMappingURL=driver.min.js.map
|
package.json
CHANGED
@@ -25,6 +25,7 @@
|
|
25 |
"babel-plugin-add-module-exports": "^1.0.0",
|
26 |
"copy-webpack-plugin": "^4.5.1",
|
27 |
"css-loader": "^1.0.0",
|
|
|
28 |
"eslint": "^5.6.1",
|
29 |
"eslint-config-airbnb-base": "^13.1.0",
|
30 |
"eslint-loader": "^2.0.0",
|
@@ -35,6 +36,7 @@
|
|
35 |
"file-loader": "^2.0.0",
|
36 |
"node-sass": "^4.7.2",
|
37 |
"opn": "^5.2.0",
|
|
|
38 |
"postcss-loader": "^3.0.0",
|
39 |
"sass-loader": "^7.1.0",
|
40 |
"style-loader": "^0.23.1",
|
|
|
25 |
"babel-plugin-add-module-exports": "^1.0.0",
|
26 |
"copy-webpack-plugin": "^4.5.1",
|
27 |
"css-loader": "^1.0.0",
|
28 |
+
"cssnano": "^4.1.4",
|
29 |
"eslint": "^5.6.1",
|
30 |
"eslint-config-airbnb-base": "^13.1.0",
|
31 |
"eslint-loader": "^2.0.0",
|
|
|
36 |
"file-loader": "^2.0.0",
|
37 |
"node-sass": "^4.7.2",
|
38 |
"opn": "^5.2.0",
|
39 |
+
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
40 |
"postcss-loader": "^3.0.0",
|
41 |
"sass-loader": "^7.1.0",
|
42 |
"style-loader": "^0.23.1",
|
yarn.lock
CHANGED
@@ -812,6 +812,11 @@ ajv@^6.1.0:
|
|
812 |
json-schema-traverse "^0.4.1"
|
813 |
uri-js "^4.2.1"
|
814 |
|
|
|
|
|
|
|
|
|
|
|
815 |
amdefine@>=0.0.4:
|
816 |
version "1.0.1"
|
817 |
resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
|
@@ -1151,6 +1156,11 @@ bonjour@^3.5.0:
|
|
1151 |
multicast-dns "^6.0.1"
|
1152 |
multicast-dns-service-types "^1.1.0"
|
1153 |
|
|
|
|
|
|
|
|
|
|
|
1154 | |
1155 |
version "2.10.1"
|
1156 |
resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
|
@@ -1245,7 +1255,7 @@ browserify-zlib@^0.2.0:
|
|
1245 |
dependencies:
|
1246 |
pako "~1.0.5"
|
1247 |
|
1248 |
-
browserslist@^4.1.0:
|
1249 |
version "4.2.0"
|
1250 |
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.2.0.tgz#3e5e5edf7fa9758ded0885cf88c1e4be753a591c"
|
1251 |
integrity sha512-Berls1CHL7qfQz8Lct6QxYA5d2Tvt4doDWHcjvAISybpd+EKZVppNtXgXhaN6SdrPKo7YLTSZuYBs5cYrSWN8w==
|
@@ -1367,7 +1377,17 @@ camelcase@^4.1.0:
|
|
1367 |
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
|
1368 |
integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
|
1369 |
|
1370 |
-
caniuse-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1371 |
version "1.0.30000890"
|
1372 |
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000890.tgz#86a18ffcc65d79ec6a437e985761b8bf1c4efeaf"
|
1373 |
integrity sha512-4NI3s4Y6ROm+SgZN5sLUG4k7nVWQnedis3c/RWkynV5G6cHSY7+a8fwFyn2yoBDE3E6VswhTNNwR3PvzGqlTkg==
|
@@ -1507,6 +1527,13 @@ co@^4.6.0:
|
|
1507 |
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
|
1508 |
integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
|
1509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1510 |
code-point-at@^1.0.0:
|
1511 |
version "1.1.0"
|
1512 |
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
@@ -1527,11 +1554,49 @@ color-convert@^1.9.0:
|
|
1527 |
dependencies:
|
1528 |
color-name "1.1.1"
|
1529 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1530 | |
1531 |
version "1.1.1"
|
1532 |
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689"
|
1533 |
integrity sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=
|
1534 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1535 |
combined-stream@^1.0.5, combined-stream@~1.0.5:
|
1536 |
version "1.0.6"
|
1537 |
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
|
@@ -1699,6 +1764,15 @@ cosmiconfig@^4.0.0:
|
|
1699 |
parse-json "^4.0.0"
|
1700 |
require-from-string "^2.0.1"
|
1701 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1702 |
create-ecdh@^4.0.0:
|
1703 |
version "4.0.3"
|
1704 |
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff"
|
@@ -1782,6 +1856,19 @@ crypto-browserify@^3.11.0:
|
|
1782 |
randombytes "^2.0.0"
|
1783 |
randomfill "^1.0.3"
|
1784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1785 |
css-loader@^1.0.0:
|
1786 |
version "1.0.0"
|
1787 |
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.0.tgz#9f46aaa5ca41dbe31860e3b62b8e23c42916bf56"
|
@@ -1800,6 +1887,21 @@ css-loader@^1.0.0:
|
|
1800 |
postcss-value-parser "^3.3.0"
|
1801 |
source-list-map "^2.0.0"
|
1802 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1803 |
css-selector-tokenizer@^0.7.0:
|
1804 |
version "0.7.0"
|
1805 |
resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86"
|
@@ -1809,11 +1911,117 @@ css-selector-tokenizer@^0.7.0:
|
|
1809 |
fastparse "^1.1.1"
|
1810 |
regexpu-core "^1.0.0"
|
1811 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1812 |
cssesc@^0.1.0:
|
1813 |
version "0.1.0"
|
1814 |
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
|
1815 |
integrity sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=
|
1816 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1817 |
currently-unhandled@^0.4.1:
|
1818 |
version "0.4.1"
|
1819 |
resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
|
@@ -2048,11 +2256,44 @@ doctrine@^2.1.0:
|
|
2048 |
dependencies:
|
2049 |
esutils "^2.0.2"
|
2050 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2051 |
domain-browser@^1.1.1:
|
2052 |
version "1.2.0"
|
2053 |
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
|
2054 |
integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
|
2055 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2056 |
duplexify@^3.4.2, duplexify@^3.6.0:
|
2057 |
version "3.6.0"
|
2058 |
resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410"
|
@@ -2119,6 +2360,11 @@ enhanced-resolve@^4.1.0:
|
|
2119 |
memory-fs "^0.4.0"
|
2120 |
tapable "^1.0.0"
|
2121 |
|
|
|
|
|
|
|
|
|
|
|
2122 |
errno@^0.1.3, errno@~0.1.7:
|
2123 |
version "0.1.7"
|
2124 |
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
|
@@ -2681,6 +2927,11 @@ flat-cache@^1.2.1:
|
|
2681 |
graceful-fs "^4.1.2"
|
2682 |
write "^0.2.1"
|
2683 |
|
|
|
|
|
|
|
|
|
|
|
2684 |
flush-write-stream@^1.0.0:
|
2685 |
version "1.0.3"
|
2686 |
resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd"
|
@@ -3043,7 +3294,7 @@ has-values@^1.0.0:
|
|
3043 |
is-number "^3.0.0"
|
3044 |
kind-of "^4.0.0"
|
3045 |
|
3046 |
-
has@^1.0.1:
|
3047 |
version "1.0.3"
|
3048 |
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
|
3049 |
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
|
@@ -3076,6 +3327,11 @@ hawk@~3.1.3:
|
|
3076 |
hoek "2.x.x"
|
3077 |
sntp "1.x.x"
|
3078 |
|
|
|
|
|
|
|
|
|
|
|
3079 |
hmac-drbg@^1.0.0:
|
3080 |
version "1.0.1"
|
3081 |
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
|
@@ -3105,6 +3361,21 @@ hpack.js@^2.1.6:
|
|
3105 |
readable-stream "^2.0.1"
|
3106 |
wbuf "^1.1.0"
|
3107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3108 |
html-entities@^1.2.0:
|
3109 |
version "1.2.1"
|
3110 |
resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f"
|
@@ -3278,6 +3549,11 @@ indent-string@^2.1.0:
|
|
3278 |
dependencies:
|
3279 |
repeating "^2.0.0"
|
3280 |
|
|
|
|
|
|
|
|
|
|
|
3281 | |
3282 |
version "0.0.1"
|
3283 |
resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
|
@@ -3364,6 +3640,11 @@ [email protected]:
|
|
3364 |
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b"
|
3365 |
integrity sha1-4/o1e3c9phnybpXwSdBVxyeW+Gs=
|
3366 |
|
|
|
|
|
|
|
|
|
|
|
3367 |
is-accessor-descriptor@^0.1.6:
|
3368 |
version "0.1.6"
|
3369 |
resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
|
@@ -3383,6 +3664,11 @@ is-arrayish@^0.2.1:
|
|
3383 |
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
3384 |
integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
|
3385 |
|
|
|
|
|
|
|
|
|
|
|
3386 |
is-binary-path@^1.0.0:
|
3387 |
version "1.0.1"
|
3388 |
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
|
@@ -3407,6 +3693,18 @@ is-callable@^1.1.1, is-callable@^1.1.3:
|
|
3407 |
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
|
3408 |
integrity sha1-hut1OSgF3cM69xySoO7fdO52BLI=
|
3409 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3410 |
is-data-descriptor@^0.1.4:
|
3411 |
version "0.1.4"
|
3412 |
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
|
@@ -3522,6 +3820,11 @@ is-number@^3.0.0:
|
|
3522 |
dependencies:
|
3523 |
kind-of "^3.0.2"
|
3524 |
|
|
|
|
|
|
|
|
|
|
|
3525 |
is-path-cwd@^1.0.0:
|
3526 |
version "1.0.0"
|
3527 |
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
|
@@ -3565,7 +3868,7 @@ is-regex@^1.0.4:
|
|
3565 |
dependencies:
|
3566 |
has "^1.0.1"
|
3567 |
|
3568 |
-
is-resolvable@^1.1.0:
|
3569 |
version "1.1.0"
|
3570 |
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
|
3571 |
integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
|
@@ -3575,6 +3878,13 @@ is-stream@^1.1.0:
|
|
3575 |
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
3576 |
integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
|
3577 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3578 |
is-symbol@^1.0.1:
|
3579 |
version "1.0.1"
|
3580 |
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
|
@@ -3761,6 +4071,14 @@ kind-of@^6.0.0, kind-of@^6.0.2:
|
|
3761 |
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
|
3762 |
integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
|
3763 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3764 |
lcid@^1.0.0:
|
3765 |
version "1.0.0"
|
3766 |
resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
|
@@ -3867,6 +4185,11 @@ lodash.debounce@^4.0.8:
|
|
3867 |
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
|
3868 |
integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
|
3869 |
|
|
|
|
|
|
|
|
|
|
|
3870 |
lodash.mergewith@^4.6.0:
|
3871 |
version "4.6.1"
|
3872 |
resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz#639057e726c3afbdb3e7d42741caa8d6e4335927"
|
@@ -3877,6 +4200,11 @@ lodash.tail@^4.1.1:
|
|
3877 |
resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664"
|
3878 |
integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=
|
3879 |
|
|
|
|
|
|
|
|
|
|
|
3880 |
lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@~4.17.10:
|
3881 |
version "4.17.10"
|
3882 |
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
|
@@ -3974,6 +4302,11 @@ md5.js@^1.3.4:
|
|
3974 |
hash-base "^3.0.0"
|
3975 |
inherits "^2.0.1"
|
3976 |
|
|
|
|
|
|
|
|
|
|
|
3977 | |
3978 |
version "0.3.0"
|
3979 |
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
|
@@ -4162,7 +4495,7 @@ mixin-object@^2.0.1:
|
|
4162 |
for-in "^0.1.3"
|
4163 |
is-extendable "^0.1.1"
|
4164 |
|
4165 |
-
[email protected], [email protected], "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0:
|
4166 |
version "0.5.1"
|
4167 |
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
4168 |
integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
|
@@ -4397,6 +4730,11 @@ normalize-path@^2.1.1:
|
|
4397 |
dependencies:
|
4398 |
remove-trailing-separator "^1.0.1"
|
4399 |
|
|
|
|
|
|
|
|
|
|
|
4400 |
npm-bundled@^1.0.1:
|
4401 |
version "1.0.3"
|
4402 |
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308"
|
@@ -4427,6 +4765,13 @@ npm-run-path@^2.0.0:
|
|
4427 |
gauge "~2.7.3"
|
4428 |
set-blocking "~2.0.0"
|
4429 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4430 |
number-is-nan@^1.0.0:
|
4431 |
version "1.0.1"
|
4432 |
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
|
@@ -4503,6 +4848,16 @@ object.pick@^1.3.0:
|
|
4503 |
dependencies:
|
4504 |
isobject "^3.0.1"
|
4505 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4506 |
obuf@^1.0.0, obuf@^1.1.1:
|
4507 |
version "1.1.2"
|
4508 |
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
|
@@ -4541,6 +4896,14 @@ opn@^5.1.0, opn@^5.2.0:
|
|
4541 |
dependencies:
|
4542 |
is-wsl "^1.1.0"
|
4543 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4544 |
optionator@^0.8.2:
|
4545 |
version "0.8.2"
|
4546 |
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
|
@@ -4864,6 +5227,63 @@ posix-character-classes@^0.1.0:
|
|
4864 |
resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
|
4865 |
integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
|
4866 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4867 |
postcss-load-config@^2.0.0:
|
4868 |
version "2.0.0"
|
4869 |
resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.0.0.tgz#f1312ddbf5912cd747177083c5ef7a19d62ee484"
|
@@ -4882,6 +5302,68 @@ postcss-loader@^3.0.0:
|
|
4882 |
postcss-load-config "^2.0.0"
|
4883 |
schema-utils "^1.0.0"
|
4884 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4885 |
postcss-modules-extract-imports@^1.2.0:
|
4886 |
version "1.2.0"
|
4887 |
resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85"
|
@@ -4913,7 +5395,154 @@ postcss-modules-values@^1.3.0:
|
|
4913 |
icss-replace-symbols "^1.1.0"
|
4914 |
postcss "^6.0.1"
|
4915 |
|
4916 |
-
postcss-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4917 |
version "3.3.0"
|
4918 |
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
|
4919 |
integrity sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=
|
@@ -4927,7 +5556,7 @@ postcss@^6.0.1, postcss@^6.0.23:
|
|
4927 |
source-map "^0.6.1"
|
4928 |
supports-color "^5.4.0"
|
4929 |
|
4930 |
-
postcss@^7.0.0:
|
4931 |
version "7.0.5"
|
4932 |
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.5.tgz#70e6443e36a6d520b0fd4e7593fcca3635ee9f55"
|
4933 |
integrity sha512-HBNpviAUFCKvEh7NZhw1e8MBPivRszIiUnhrJ+sBFVSYSqubrzwX3KG51mYgcRHX8j/cAgZJedONZcm5jTBdgQ==
|
@@ -5027,6 +5656,11 @@ punycode@^2.1.0:
|
|
5027 |
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
5028 |
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
5029 |
|
|
|
|
|
|
|
|
|
|
|
5030 | |
5031 |
version "6.5.1"
|
5032 |
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
|
@@ -5162,6 +5796,14 @@ redent@^1.0.0:
|
|
5162 |
indent-string "^2.1.0"
|
5163 |
strip-indent "^1.0.1"
|
5164 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5165 |
regenerate-unicode-properties@^7.0.0:
|
5166 |
version "7.0.0"
|
5167 |
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c"
|
@@ -5390,6 +6032,16 @@ ret@~0.1.10:
|
|
5390 |
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
|
5391 |
integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
|
5392 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5393 |
rimraf@2, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2:
|
5394 |
version "2.6.2"
|
5395 |
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
|
@@ -5470,7 +6122,7 @@ sass-loader@^7.1.0:
|
|
5470 |
pify "^3.0.0"
|
5471 |
semver "^5.5.0"
|
5472 |
|
5473 |
-
sax@^1.2.4:
|
5474 |
version "1.2.4"
|
5475 |
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
5476 |
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
@@ -5653,6 +6305,13 @@ signal-exit@^3.0.0, signal-exit@^3.0.2:
|
|
5653 |
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
5654 |
integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
|
5655 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5656 |
slash@^1.0.0:
|
5657 |
version "1.0.0"
|
5658 |
resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
|
@@ -5750,7 +6409,7 @@ source-map@^0.4.2:
|
|
5750 |
dependencies:
|
5751 |
amdefine ">=0.0.4"
|
5752 |
|
5753 |
-
source-map@^0.5.0, source-map@^0.5.6:
|
5754 |
version "0.5.7"
|
5755 |
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
5756 |
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
|
@@ -5846,6 +6505,11 @@ ssri@^5.2.4:
|
|
5846 |
dependencies:
|
5847 |
safe-buffer "^5.1.1"
|
5848 |
|
|
|
|
|
|
|
|
|
|
|
5849 |
static-extend@^0.1.1:
|
5850 |
version "0.1.2"
|
5851 |
resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
|
@@ -5983,6 +6647,15 @@ style-loader@^0.23.1:
|
|
5983 |
loader-utils "^1.1.0"
|
5984 |
schema-utils "^1.0.0"
|
5985 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5986 |
supports-color@^2.0.0:
|
5987 |
version "2.0.0"
|
5988 |
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
@@ -6002,6 +6675,26 @@ supports-color@^5.5.0:
|
|
6002 |
dependencies:
|
6003 |
has-flag "^3.0.0"
|
6004 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6005 |
table@^4.0.3:
|
6006 |
version "4.0.3"
|
6007 |
resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc"
|
@@ -6071,6 +6764,11 @@ timers-browserify@^2.0.4:
|
|
6071 |
dependencies:
|
6072 |
setimmediate "^1.0.4"
|
6073 |
|
|
|
|
|
|
|
|
|
|
|
6074 |
tmp@^0.0.33:
|
6075 |
version "0.0.33"
|
6076 |
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
|
@@ -6239,6 +6937,16 @@ union-value@^1.0.0:
|
|
6239 |
is-extendable "^0.1.1"
|
6240 |
set-value "^0.4.3"
|
6241 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6242 |
unique-filename@^1.1.0:
|
6243 |
version "1.1.0"
|
6244 |
resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.0.tgz#d05f2fe4032560871f30e93cbe735eea201514f3"
|
@@ -6258,6 +6966,11 @@ [email protected], unpipe@~1.0.0:
|
|
6258 |
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
|
6259 |
integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
|
6260 |
|
|
|
|
|
|
|
|
|
|
|
6261 |
unset-value@^1.0.0:
|
6262 |
version "1.0.0"
|
6263 |
resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
|
@@ -6316,7 +7029,7 @@ util-deprecate@~1.0.1:
|
|
6316 |
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
6317 |
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
|
6318 |
|
6319 |
-
util.promisify@^1.0.0:
|
6320 |
version "1.0.0"
|
6321 |
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
|
6322 |
integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
|
@@ -6366,6 +7079,11 @@ vary@~1.1.2:
|
|
6366 |
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
|
6367 |
integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
|
6368 |
|
|
|
|
|
|
|
|
|
|
|
6369 | |
6370 |
version "1.10.0"
|
6371 |
resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
|
|
|
812 |
json-schema-traverse "^0.4.1"
|
813 |
uri-js "^4.2.1"
|
814 |
|
815 |
+
alphanum-sort@^1.0.0:
|
816 |
+
version "1.0.2"
|
817 |
+
resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
|
818 |
+
integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
|
819 |
+
|
820 |
amdefine@>=0.0.4:
|
821 |
version "1.0.1"
|
822 |
resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
|
|
|
1156 |
multicast-dns "^6.0.1"
|
1157 |
multicast-dns-service-types "^1.1.0"
|
1158 |
|
1159 |
+
boolbase@^1.0.0, boolbase@~1.0.0:
|
1160 |
+
version "1.0.0"
|
1161 |
+
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
|
1162 |
+
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
|
1163 |
+
|
1164 | |
1165 |
version "2.10.1"
|
1166 |
resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
|
|
|
1255 |
dependencies:
|
1256 |
pako "~1.0.5"
|
1257 |
|
1258 |
+
browserslist@^4.0.0, browserslist@^4.1.0:
|
1259 |
version "4.2.0"
|
1260 |
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.2.0.tgz#3e5e5edf7fa9758ded0885cf88c1e4be753a591c"
|
1261 |
integrity sha512-Berls1CHL7qfQz8Lct6QxYA5d2Tvt4doDWHcjvAISybpd+EKZVppNtXgXhaN6SdrPKo7YLTSZuYBs5cYrSWN8w==
|
|
|
1377 |
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
|
1378 |
integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
|
1379 |
|
1380 |
+
caniuse-api@^3.0.0:
|
1381 |
+
version "3.0.0"
|
1382 |
+
resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
|
1383 |
+
integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
|
1384 |
+
dependencies:
|
1385 |
+
browserslist "^4.0.0"
|
1386 |
+
caniuse-lite "^1.0.0"
|
1387 |
+
lodash.memoize "^4.1.2"
|
1388 |
+
lodash.uniq "^4.5.0"
|
1389 |
+
|
1390 |
+
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000889:
|
1391 |
version "1.0.30000890"
|
1392 |
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000890.tgz#86a18ffcc65d79ec6a437e985761b8bf1c4efeaf"
|
1393 |
integrity sha512-4NI3s4Y6ROm+SgZN5sLUG4k7nVWQnedis3c/RWkynV5G6cHSY7+a8fwFyn2yoBDE3E6VswhTNNwR3PvzGqlTkg==
|
|
|
1527 |
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
|
1528 |
integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
|
1529 |
|
1530 |
+
coa@~2.0.1:
|
1531 |
+
version "2.0.1"
|
1532 |
+
resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.1.tgz#f3f8b0b15073e35d70263fb1042cb2c023db38af"
|
1533 |
+
integrity sha512-5wfTTO8E2/ja4jFSxePXlG5nRu5bBtL/r1HCIpJW/lzT6yDtKl0u0Z4o/Vpz32IpKmBn7HerheEZQgA9N2DarQ==
|
1534 |
+
dependencies:
|
1535 |
+
q "^1.1.2"
|
1536 |
+
|
1537 |
code-point-at@^1.0.0:
|
1538 |
version "1.1.0"
|
1539 |
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
|
|
1554 |
dependencies:
|
1555 |
color-name "1.1.1"
|
1556 |
|
1557 |
+
color-convert@^1.9.1:
|
1558 |
+
version "1.9.3"
|
1559 |
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
1560 |
+
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
|
1561 |
+
dependencies:
|
1562 |
+
color-name "1.1.3"
|
1563 |
+
|
1564 | |
1565 |
version "1.1.1"
|
1566 |
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689"
|
1567 |
integrity sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=
|
1568 |
|
1569 | |
1570 |
+
version "1.1.3"
|
1571 |
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
1572 |
+
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
|
1573 |
+
|
1574 |
+
color-name@^1.0.0:
|
1575 |
+
version "1.1.4"
|
1576 |
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
1577 |
+
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
1578 |
+
|
1579 |
+
color-string@^1.5.2:
|
1580 |
+
version "1.5.3"
|
1581 |
+
resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc"
|
1582 |
+
integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==
|
1583 |
+
dependencies:
|
1584 |
+
color-name "^1.0.0"
|
1585 |
+
simple-swizzle "^0.2.2"
|
1586 |
+
|
1587 |
+
color@^3.0.0:
|
1588 |
+
version "3.1.0"
|
1589 |
+
resolved "https://registry.yarnpkg.com/color/-/color-3.1.0.tgz#d8e9fb096732875774c84bf922815df0308d0ffc"
|
1590 |
+
integrity sha512-CwyopLkuRYO5ei2EpzpIh6LqJMt6Mt+jZhO5VI5f/wJLZriXQE32/SSqzmrh+QB+AZT81Cj8yv+7zwToW8ahZg==
|
1591 |
+
dependencies:
|
1592 |
+
color-convert "^1.9.1"
|
1593 |
+
color-string "^1.5.2"
|
1594 |
+
|
1595 |
+
colors@~1.1.2:
|
1596 |
+
version "1.1.2"
|
1597 |
+
resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
|
1598 |
+
integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM=
|
1599 |
+
|
1600 |
combined-stream@^1.0.5, combined-stream@~1.0.5:
|
1601 |
version "1.0.6"
|
1602 |
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
|
|
|
1764 |
parse-json "^4.0.0"
|
1765 |
require-from-string "^2.0.1"
|
1766 |
|
1767 |
+
cosmiconfig@^5.0.0:
|
1768 |
+
version "5.0.6"
|
1769 |
+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.6.tgz#dca6cf680a0bd03589aff684700858c81abeeb39"
|
1770 |
+
integrity sha512-6DWfizHriCrFWURP1/qyhsiFvYdlJzbCzmtFWh744+KyWsJo5+kPzUZZaMRSSItoYc0pxFX7gEO7ZC1/gN/7AQ==
|
1771 |
+
dependencies:
|
1772 |
+
is-directory "^0.3.1"
|
1773 |
+
js-yaml "^3.9.0"
|
1774 |
+
parse-json "^4.0.0"
|
1775 |
+
|
1776 |
create-ecdh@^4.0.0:
|
1777 |
version "4.0.3"
|
1778 |
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff"
|
|
|
1856 |
randombytes "^2.0.0"
|
1857 |
randomfill "^1.0.3"
|
1858 |
|
1859 |
+
[email protected], css-color-names@^0.0.4:
|
1860 |
+
version "0.0.4"
|
1861 |
+
resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
|
1862 |
+
integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
|
1863 |
+
|
1864 |
+
css-declaration-sorter@^4.0.1:
|
1865 |
+
version "4.0.1"
|
1866 |
+
resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22"
|
1867 |
+
integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==
|
1868 |
+
dependencies:
|
1869 |
+
postcss "^7.0.1"
|
1870 |
+
timsort "^0.3.0"
|
1871 |
+
|
1872 |
css-loader@^1.0.0:
|
1873 |
version "1.0.0"
|
1874 |
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.0.tgz#9f46aaa5ca41dbe31860e3b62b8e23c42916bf56"
|
|
|
1887 |
postcss-value-parser "^3.3.0"
|
1888 |
source-list-map "^2.0.0"
|
1889 |
|
1890 |
+
css-select-base-adapter@~0.1.0:
|
1891 |
+
version "0.1.0"
|
1892 |
+
resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.0.tgz#0102b3d14630df86c3eb9fa9f5456270106cf990"
|
1893 |
+
integrity sha1-AQKz0UYw34bD65+p9UVicBBs+ZA=
|
1894 |
+
|
1895 |
+
css-select@^2.0.0:
|
1896 |
+
version "2.0.0"
|
1897 |
+
resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.0.tgz#7aa2921392114831f68db175c0b6a555df74bbd5"
|
1898 |
+
integrity sha512-MGhoq1S9EyPgZIGnts8Yz5WwUOyHmPMdlqeifsYs/xFX7AAm3hY0RJe1dqVlXtYPI66Nsk39R/sa5/ree6L2qg==
|
1899 |
+
dependencies:
|
1900 |
+
boolbase "^1.0.0"
|
1901 |
+
css-what "2.1"
|
1902 |
+
domutils "^1.7.0"
|
1903 |
+
nth-check "^1.0.1"
|
1904 |
+
|
1905 |
css-selector-tokenizer@^0.7.0:
|
1906 |
version "0.7.0"
|
1907 |
resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86"
|
|
|
1911 |
fastparse "^1.1.1"
|
1912 |
regexpu-core "^1.0.0"
|
1913 |
|
1914 | |
1915 |
+
version "1.0.0-alpha.28"
|
1916 |
+
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f"
|
1917 |
+
integrity sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w==
|
1918 |
+
dependencies:
|
1919 |
+
mdn-data "~1.1.0"
|
1920 |
+
source-map "^0.5.3"
|
1921 |
+
|
1922 | |
1923 |
+
version "1.0.0-alpha.29"
|
1924 |
+
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39"
|
1925 |
+
integrity sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==
|
1926 |
+
dependencies:
|
1927 |
+
mdn-data "~1.1.0"
|
1928 |
+
source-map "^0.5.3"
|
1929 |
+
|
1930 |
+
css-unit-converter@^1.1.1:
|
1931 |
+
version "1.1.1"
|
1932 |
+
resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996"
|
1933 |
+
integrity sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY=
|
1934 |
+
|
1935 |
+
css-url-regex@^1.1.0:
|
1936 |
+
version "1.1.0"
|
1937 |
+
resolved "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec"
|
1938 |
+
integrity sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w=
|
1939 |
+
|
1940 | |
1941 |
+
version "2.1.0"
|
1942 |
+
resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
|
1943 |
+
integrity sha1-lGfQMsOM+u+58teVASUwYvh/ob0=
|
1944 |
+
|
1945 |
cssesc@^0.1.0:
|
1946 |
version "0.1.0"
|
1947 |
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
|
1948 |
integrity sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=
|
1949 |
|
1950 |
+
cssnano-preset-default@^4.0.2:
|
1951 |
+
version "4.0.2"
|
1952 |
+
resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.2.tgz#1de3f27e73b7f0fbf87c1d7fd7a63ae980ac3774"
|
1953 |
+
integrity sha512-zO9PeP84l1E4kbrdyF7NSLtA/JrJY1paX5FHy5+w/ziIXO2kDqDMfJ/mosXkaHHSa3RPiIY3eB6aEgwx3IiGqA==
|
1954 |
+
dependencies:
|
1955 |
+
css-declaration-sorter "^4.0.1"
|
1956 |
+
cssnano-util-raw-cache "^4.0.1"
|
1957 |
+
postcss "^7.0.0"
|
1958 |
+
postcss-calc "^6.0.2"
|
1959 |
+
postcss-colormin "^4.0.2"
|
1960 |
+
postcss-convert-values "^4.0.1"
|
1961 |
+
postcss-discard-comments "^4.0.1"
|
1962 |
+
postcss-discard-duplicates "^4.0.2"
|
1963 |
+
postcss-discard-empty "^4.0.1"
|
1964 |
+
postcss-discard-overridden "^4.0.1"
|
1965 |
+
postcss-merge-longhand "^4.0.6"
|
1966 |
+
postcss-merge-rules "^4.0.2"
|
1967 |
+
postcss-minify-font-values "^4.0.2"
|
1968 |
+
postcss-minify-gradients "^4.0.1"
|
1969 |
+
postcss-minify-params "^4.0.1"
|
1970 |
+
postcss-minify-selectors "^4.0.1"
|
1971 |
+
postcss-normalize-charset "^4.0.1"
|
1972 |
+
postcss-normalize-display-values "^4.0.1"
|
1973 |
+
postcss-normalize-positions "^4.0.1"
|
1974 |
+
postcss-normalize-repeat-style "^4.0.1"
|
1975 |
+
postcss-normalize-string "^4.0.1"
|
1976 |
+
postcss-normalize-timing-functions "^4.0.1"
|
1977 |
+
postcss-normalize-unicode "^4.0.1"
|
1978 |
+
postcss-normalize-url "^4.0.1"
|
1979 |
+
postcss-normalize-whitespace "^4.0.1"
|
1980 |
+
postcss-ordered-values "^4.1.1"
|
1981 |
+
postcss-reduce-initial "^4.0.2"
|
1982 |
+
postcss-reduce-transforms "^4.0.1"
|
1983 |
+
postcss-svgo "^4.0.1"
|
1984 |
+
postcss-unique-selectors "^4.0.1"
|
1985 |
+
|
1986 |
+
cssnano-util-get-arguments@^4.0.0:
|
1987 |
+
version "4.0.0"
|
1988 |
+
resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f"
|
1989 |
+
integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=
|
1990 |
+
|
1991 |
+
cssnano-util-get-match@^4.0.0:
|
1992 |
+
version "4.0.0"
|
1993 |
+
resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d"
|
1994 |
+
integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=
|
1995 |
+
|
1996 |
+
cssnano-util-raw-cache@^4.0.1:
|
1997 |
+
version "4.0.1"
|
1998 |
+
resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282"
|
1999 |
+
integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==
|
2000 |
+
dependencies:
|
2001 |
+
postcss "^7.0.0"
|
2002 |
+
|
2003 |
+
cssnano-util-same-parent@^4.0.0:
|
2004 |
+
version "4.0.1"
|
2005 |
+
resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3"
|
2006 |
+
integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==
|
2007 |
+
|
2008 |
+
cssnano@^4.1.0, cssnano@^4.1.4:
|
2009 |
+
version "4.1.4"
|
2010 |
+
resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.4.tgz#55b71e3d8f5451dd3edc7955673415c98795788f"
|
2011 |
+
integrity sha512-wP0wbOM9oqsek14CiNRYrK9N3w3jgadtGZKHXysgC/OMVpy0KZgWVPdNqODSZbz7txO9Gekr9taOfcCgL0pOOw==
|
2012 |
+
dependencies:
|
2013 |
+
cosmiconfig "^5.0.0"
|
2014 |
+
cssnano-preset-default "^4.0.2"
|
2015 |
+
is-resolvable "^1.0.0"
|
2016 |
+
postcss "^7.0.0"
|
2017 |
+
|
2018 |
+
csso@^3.5.0:
|
2019 |
+
version "3.5.1"
|
2020 |
+
resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b"
|
2021 |
+
integrity sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==
|
2022 |
+
dependencies:
|
2023 |
+
css-tree "1.0.0-alpha.29"
|
2024 |
+
|
2025 |
currently-unhandled@^0.4.1:
|
2026 |
version "0.4.1"
|
2027 |
resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
|
|
|
2256 |
dependencies:
|
2257 |
esutils "^2.0.2"
|
2258 |
|
2259 |
+
dom-serializer@0:
|
2260 |
+
version "0.1.0"
|
2261 |
+
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
|
2262 |
+
integrity sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=
|
2263 |
+
dependencies:
|
2264 |
+
domelementtype "~1.1.1"
|
2265 |
+
entities "~1.1.1"
|
2266 |
+
|
2267 |
domain-browser@^1.1.1:
|
2268 |
version "1.2.0"
|
2269 |
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
|
2270 |
integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
|
2271 |
|
2272 |
+
domelementtype@1:
|
2273 |
+
version "1.3.0"
|
2274 |
+
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
|
2275 |
+
integrity sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=
|
2276 |
+
|
2277 |
+
domelementtype@~1.1.1:
|
2278 |
+
version "1.1.3"
|
2279 |
+
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
|
2280 |
+
integrity sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=
|
2281 |
+
|
2282 |
+
domutils@^1.7.0:
|
2283 |
+
version "1.7.0"
|
2284 |
+
resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
|
2285 |
+
integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
|
2286 |
+
dependencies:
|
2287 |
+
dom-serializer "0"
|
2288 |
+
domelementtype "1"
|
2289 |
+
|
2290 |
+
dot-prop@^4.1.1:
|
2291 |
+
version "4.2.0"
|
2292 |
+
resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57"
|
2293 |
+
integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==
|
2294 |
+
dependencies:
|
2295 |
+
is-obj "^1.0.0"
|
2296 |
+
|
2297 |
duplexify@^3.4.2, duplexify@^3.6.0:
|
2298 |
version "3.6.0"
|
2299 |
resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.0.tgz#592903f5d80b38d037220541264d69a198fb3410"
|
|
|
2360 |
memory-fs "^0.4.0"
|
2361 |
tapable "^1.0.0"
|
2362 |
|
2363 |
+
entities@~1.1.1:
|
2364 |
+
version "1.1.1"
|
2365 |
+
resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
|
2366 |
+
integrity sha1-blwtClYhtdra7O+AuQ7ftc13cvA=
|
2367 |
+
|
2368 |
errno@^0.1.3, errno@~0.1.7:
|
2369 |
version "0.1.7"
|
2370 |
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
|
|
|
2927 |
graceful-fs "^4.1.2"
|
2928 |
write "^0.2.1"
|
2929 |
|
2930 |
+
flatten@^1.0.2:
|
2931 |
+
version "1.0.2"
|
2932 |
+
resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782"
|
2933 |
+
integrity sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=
|
2934 |
+
|
2935 |
flush-write-stream@^1.0.0:
|
2936 |
version "1.0.3"
|
2937 |
resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd"
|
|
|
3294 |
is-number "^3.0.0"
|
3295 |
kind-of "^4.0.0"
|
3296 |
|
3297 |
+
has@^1.0.0, has@^1.0.1:
|
3298 |
version "1.0.3"
|
3299 |
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
|
3300 |
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
|
|
|
3327 |
hoek "2.x.x"
|
3328 |
sntp "1.x.x"
|
3329 |
|
3330 |
+
hex-color-regex@^1.1.0:
|
3331 |
+
version "1.1.0"
|
3332 |
+
resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
|
3333 |
+
integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
|
3334 |
+
|
3335 |
hmac-drbg@^1.0.0:
|
3336 |
version "1.0.1"
|
3337 |
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
|
|
|
3361 |
readable-stream "^2.0.1"
|
3362 |
wbuf "^1.1.0"
|
3363 |
|
3364 |
+
hsl-regex@^1.0.0:
|
3365 |
+
version "1.0.0"
|
3366 |
+
resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
|
3367 |
+
integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=
|
3368 |
+
|
3369 |
+
hsla-regex@^1.0.0:
|
3370 |
+
version "1.0.0"
|
3371 |
+
resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
|
3372 |
+
integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg=
|
3373 |
+
|
3374 |
+
html-comment-regex@^1.1.0:
|
3375 |
+
version "1.1.2"
|
3376 |
+
resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7"
|
3377 |
+
integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==
|
3378 |
+
|
3379 |
html-entities@^1.2.0:
|
3380 |
version "1.2.1"
|
3381 |
resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f"
|
|
|
3549 |
dependencies:
|
3550 |
repeating "^2.0.0"
|
3551 |
|
3552 |
+
indexes-of@^1.0.1:
|
3553 |
+
version "1.0.1"
|
3554 |
+
resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
|
3555 |
+
integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
|
3556 |
+
|
3557 | |
3558 |
version "0.0.1"
|
3559 |
resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
|
|
|
3640 |
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b"
|
3641 |
integrity sha1-4/o1e3c9phnybpXwSdBVxyeW+Gs=
|
3642 |
|
3643 |
+
is-absolute-url@^2.0.0:
|
3644 |
+
version "2.1.0"
|
3645 |
+
resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
|
3646 |
+
integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=
|
3647 |
+
|
3648 |
is-accessor-descriptor@^0.1.6:
|
3649 |
version "0.1.6"
|
3650 |
resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
|
|
|
3664 |
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
3665 |
integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
|
3666 |
|
3667 |
+
is-arrayish@^0.3.1:
|
3668 |
+
version "0.3.2"
|
3669 |
+
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
|
3670 |
+
integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
|
3671 |
+
|
3672 |
is-binary-path@^1.0.0:
|
3673 |
version "1.0.1"
|
3674 |
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
|
|
|
3693 |
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
|
3694 |
integrity sha1-hut1OSgF3cM69xySoO7fdO52BLI=
|
3695 |
|
3696 |
+
is-color-stop@^1.0.0:
|
3697 |
+
version "1.1.0"
|
3698 |
+
resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345"
|
3699 |
+
integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=
|
3700 |
+
dependencies:
|
3701 |
+
css-color-names "^0.0.4"
|
3702 |
+
hex-color-regex "^1.1.0"
|
3703 |
+
hsl-regex "^1.0.0"
|
3704 |
+
hsla-regex "^1.0.0"
|
3705 |
+
rgb-regex "^1.0.1"
|
3706 |
+
rgba-regex "^1.0.0"
|
3707 |
+
|
3708 |
is-data-descriptor@^0.1.4:
|
3709 |
version "0.1.4"
|
3710 |
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
|
|
|
3820 |
dependencies:
|
3821 |
kind-of "^3.0.2"
|
3822 |
|
3823 |
+
is-obj@^1.0.0:
|
3824 |
+
version "1.0.1"
|
3825 |
+
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
|
3826 |
+
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
|
3827 |
+
|
3828 |
is-path-cwd@^1.0.0:
|
3829 |
version "1.0.0"
|
3830 |
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
|
|
|
3868 |
dependencies:
|
3869 |
has "^1.0.1"
|
3870 |
|
3871 |
+
is-resolvable@^1.0.0, is-resolvable@^1.1.0:
|
3872 |
version "1.1.0"
|
3873 |
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
|
3874 |
integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
|
|
|
3878 |
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
3879 |
integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
|
3880 |
|
3881 |
+
is-svg@^3.0.0:
|
3882 |
+
version "3.0.0"
|
3883 |
+
resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75"
|
3884 |
+
integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==
|
3885 |
+
dependencies:
|
3886 |
+
html-comment-regex "^1.1.0"
|
3887 |
+
|
3888 |
is-symbol@^1.0.1:
|
3889 |
version "1.0.1"
|
3890 |
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
|
|
|
4071 |
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
|
4072 |
integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
|
4073 |
|
4074 |
+
last-call-webpack-plugin@^3.0.0:
|
4075 |
+
version "3.0.0"
|
4076 |
+
resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555"
|
4077 |
+
integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==
|
4078 |
+
dependencies:
|
4079 |
+
lodash "^4.17.5"
|
4080 |
+
webpack-sources "^1.1.0"
|
4081 |
+
|
4082 |
lcid@^1.0.0:
|
4083 |
version "1.0.0"
|
4084 |
resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
|
|
|
4185 |
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
|
4186 |
integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
|
4187 |
|
4188 |
+
lodash.memoize@^4.1.2:
|
4189 |
+
version "4.1.2"
|
4190 |
+
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
|
4191 |
+
integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
|
4192 |
+
|
4193 |
lodash.mergewith@^4.6.0:
|
4194 |
version "4.6.1"
|
4195 |
resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz#639057e726c3afbdb3e7d42741caa8d6e4335927"
|
|
|
4200 |
resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664"
|
4201 |
integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=
|
4202 |
|
4203 |
+
lodash.uniq@^4.5.0:
|
4204 |
+
version "4.5.0"
|
4205 |
+
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
4206 |
+
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
4207 |
+
|
4208 |
lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@~4.17.10:
|
4209 |
version "4.17.10"
|
4210 |
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
|
|
|
4302 |
hash-base "^3.0.0"
|
4303 |
inherits "^2.0.1"
|
4304 |
|
4305 |
+
mdn-data@~1.1.0:
|
4306 |
+
version "1.1.4"
|
4307 |
+
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01"
|
4308 |
+
integrity sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==
|
4309 |
+
|
4310 | |
4311 |
version "0.3.0"
|
4312 |
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
|
|
|
4495 |
for-in "^0.1.3"
|
4496 |
is-extendable "^0.1.1"
|
4497 |
|
4498 |
+
[email protected], [email protected], "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
|
4499 |
version "0.5.1"
|
4500 |
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
4501 |
integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
|
|
|
4730 |
dependencies:
|
4731 |
remove-trailing-separator "^1.0.1"
|
4732 |
|
4733 |
+
normalize-url@^3.0.0:
|
4734 |
+
version "3.3.0"
|
4735 |
+
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
|
4736 |
+
integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
|
4737 |
+
|
4738 |
npm-bundled@^1.0.1:
|
4739 |
version "1.0.3"
|
4740 |
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308"
|
|
|
4765 |
gauge "~2.7.3"
|
4766 |
set-blocking "~2.0.0"
|
4767 |
|
4768 |
+
nth-check@^1.0.1:
|
4769 |
+
version "1.0.1"
|
4770 |
+
resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4"
|
4771 |
+
integrity sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=
|
4772 |
+
dependencies:
|
4773 |
+
boolbase "~1.0.0"
|
4774 |
+
|
4775 |
number-is-nan@^1.0.0:
|
4776 |
version "1.0.1"
|
4777 |
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
|
|
|
4848 |
dependencies:
|
4849 |
isobject "^3.0.1"
|
4850 |
|
4851 |
+
object.values@^1.0.4:
|
4852 |
+
version "1.0.4"
|
4853 |
+
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a"
|
4854 |
+
integrity sha1-5STaCbT2b/Bd9FdUbscqyZ8TBpo=
|
4855 |
+
dependencies:
|
4856 |
+
define-properties "^1.1.2"
|
4857 |
+
es-abstract "^1.6.1"
|
4858 |
+
function-bind "^1.1.0"
|
4859 |
+
has "^1.0.1"
|
4860 |
+
|
4861 |
obuf@^1.0.0, obuf@^1.1.1:
|
4862 |
version "1.1.2"
|
4863 |
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
|
|
|
4896 |
dependencies:
|
4897 |
is-wsl "^1.1.0"
|
4898 |
|
4899 |
+
optimize-css-assets-webpack-plugin@^5.0.1:
|
4900 |
+
version "5.0.1"
|
4901 |
+
resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.1.tgz#9eb500711d35165b45e7fd60ba2df40cb3eb9159"
|
4902 |
+
integrity sha512-Rqm6sSjWtx9FchdP0uzTQDc7GXDKnwVEGoSxjezPkzMewx7gEWE9IMUYKmigTRC4U3RaNSwYVnUDLuIdtTpm0A==
|
4903 |
+
dependencies:
|
4904 |
+
cssnano "^4.1.0"
|
4905 |
+
last-call-webpack-plugin "^3.0.0"
|
4906 |
+
|
4907 |
optionator@^0.8.2:
|
4908 |
version "0.8.2"
|
4909 |
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
|
|
|
5227 |
resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
|
5228 |
integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
|
5229 |
|
5230 |
+
postcss-calc@^6.0.2:
|
5231 |
+
version "6.0.2"
|
5232 |
+
resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-6.0.2.tgz#4d9a43e27dbbf27d095fecb021ac6896e2318337"
|
5233 |
+
integrity sha512-fiznXjEN5T42Qm7qqMCVJXS3roaj9r4xsSi+meaBVe7CJBl8t/QLOXu02Z2E6oWAMWIvCuF6JrvzFekmVEbOKA==
|
5234 |
+
dependencies:
|
5235 |
+
css-unit-converter "^1.1.1"
|
5236 |
+
postcss "^7.0.2"
|
5237 |
+
postcss-selector-parser "^2.2.2"
|
5238 |
+
reduce-css-calc "^2.0.0"
|
5239 |
+
|
5240 |
+
postcss-colormin@^4.0.2:
|
5241 |
+
version "4.0.2"
|
5242 |
+
resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.2.tgz#93cd1fa11280008696887db1a528048b18e7ed99"
|
5243 |
+
integrity sha512-1QJc2coIehnVFsz0otges8kQLsryi4lo19WD+U5xCWvXd0uw/Z+KKYnbiNDCnO9GP+PvErPHCG0jNvWTngk9Rw==
|
5244 |
+
dependencies:
|
5245 |
+
browserslist "^4.0.0"
|
5246 |
+
color "^3.0.0"
|
5247 |
+
has "^1.0.0"
|
5248 |
+
postcss "^7.0.0"
|
5249 |
+
postcss-value-parser "^3.0.0"
|
5250 |
+
|
5251 |
+
postcss-convert-values@^4.0.1:
|
5252 |
+
version "4.0.1"
|
5253 |
+
resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f"
|
5254 |
+
integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==
|
5255 |
+
dependencies:
|
5256 |
+
postcss "^7.0.0"
|
5257 |
+
postcss-value-parser "^3.0.0"
|
5258 |
+
|
5259 |
+
postcss-discard-comments@^4.0.1:
|
5260 |
+
version "4.0.1"
|
5261 |
+
resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.1.tgz#30697735b0c476852a7a11050eb84387a67ef55d"
|
5262 |
+
integrity sha512-Ay+rZu1Sz6g8IdzRjUgG2NafSNpp2MSMOQUb+9kkzzzP+kh07fP0yNbhtFejURnyVXSX3FYy2nVNW1QTnNjgBQ==
|
5263 |
+
dependencies:
|
5264 |
+
postcss "^7.0.0"
|
5265 |
+
|
5266 |
+
postcss-discard-duplicates@^4.0.2:
|
5267 |
+
version "4.0.2"
|
5268 |
+
resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb"
|
5269 |
+
integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==
|
5270 |
+
dependencies:
|
5271 |
+
postcss "^7.0.0"
|
5272 |
+
|
5273 |
+
postcss-discard-empty@^4.0.1:
|
5274 |
+
version "4.0.1"
|
5275 |
+
resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765"
|
5276 |
+
integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==
|
5277 |
+
dependencies:
|
5278 |
+
postcss "^7.0.0"
|
5279 |
+
|
5280 |
+
postcss-discard-overridden@^4.0.1:
|
5281 |
+
version "4.0.1"
|
5282 |
+
resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57"
|
5283 |
+
integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==
|
5284 |
+
dependencies:
|
5285 |
+
postcss "^7.0.0"
|
5286 |
+
|
5287 |
postcss-load-config@^2.0.0:
|
5288 |
version "2.0.0"
|
5289 |
resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.0.0.tgz#f1312ddbf5912cd747177083c5ef7a19d62ee484"
|
|
|
5302 |
postcss-load-config "^2.0.0"
|
5303 |
schema-utils "^1.0.0"
|
5304 |
|
5305 |
+
postcss-merge-longhand@^4.0.6:
|
5306 |
+
version "4.0.6"
|
5307 |
+
resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.6.tgz#2b938fa3529c3d1657e53dc7ff0fd604dbc85ff1"
|
5308 |
+
integrity sha512-JavnI+V4IHWsaUAfOoKeMEiJQGXTraEy1nHM0ILlE6NIQPEZrJDAnPh3lNGZ5HAk2mSSrwp66JoGhvjp6SqShA==
|
5309 |
+
dependencies:
|
5310 |
+
css-color-names "0.0.4"
|
5311 |
+
postcss "^7.0.0"
|
5312 |
+
postcss-value-parser "^3.0.0"
|
5313 |
+
stylehacks "^4.0.0"
|
5314 |
+
|
5315 |
+
postcss-merge-rules@^4.0.2:
|
5316 |
+
version "4.0.2"
|
5317 |
+
resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.2.tgz#2be44401bf19856f27f32b8b12c0df5af1b88e74"
|
5318 |
+
integrity sha512-UiuXwCCJtQy9tAIxsnurfF0mrNHKc4NnNx6NxqmzNNjXpQwLSukUxELHTRF0Rg1pAmcoKLih8PwvZbiordchag==
|
5319 |
+
dependencies:
|
5320 |
+
browserslist "^4.0.0"
|
5321 |
+
caniuse-api "^3.0.0"
|
5322 |
+
cssnano-util-same-parent "^4.0.0"
|
5323 |
+
postcss "^7.0.0"
|
5324 |
+
postcss-selector-parser "^3.0.0"
|
5325 |
+
vendors "^1.0.0"
|
5326 |
+
|
5327 |
+
postcss-minify-font-values@^4.0.2:
|
5328 |
+
version "4.0.2"
|
5329 |
+
resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6"
|
5330 |
+
integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==
|
5331 |
+
dependencies:
|
5332 |
+
postcss "^7.0.0"
|
5333 |
+
postcss-value-parser "^3.0.0"
|
5334 |
+
|
5335 |
+
postcss-minify-gradients@^4.0.1:
|
5336 |
+
version "4.0.1"
|
5337 |
+
resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.1.tgz#6da95c6e92a809f956bb76bf0c04494953e1a7dd"
|
5338 |
+
integrity sha512-pySEW3E6Ly5mHm18rekbWiAjVi/Wj8KKt2vwSfVFAWdW6wOIekgqxKxLU7vJfb107o3FDNPkaYFCxGAJBFyogA==
|
5339 |
+
dependencies:
|
5340 |
+
cssnano-util-get-arguments "^4.0.0"
|
5341 |
+
is-color-stop "^1.0.0"
|
5342 |
+
postcss "^7.0.0"
|
5343 |
+
postcss-value-parser "^3.0.0"
|
5344 |
+
|
5345 |
+
postcss-minify-params@^4.0.1:
|
5346 |
+
version "4.0.1"
|
5347 |
+
resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.1.tgz#5b2e2d0264dd645ef5d68f8fec0d4c38c1cf93d2"
|
5348 |
+
integrity sha512-h4W0FEMEzBLxpxIVelRtMheskOKKp52ND6rJv+nBS33G1twu2tCyurYj/YtgU76+UDCvWeNs0hs8HFAWE2OUFg==
|
5349 |
+
dependencies:
|
5350 |
+
alphanum-sort "^1.0.0"
|
5351 |
+
browserslist "^4.0.0"
|
5352 |
+
cssnano-util-get-arguments "^4.0.0"
|
5353 |
+
postcss "^7.0.0"
|
5354 |
+
postcss-value-parser "^3.0.0"
|
5355 |
+
uniqs "^2.0.0"
|
5356 |
+
|
5357 |
+
postcss-minify-selectors@^4.0.1:
|
5358 |
+
version "4.0.1"
|
5359 |
+
resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.1.tgz#a891c197977cc37abf60b3ea06b84248b1c1e9cd"
|
5360 |
+
integrity sha512-8+plQkomve3G+CodLCgbhAKrb5lekAnLYuL1d7Nz+/7RANpBEVdgBkPNwljfSKvZ9xkkZTZITd04KP+zeJTJqg==
|
5361 |
+
dependencies:
|
5362 |
+
alphanum-sort "^1.0.0"
|
5363 |
+
has "^1.0.0"
|
5364 |
+
postcss "^7.0.0"
|
5365 |
+
postcss-selector-parser "^3.0.0"
|
5366 |
+
|
5367 |
postcss-modules-extract-imports@^1.2.0:
|
5368 |
version "1.2.0"
|
5369 |
resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85"
|
|
|
5395 |
icss-replace-symbols "^1.1.0"
|
5396 |
postcss "^6.0.1"
|
5397 |
|
5398 |
+
postcss-normalize-charset@^4.0.1:
|
5399 |
+
version "4.0.1"
|
5400 |
+
resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4"
|
5401 |
+
integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==
|
5402 |
+
dependencies:
|
5403 |
+
postcss "^7.0.0"
|
5404 |
+
|
5405 |
+
postcss-normalize-display-values@^4.0.1:
|
5406 |
+
version "4.0.1"
|
5407 |
+
resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.1.tgz#d9a83d47c716e8a980f22f632c8b0458cfb48a4c"
|
5408 |
+
integrity sha512-R5mC4vaDdvsrku96yXP7zak+O3Mm9Y8IslUobk7IMP+u/g+lXvcN4jngmHY5zeJnrQvE13dfAg5ViU05ZFDwdg==
|
5409 |
+
dependencies:
|
5410 |
+
cssnano-util-get-match "^4.0.0"
|
5411 |
+
postcss "^7.0.0"
|
5412 |
+
postcss-value-parser "^3.0.0"
|
5413 |
+
|
5414 |
+
postcss-normalize-positions@^4.0.1:
|
5415 |
+
version "4.0.1"
|
5416 |
+
resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.1.tgz#ee2d4b67818c961964c6be09d179894b94fd6ba1"
|
5417 |
+
integrity sha512-GNoOaLRBM0gvH+ZRb2vKCIujzz4aclli64MBwDuYGU2EY53LwiP7MxOZGE46UGtotrSnmarPPZ69l2S/uxdaWA==
|
5418 |
+
dependencies:
|
5419 |
+
cssnano-util-get-arguments "^4.0.0"
|
5420 |
+
has "^1.0.0"
|
5421 |
+
postcss "^7.0.0"
|
5422 |
+
postcss-value-parser "^3.0.0"
|
5423 |
+
|
5424 |
+
postcss-normalize-repeat-style@^4.0.1:
|
5425 |
+
version "4.0.1"
|
5426 |
+
resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.1.tgz#5293f234b94d7669a9f805495d35b82a581c50e5"
|
5427 |
+
integrity sha512-fFHPGIjBUyUiswY2rd9rsFcC0t3oRta4wxE1h3lpwfQZwFeFjXFSiDtdJ7APCmHQOnUZnqYBADNRPKPwFAONgA==
|
5428 |
+
dependencies:
|
5429 |
+
cssnano-util-get-arguments "^4.0.0"
|
5430 |
+
cssnano-util-get-match "^4.0.0"
|
5431 |
+
postcss "^7.0.0"
|
5432 |
+
postcss-value-parser "^3.0.0"
|
5433 |
+
|
5434 |
+
postcss-normalize-string@^4.0.1:
|
5435 |
+
version "4.0.1"
|
5436 |
+
resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.1.tgz#23c5030c2cc24175f66c914fa5199e2e3c10fef3"
|
5437 |
+
integrity sha512-IJoexFTkAvAq5UZVxWXAGE0yLoNN/012v7TQh5nDo6imZJl2Fwgbhy3J2qnIoaDBrtUP0H7JrXlX1jjn2YcvCQ==
|
5438 |
+
dependencies:
|
5439 |
+
has "^1.0.0"
|
5440 |
+
postcss "^7.0.0"
|
5441 |
+
postcss-value-parser "^3.0.0"
|
5442 |
+
|
5443 |
+
postcss-normalize-timing-functions@^4.0.1:
|
5444 |
+
version "4.0.1"
|
5445 |
+
resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.1.tgz#8be83e0b9cb3ff2d1abddee032a49108f05f95d7"
|
5446 |
+
integrity sha512-1nOtk7ze36+63ONWD8RCaRDYsnzorrj+Q6fxkQV+mlY5+471Qx9kspqv0O/qQNMeApg8KNrRf496zHwJ3tBZ7w==
|
5447 |
+
dependencies:
|
5448 |
+
cssnano-util-get-match "^4.0.0"
|
5449 |
+
postcss "^7.0.0"
|
5450 |
+
postcss-value-parser "^3.0.0"
|
5451 |
+
|
5452 |
+
postcss-normalize-unicode@^4.0.1:
|
5453 |
+
version "4.0.1"
|
5454 |
+
resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb"
|
5455 |
+
integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==
|
5456 |
+
dependencies:
|
5457 |
+
browserslist "^4.0.0"
|
5458 |
+
postcss "^7.0.0"
|
5459 |
+
postcss-value-parser "^3.0.0"
|
5460 |
+
|
5461 |
+
postcss-normalize-url@^4.0.1:
|
5462 |
+
version "4.0.1"
|
5463 |
+
resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1"
|
5464 |
+
integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==
|
5465 |
+
dependencies:
|
5466 |
+
is-absolute-url "^2.0.0"
|
5467 |
+
normalize-url "^3.0.0"
|
5468 |
+
postcss "^7.0.0"
|
5469 |
+
postcss-value-parser "^3.0.0"
|
5470 |
+
|
5471 |
+
postcss-normalize-whitespace@^4.0.1:
|
5472 |
+
version "4.0.1"
|
5473 |
+
resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.1.tgz#d14cb639b61238418ac8bc8d3b7bdd65fc86575e"
|
5474 |
+
integrity sha512-U8MBODMB2L+nStzOk6VvWWjZgi5kQNShCyjRhMT3s+W9Jw93yIjOnrEkKYD3Ul7ChWbEcjDWmXq0qOL9MIAnAw==
|
5475 |
+
dependencies:
|
5476 |
+
postcss "^7.0.0"
|
5477 |
+
postcss-value-parser "^3.0.0"
|
5478 |
+
|
5479 |
+
postcss-ordered-values@^4.1.1:
|
5480 |
+
version "4.1.1"
|
5481 |
+
resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.1.tgz#2e3b432ef3e489b18333aeca1f1295eb89be9fc2"
|
5482 |
+
integrity sha512-PeJiLgJWPzkVF8JuKSBcylaU+hDJ/TX3zqAMIjlghgn1JBi6QwQaDZoDIlqWRcCAI8SxKrt3FCPSRmOgKRB97Q==
|
5483 |
+
dependencies:
|
5484 |
+
cssnano-util-get-arguments "^4.0.0"
|
5485 |
+
postcss "^7.0.0"
|
5486 |
+
postcss-value-parser "^3.0.0"
|
5487 |
+
|
5488 |
+
postcss-reduce-initial@^4.0.2:
|
5489 |
+
version "4.0.2"
|
5490 |
+
resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.2.tgz#bac8e325d67510ee01fa460676dc8ea9e3b40f15"
|
5491 |
+
integrity sha512-epUiC39NonKUKG+P3eAOKKZtm5OtAtQJL7Ye0CBN1f+UQTHzqotudp+hki7zxXm7tT0ZAKDMBj1uihpPjP25ug==
|
5492 |
+
dependencies:
|
5493 |
+
browserslist "^4.0.0"
|
5494 |
+
caniuse-api "^3.0.0"
|
5495 |
+
has "^1.0.0"
|
5496 |
+
postcss "^7.0.0"
|
5497 |
+
|
5498 |
+
postcss-reduce-transforms@^4.0.1:
|
5499 |
+
version "4.0.1"
|
5500 |
+
resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.1.tgz#8600d5553bdd3ad640f43bff81eb52f8760d4561"
|
5501 |
+
integrity sha512-sZVr3QlGs0pjh6JAIe6DzWvBaqYw05V1t3d9Tp+VnFRT5j+rsqoWsysh/iSD7YNsULjq9IAylCznIwVd5oU/zA==
|
5502 |
+
dependencies:
|
5503 |
+
cssnano-util-get-match "^4.0.0"
|
5504 |
+
has "^1.0.0"
|
5505 |
+
postcss "^7.0.0"
|
5506 |
+
postcss-value-parser "^3.0.0"
|
5507 |
+
|
5508 |
+
postcss-selector-parser@^2.2.2:
|
5509 |
+
version "2.2.3"
|
5510 |
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90"
|
5511 |
+
integrity sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=
|
5512 |
+
dependencies:
|
5513 |
+
flatten "^1.0.2"
|
5514 |
+
indexes-of "^1.0.1"
|
5515 |
+
uniq "^1.0.1"
|
5516 |
+
|
5517 |
+
postcss-selector-parser@^3.0.0:
|
5518 |
+
version "3.1.1"
|
5519 |
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865"
|
5520 |
+
integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=
|
5521 |
+
dependencies:
|
5522 |
+
dot-prop "^4.1.1"
|
5523 |
+
indexes-of "^1.0.1"
|
5524 |
+
uniq "^1.0.1"
|
5525 |
+
|
5526 |
+
postcss-svgo@^4.0.1:
|
5527 |
+
version "4.0.1"
|
5528 |
+
resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.1.tgz#5628cdb38f015de6b588ce6d0bf0724b492b581d"
|
5529 |
+
integrity sha512-YD5uIk5NDRySy0hcI+ZJHwqemv2WiqqzDgtvgMzO8EGSkK5aONyX8HMVFRFJSdO8wUWTuisUFn/d7yRRbBr5Qw==
|
5530 |
+
dependencies:
|
5531 |
+
is-svg "^3.0.0"
|
5532 |
+
postcss "^7.0.0"
|
5533 |
+
postcss-value-parser "^3.0.0"
|
5534 |
+
svgo "^1.0.0"
|
5535 |
+
|
5536 |
+
postcss-unique-selectors@^4.0.1:
|
5537 |
+
version "4.0.1"
|
5538 |
+
resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac"
|
5539 |
+
integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==
|
5540 |
+
dependencies:
|
5541 |
+
alphanum-sort "^1.0.0"
|
5542 |
+
postcss "^7.0.0"
|
5543 |
+
uniqs "^2.0.0"
|
5544 |
+
|
5545 |
+
postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0:
|
5546 |
version "3.3.0"
|
5547 |
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
|
5548 |
integrity sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=
|
|
|
5556 |
source-map "^0.6.1"
|
5557 |
supports-color "^5.4.0"
|
5558 |
|
5559 |
+
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.2:
|
5560 |
version "7.0.5"
|
5561 |
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.5.tgz#70e6443e36a6d520b0fd4e7593fcca3635ee9f55"
|
5562 |
integrity sha512-HBNpviAUFCKvEh7NZhw1e8MBPivRszIiUnhrJ+sBFVSYSqubrzwX3KG51mYgcRHX8j/cAgZJedONZcm5jTBdgQ==
|
|
|
5656 |
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
5657 |
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
5658 |
|
5659 |
+
q@^1.1.2:
|
5660 |
+
version "1.5.1"
|
5661 |
+
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
|
5662 |
+
integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
|
5663 |
+
|
5664 | |
5665 |
version "6.5.1"
|
5666 |
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
|
|
|
5796 |
indent-string "^2.1.0"
|
5797 |
strip-indent "^1.0.1"
|
5798 |
|
5799 |
+
reduce-css-calc@^2.0.0:
|
5800 |
+
version "2.1.5"
|
5801 |
+
resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.5.tgz#f283712f0c9708ef952d328f4b16112d57b03714"
|
5802 |
+
integrity sha512-AybiBU03FKbjYzyvJvwkJZY6NLN+80Ufc2EqEs+41yQH+8wqBEslD6eGiS0oIeq5TNLA5PrhBeYHXWdn8gtW7A==
|
5803 |
+
dependencies:
|
5804 |
+
css-unit-converter "^1.1.1"
|
5805 |
+
postcss-value-parser "^3.3.0"
|
5806 |
+
|
5807 |
regenerate-unicode-properties@^7.0.0:
|
5808 |
version "7.0.0"
|
5809 |
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c"
|
|
|
6032 |
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
|
6033 |
integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
|
6034 |
|
6035 |
+
rgb-regex@^1.0.1:
|
6036 |
+
version "1.0.1"
|
6037 |
+
resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
|
6038 |
+
integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE=
|
6039 |
+
|
6040 |
+
rgba-regex@^1.0.0:
|
6041 |
+
version "1.0.0"
|
6042 |
+
resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
|
6043 |
+
integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
|
6044 |
+
|
6045 |
rimraf@2, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2:
|
6046 |
version "2.6.2"
|
6047 |
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
|
|
|
6122 |
pify "^3.0.0"
|
6123 |
semver "^5.5.0"
|
6124 |
|
6125 |
+
sax@^1.2.4, sax@~1.2.4:
|
6126 |
version "1.2.4"
|
6127 |
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
6128 |
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
|
|
6305 |
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
6306 |
integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
|
6307 |
|
6308 |
+
simple-swizzle@^0.2.2:
|
6309 |
+
version "0.2.2"
|
6310 |
+
resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
|
6311 |
+
integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
|
6312 |
+
dependencies:
|
6313 |
+
is-arrayish "^0.3.1"
|
6314 |
+
|
6315 |
slash@^1.0.0:
|
6316 |
version "1.0.0"
|
6317 |
resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
|
|
|
6409 |
dependencies:
|
6410 |
amdefine ">=0.0.4"
|
6411 |
|
6412 |
+
source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6:
|
6413 |
version "0.5.7"
|
6414 |
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
6415 |
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
|
|
|
6505 |
dependencies:
|
6506 |
safe-buffer "^5.1.1"
|
6507 |
|
6508 |
+
stable@~0.1.6:
|
6509 |
+
version "0.1.8"
|
6510 |
+
resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
|
6511 |
+
integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
|
6512 |
+
|
6513 |
static-extend@^0.1.1:
|
6514 |
version "0.1.2"
|
6515 |
resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
|
|
|
6647 |
loader-utils "^1.1.0"
|
6648 |
schema-utils "^1.0.0"
|
6649 |
|
6650 |
+
stylehacks@^4.0.0:
|
6651 |
+
version "4.0.1"
|
6652 |
+
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.1.tgz#3186595d047ab0df813d213e51c8b94e0b9010f2"
|
6653 |
+
integrity sha512-TK5zEPeD9NyC1uPIdjikzsgWxdQQN/ry1X3d1iOz1UkYDCmcr928gWD1KHgyC27F50UnE0xCTrBOO1l6KR8M4w==
|
6654 |
+
dependencies:
|
6655 |
+
browserslist "^4.0.0"
|
6656 |
+
postcss "^7.0.0"
|
6657 |
+
postcss-selector-parser "^3.0.0"
|
6658 |
+
|
6659 |
supports-color@^2.0.0:
|
6660 |
version "2.0.0"
|
6661 |
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
|
|
6675 |
dependencies:
|
6676 |
has-flag "^3.0.0"
|
6677 |
|
6678 |
+
svgo@^1.0.0:
|
6679 |
+
version "1.1.1"
|
6680 |
+
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.1.1.tgz#12384b03335bcecd85cfa5f4e3375fed671cb985"
|
6681 |
+
integrity sha512-GBkJbnTuFpM4jFbiERHDWhZc/S/kpHToqmZag3aEBjPYK44JAN2QBjvrGIxLOoCyMZjuFQIfTO2eJd8uwLY/9g==
|
6682 |
+
dependencies:
|
6683 |
+
coa "~2.0.1"
|
6684 |
+
colors "~1.1.2"
|
6685 |
+
css-select "^2.0.0"
|
6686 |
+
css-select-base-adapter "~0.1.0"
|
6687 |
+
css-tree "1.0.0-alpha.28"
|
6688 |
+
css-url-regex "^1.1.0"
|
6689 |
+
csso "^3.5.0"
|
6690 |
+
js-yaml "^3.12.0"
|
6691 |
+
mkdirp "~0.5.1"
|
6692 |
+
object.values "^1.0.4"
|
6693 |
+
sax "~1.2.4"
|
6694 |
+
stable "~0.1.6"
|
6695 |
+
unquote "~1.1.1"
|
6696 |
+
util.promisify "~1.0.0"
|
6697 |
+
|
6698 |
table@^4.0.3:
|
6699 |
version "4.0.3"
|
6700 |
resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc"
|
|
|
6764 |
dependencies:
|
6765 |
setimmediate "^1.0.4"
|
6766 |
|
6767 |
+
timsort@^0.3.0:
|
6768 |
+
version "0.3.0"
|
6769 |
+
resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
|
6770 |
+
integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
|
6771 |
+
|
6772 |
tmp@^0.0.33:
|
6773 |
version "0.0.33"
|
6774 |
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
|
|
|
6937 |
is-extendable "^0.1.1"
|
6938 |
set-value "^0.4.3"
|
6939 |
|
6940 |
+
uniq@^1.0.1:
|
6941 |
+
version "1.0.1"
|
6942 |
+
resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
|
6943 |
+
integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
|
6944 |
+
|
6945 |
+
uniqs@^2.0.0:
|
6946 |
+
version "2.0.0"
|
6947 |
+
resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
|
6948 |
+
integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI=
|
6949 |
+
|
6950 |
unique-filename@^1.1.0:
|
6951 |
version "1.1.0"
|
6952 |
resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.0.tgz#d05f2fe4032560871f30e93cbe735eea201514f3"
|
|
|
6966 |
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
|
6967 |
integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
|
6968 |
|
6969 |
+
unquote@~1.1.1:
|
6970 |
+
version "1.1.1"
|
6971 |
+
resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
|
6972 |
+
integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
|
6973 |
+
|
6974 |
unset-value@^1.0.0:
|
6975 |
version "1.0.0"
|
6976 |
resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
|
|
|
7029 |
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
7030 |
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
|
7031 |
|
7032 |
+
util.promisify@^1.0.0, util.promisify@~1.0.0:
|
7033 |
version "1.0.0"
|
7034 |
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
|
7035 |
integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
|
|
|
7079 |
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
|
7080 |
integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
|
7081 |
|
7082 |
+
vendors@^1.0.0:
|
7083 |
+
version "1.0.2"
|
7084 |
+
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.2.tgz#7fcb5eef9f5623b156bcea89ec37d63676f21801"
|
7085 |
+
integrity sha512-w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ==
|
7086 |
+
|
7087 | |
7088 |
version "1.10.0"
|
7089 |
resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
|