twmodule 0.0.25 → 0.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/twComp.umd.js CHANGED
@@ -435,6 +435,30 @@ if (typeof store.inspectSource != 'function') {
435
435
  module.exports = store.inspectSource;
436
436
 
437
437
 
438
+ /***/ }),
439
+
440
+ /***/ "1784":
441
+ /***/ (function(module, exports, __webpack_require__) {
442
+
443
+ "use strict";
444
+
445
+ var $ = __webpack_require__("1c8b");
446
+ var $reduce = __webpack_require__("58d8").left;
447
+ var arrayMethodIsStrict = __webpack_require__("d7e1");
448
+ var arrayMethodUsesToLength = __webpack_require__("ff9c");
449
+
450
+ var STRICT_METHOD = arrayMethodIsStrict('reduce');
451
+ var USES_TO_LENGTH = arrayMethodUsesToLength('reduce', { 1: 0 });
452
+
453
+ // `Array.prototype.reduce` method
454
+ // https://tc39.github.io/ecma262/#sec-array.prototype.reduce
455
+ $({ target: 'Array', proto: true, forced: !STRICT_METHOD || !USES_TO_LENGTH }, {
456
+ reduce: function reduce(callbackfn /* , initialValue */) {
457
+ return $reduce(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined);
458
+ }
459
+ });
460
+
461
+
438
462
  /***/ }),
439
463
 
440
464
  /***/ "18f6":
@@ -562,44 +586,9 @@ function _iterableToArrayLimit(arr, i) {
562
586
 
563
587
  return _arr;
564
588
  }
565
- // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.array.from.js
566
- var es_array_from = __webpack_require__("98e0");
567
-
568
- // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.array.slice.js
569
- var es_array_slice = __webpack_require__("77ad");
570
-
571
- // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.function.name.js
572
- var es_function_name = __webpack_require__("053b");
573
-
574
- // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.regexp.to-string.js
575
- var es_regexp_to_string = __webpack_require__("1c2e");
589
+ // EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/unsupportedIterableToArray.js
590
+ var unsupportedIterableToArray = __webpack_require__("3846");
576
591
 
577
- // CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/arrayLikeToArray.js
578
- function _arrayLikeToArray(arr, len) {
579
- if (len == null || len > arr.length) len = arr.length;
580
-
581
- for (var i = 0, arr2 = new Array(len); i < len; i++) {
582
- arr2[i] = arr[i];
583
- }
584
-
585
- return arr2;
586
- }
587
- // CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/unsupportedIterableToArray.js
588
-
589
-
590
-
591
-
592
-
593
-
594
-
595
- function _unsupportedIterableToArray(o, minLen) {
596
- if (!o) return;
597
- if (typeof o === "string") return _arrayLikeToArray(o, minLen);
598
- var n = Object.prototype.toString.call(o).slice(8, -1);
599
- if (n === "Object" && o.constructor) n = o.constructor.name;
600
- if (n === "Map" || n === "Set") return Array.from(o);
601
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
602
- }
603
592
  // CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/nonIterableRest.js
604
593
  function _nonIterableRest() {
605
594
  throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
@@ -610,7 +599,7 @@ function _nonIterableRest() {
610
599
 
611
600
 
612
601
  function _slicedToArray(arr, i) {
613
- return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
602
+ return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || Object(unsupportedIterableToArray["a" /* default */])(arr, i) || _nonIterableRest();
614
603
  }
615
604
 
616
605
  /***/ }),
@@ -1043,6 +1032,56 @@ module.exports = function (key) {
1043
1032
  };
1044
1033
 
1045
1034
 
1035
+ /***/ }),
1036
+
1037
+ /***/ "262e":
1038
+ /***/ (function(module, exports, __webpack_require__) {
1039
+
1040
+ var anObject = __webpack_require__("857c");
1041
+ var isArrayIteratorMethod = __webpack_require__("98a9");
1042
+ var toLength = __webpack_require__("d88d");
1043
+ var bind = __webpack_require__("e349");
1044
+ var getIteratorMethod = __webpack_require__("b60f");
1045
+ var callWithSafeIterationClosing = __webpack_require__("69c5");
1046
+
1047
+ var Result = function (stopped, result) {
1048
+ this.stopped = stopped;
1049
+ this.result = result;
1050
+ };
1051
+
1052
+ var iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) {
1053
+ var boundFunction = bind(fn, that, AS_ENTRIES ? 2 : 1);
1054
+ var iterator, iterFn, index, length, result, next, step;
1055
+
1056
+ if (IS_ITERATOR) {
1057
+ iterator = iterable;
1058
+ } else {
1059
+ iterFn = getIteratorMethod(iterable);
1060
+ if (typeof iterFn != 'function') throw TypeError('Target is not iterable');
1061
+ // optimisation for array iterators
1062
+ if (isArrayIteratorMethod(iterFn)) {
1063
+ for (index = 0, length = toLength(iterable.length); length > index; index++) {
1064
+ result = AS_ENTRIES
1065
+ ? boundFunction(anObject(step = iterable[index])[0], step[1])
1066
+ : boundFunction(iterable[index]);
1067
+ if (result && result instanceof Result) return result;
1068
+ } return new Result(false);
1069
+ }
1070
+ iterator = iterFn.call(iterable);
1071
+ }
1072
+
1073
+ next = iterator.next;
1074
+ while (!(step = next.call(iterator)).done) {
1075
+ result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES);
1076
+ if (typeof result == 'object' && result && result instanceof Result) return result;
1077
+ } return new Result(false);
1078
+ };
1079
+
1080
+ iterate.stop = function (result) {
1081
+ return new Result(true, result);
1082
+ };
1083
+
1084
+
1046
1085
  /***/ }),
1047
1086
 
1048
1087
  /***/ "2732":
@@ -1827,6 +1866,23 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGT
1827
1866
  });
1828
1867
 
1829
1868
 
1869
+ /***/ }),
1870
+
1871
+ /***/ "34d9":
1872
+ /***/ (function(module, exports, __webpack_require__) {
1873
+
1874
+ "use strict";
1875
+
1876
+ var collection = __webpack_require__("8216");
1877
+ var collectionStrong = __webpack_require__("be57");
1878
+
1879
+ // `Set` constructor
1880
+ // https://tc39.github.io/ecma262/#sec-set-objects
1881
+ module.exports = collection('Set', function (init) {
1882
+ return function Set() { return init(this, arguments.length ? arguments[0] : undefined); };
1883
+ }, collectionStrong);
1884
+
1885
+
1830
1886
  /***/ }),
1831
1887
 
1832
1888
  /***/ "3553":
@@ -1841,6 +1897,42 @@ module.exports = function (argument) {
1841
1897
  };
1842
1898
 
1843
1899
 
1900
+ /***/ }),
1901
+
1902
+ /***/ "3846":
1903
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
1904
+
1905
+ "use strict";
1906
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return _unsupportedIterableToArray; });
1907
+ /* harmony import */ var core_js_modules_es_array_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("98e0");
1908
+ /* harmony import */ var core_js_modules_es_array_from__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_from__WEBPACK_IMPORTED_MODULE_0__);
1909
+ /* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("77ad");
1910
+ /* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_1__);
1911
+ /* harmony import */ var core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("053b");
1912
+ /* harmony import */ var core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_2__);
1913
+ /* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("e18c");
1914
+ /* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_3__);
1915
+ /* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("1c2e");
1916
+ /* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_4__);
1917
+ /* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("96db");
1918
+ /* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_5__);
1919
+ /* harmony import */ var _arrayLikeToArray__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__("b85e");
1920
+
1921
+
1922
+
1923
+
1924
+
1925
+
1926
+
1927
+ function _unsupportedIterableToArray(o, minLen) {
1928
+ if (!o) return;
1929
+ if (typeof o === "string") return Object(_arrayLikeToArray__WEBPACK_IMPORTED_MODULE_6__[/* default */ "a"])(o, minLen);
1930
+ var n = Object.prototype.toString.call(o).slice(8, -1);
1931
+ if (n === "Object" && o.constructor) n = o.constructor.name;
1932
+ if (n === "Map" || n === "Set") return Array.from(o);
1933
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return Object(_arrayLikeToArray__WEBPACK_IMPORTED_MODULE_6__[/* default */ "a"])(o, minLen);
1934
+ }
1935
+
1844
1936
  /***/ }),
1845
1937
 
1846
1938
  /***/ "38b9":
@@ -1901,6 +1993,13 @@ module.exports = function (argument) {
1901
1993
  };
1902
1994
 
1903
1995
 
1996
+ /***/ }),
1997
+
1998
+ /***/ "3dd7":
1999
+ /***/ (function(module, exports, __webpack_require__) {
2000
+
2001
+ // extracted by mini-css-extract-plugin
2002
+
1904
2003
  /***/ }),
1905
2004
 
1906
2005
  /***/ "403f":
@@ -2301,6 +2400,53 @@ try {
2301
2400
  module.exports = g;
2302
2401
 
2303
2402
 
2403
+ /***/ }),
2404
+
2405
+ /***/ "58d8":
2406
+ /***/ (function(module, exports, __webpack_require__) {
2407
+
2408
+ var aFunction = __webpack_require__("0c3c");
2409
+ var toObject = __webpack_require__("3553");
2410
+ var IndexedObject = __webpack_require__("692f");
2411
+ var toLength = __webpack_require__("d88d");
2412
+
2413
+ // `Array.prototype.{ reduce, reduceRight }` methods implementation
2414
+ var createMethod = function (IS_RIGHT) {
2415
+ return function (that, callbackfn, argumentsLength, memo) {
2416
+ aFunction(callbackfn);
2417
+ var O = toObject(that);
2418
+ var self = IndexedObject(O);
2419
+ var length = toLength(O.length);
2420
+ var index = IS_RIGHT ? length - 1 : 0;
2421
+ var i = IS_RIGHT ? -1 : 1;
2422
+ if (argumentsLength < 2) while (true) {
2423
+ if (index in self) {
2424
+ memo = self[index];
2425
+ index += i;
2426
+ break;
2427
+ }
2428
+ index += i;
2429
+ if (IS_RIGHT ? index < 0 : length <= index) {
2430
+ throw TypeError('Reduce of empty array with no initial value');
2431
+ }
2432
+ }
2433
+ for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {
2434
+ memo = callbackfn(memo, self[index], index, O);
2435
+ }
2436
+ return memo;
2437
+ };
2438
+ };
2439
+
2440
+ module.exports = {
2441
+ // `Array.prototype.reduce` method
2442
+ // https://tc39.github.io/ecma262/#sec-array.prototype.reduce
2443
+ left: createMethod(false),
2444
+ // `Array.prototype.reduceRight` method
2445
+ // https://tc39.github.io/ecma262/#sec-array.prototype.reduceright
2446
+ right: createMethod(true)
2447
+ };
2448
+
2449
+
2304
2450
  /***/ }),
2305
2451
 
2306
2452
  /***/ "59da":
@@ -2330,6 +2476,14 @@ module.exports = function (R, S) {
2330
2476
 
2331
2477
 
2332
2478
 
2479
+ /***/ }),
2480
+
2481
+ /***/ "5d4e":
2482
+ /***/ (function(module, exports, __webpack_require__) {
2483
+
2484
+ !function(t,e){ true?module.exports=e():undefined}(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=57)}([function(t,e,n){var o=n(2),i=n(11),r=n(4),s=n(13),a=n(22),c=function(t,e,n){var u,l,h,f,p=t&c.F,d=t&c.G,v=t&c.S,y=t&c.P,g=t&c.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?a(h,o):y&&"function"==typeof h?a(Function.call,h):h,m&&s(m,u,h,t&c.U),b[u]!=h&&r(b,u,f),y&&w[u]!=h&&(w[u]=h)};o.core=i,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,t.exports=c},function(t,e,n){var o=n(17)("wks"),i=n(14),r=n(2).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){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){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var o=n(5),i=n(16);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(12),i=n(35),r=n(21),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){t.exports=!n(7)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var o=n(39),i=n(24);t.exports=function(t){return o(i(t))}},function(t,e,n){var o=n(0);o(o.S+o.F*!n(6),"Object",{defineProperty:n(5).f})},function(t,e){var n=t.exports={version:"2.6.9"};"number"==typeof __e&&(__e=n)},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,n){var o=n(2),i=n(4),r=n(8),s=n(14)("src"),a=n(59),c=(""+a).split("toString");n(11).inspectSource=function(t){return a.call(t)},(t.exports=function(t,e,n,a){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]:c.join(String(e)))),t===o?t[e]=n:a?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]||a.call(this)})},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(45),i=n(28);t.exports=Object.keys||function(t){return o(t,i)}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var o=n(11),i=n(2),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(18)?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,e){t.exports=!1},function(t,e,n){var o=n(24);t.exports=function(t){return Object(o(t))}},function(t,e,n){"use strict";var o=n(2),i=n(8),r=n(6),s=n(0),a=n(13),c=n(62).KEY,u=n(7),l=n(17),h=n(26),f=n(14),p=n(1),d=n(43),v=n(44),y=n(63),g=n(42),m=n(12),b=n(3),w=n(19),x=n(9),S=n(21),O=n(16),k=n(30),P=n(67),E=n(49),N=n(47),j=n(5),L=n(15),T=E.f,C=j.f,_=P.f,M=o.Symbol,H=o.JSON,B=H&&H.stringify,F=p("_hidden"),I=p("toPrimitive"),R={}.propertyIsEnumerable,A=l("symbol-registry"),z=l("symbols"),D=l("op-symbols"),V=Object.prototype,W="function"==typeof M&&!!N.f,q=o.QObject,G=!q||!q.prototype||!q.prototype.findChild,K=r&&u(function(){return 7!=k(C({},"a",{get:function(){return C(this,"a",{value:7}).a}})).a})?function(t,e,n){var o=T(V,e);o&&delete V[e],C(t,e,n),o&&t!==V&&C(V,e,o)}:C,U=function(t){var e=z[t]=k(M.prototype);return e._k=t,e},Y=W&&"symbol"==typeof M.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof M},J=function(t,e,n){return t===V&&J(D,e,n),m(t),e=S(e,!0),m(n),i(z,e)?(n.enumerable?(i(t,F)&&t[F][e]&&(t[F][e]=!1),n=k(n,{enumerable:O(0,!1)})):(i(t,F)||C(t,F,O(1,{})),t[F][e]=!0),K(t,e,n)):C(t,e,n)},X=function(t,e){m(t);for(var n,o=y(e=x(e)),i=0,r=o.length;r>i;)J(t,n=o[i++],e[n]);return t},Q=function(t){var e=R.call(this,t=S(t,!0));return!(this===V&&i(z,t)&&!i(D,t))&&(!(e||!i(this,t)||!i(z,t)||i(this,F)&&this[F][t])||e)},$=function(t,e){if(t=x(t),e=S(e,!0),t!==V||!i(z,e)||i(D,e)){var n=T(t,e);return!n||!i(z,e)||i(t,F)&&t[F][e]||(n.enumerable=!0),n}},Z=function(t){for(var e,n=_(x(t)),o=[],r=0;n.length>r;)i(z,e=n[r++])||e==F||e==c||o.push(e);return o},tt=function(t){for(var e,n=t===V,o=_(n?D:x(t)),r=[],s=0;o.length>s;)!i(z,e=o[s++])||n&&!i(V,e)||r.push(z[e]);return r};W||(a((M=function(){if(this instanceof M)throw TypeError("Symbol is not a constructor!");var t=f(arguments.length>0?arguments[0]:void 0),e=function(n){this===V&&e.call(D,n),i(this,F)&&i(this[F],t)&&(this[F][t]=!1),K(this,t,O(1,n))};return r&&G&&K(V,t,{configurable:!0,set:e}),U(t)}).prototype,"toString",function(){return this._k}),E.f=$,j.f=J,n(48).f=P.f=Z,n(29).f=Q,N.f=tt,r&&!n(18)&&a(V,"propertyIsEnumerable",Q,!0),d.f=function(t){return U(p(t))}),s(s.G+s.W+s.F*!W,{Symbol:M});for(var et="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),nt=0;et.length>nt;)p(et[nt++]);for(var ot=L(p.store),it=0;ot.length>it;)v(ot[it++]);s(s.S+s.F*!W,"Symbol",{for:function(t){return i(A,t+="")?A[t]:A[t]=M(t)},keyFor:function(t){if(!Y(t))throw TypeError(t+" is not a symbol!");for(var e in A)if(A[e]===t)return e},useSetter:function(){G=!0},useSimple:function(){G=!1}}),s(s.S+s.F*!W,"Object",{create:function(t,e){return void 0===e?k(t):X(k(t),e)},defineProperty:J,defineProperties:X,getOwnPropertyDescriptor:$,getOwnPropertyNames:Z,getOwnPropertySymbols:tt});var rt=u(function(){N.f(1)});s(s.S+s.F*rt,"Object",{getOwnPropertySymbols:function(t){return N.f(w(t))}}),H&&s(s.S+s.F*(!W||u(function(){var t=M();return"[null]"!=B([t])||"{}"!=B({a:t})||"{}"!=B(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)&&!Y(t))return g(e)||(e=function(t,e){if("function"==typeof n&&(e=n.call(this,t,e)),!Y(e))return e}),o[1]=e,B.apply(H,o)}}),M.prototype[I]||n(4)(M.prototype,I,M.prototype.valueOf),h(M,"Symbol"),h(Math,"Math",!0),h(o.JSON,"JSON",!0)},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(37);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){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){"use strict";var o=n(7);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(5).f,i=n(8),r=n(1)("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,n){var o=n(17)("keys"),i=n(14);t.exports=function(t){return o[t]||(o[t]=i(t))}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var o=n(12),i=n(65),r=n(28),s=n(27)("IE_PROTO"),a=function(){},c=function(){var t,e=n(36)("iframe"),o=r.length;for(e.style.display="none",n(66).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),c=t.F;o--;)delete c.prototype[r[o]];return c()};t.exports=Object.create||function(t,e){var n;return null!==t?(a.prototype=o(t),n=new a,a.prototype=null,n[s]=t):n=c(),void 0===e?n:i(n,e)}},function(t,e,n){"use strict";var o=n(68),i=n(69),r=n(32),s=n(9);t.exports=n(70)(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){t.exports={}},function(t,e,n){n(44)("asyncIterator")},function(t,e,n){"use strict";var o=n(0),i=n(38)(0),r=n(25)([].forEach,!0);o(o.P+o.F*!r,"Array",{forEach:function(t){return i(this,t,arguments[1])}})},function(t,e,n){t.exports=!n(6)&&!n(7)(function(){return 7!=Object.defineProperty(n(36)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){var o=n(3),i=n(2).document,r=o(i)&&o(i.createElement);t.exports=function(t){return r?i.createElement(t):{}}},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(22),i=n(39),r=n(19),s=n(40),a=n(60);t.exports=function(t,e){var n=1==t,c=2==t,u=3==t,l=4==t,h=6==t,f=5==t||h,p=e||a;return function(e,a,d){for(var v,y,g=r(e),m=i(g),b=o(a,d,3),w=s(m.length),x=0,S=n?p(e,w):c?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,n){var o=n(23);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==o(t)?t.split(""):Object(t)}},function(t,e,n){var o=n(41),i=Math.min;t.exports=function(t){return t>0?i(o(t),9007199254740991):0}},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(23);t.exports=Array.isArray||function(t){return"Array"==o(t)}},function(t,e,n){e.f=n(1)},function(t,e,n){var o=n(2),i=n(11),r=n(18),s=n(43),a=n(5).f;t.exports=function(t){var e=i.Symbol||(i.Symbol=r?{}:o.Symbol||{});"_"==t.charAt(0)||t in e||a(e,t,{value:s.f(t)})}},function(t,e,n){var o=n(8),i=n(9),r=n(46)(!1),s=n(27)("IE_PROTO");t.exports=function(t,e){var n,a=i(t),c=0,u=[];for(n in a)n!=s&&o(a,n)&&u.push(n);for(;e.length>c;)o(a,n=e[c++])&&(~r(u,n)||u.push(n));return u}},function(t,e,n){var o=n(9),i=n(40),r=n(64);t.exports=function(t){return function(e,n,s){var a,c=o(e),u=i(c.length),l=r(s,u);if(t&&n!=n){for(;u>l;)if((a=c[l++])!=a)return!0}else for(;u>l;l++)if((t||l in c)&&c[l]===n)return t||l||0;return!t&&-1}}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var o=n(45),i=n(28).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return o(t,i)}},function(t,e,n){var o=n(29),i=n(16),r=n(9),s=n(21),a=n(8),c=n(35),u=Object.getOwnPropertyDescriptor;e.f=n(6)?u:function(t,e){if(t=r(t),e=s(e,!0),c)try{return u(t,e)}catch(t){}if(a(t,e))return i(!o.f.call(t,e),t[e])}},function(t,e,n){for(var o=n(31),i=n(15),r=n(13),s=n(2),a=n(4),c=n(32),u=n(1),l=u("iterator"),h=u("toStringTag"),f=c.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]||a(w,l,f),w[h]||a(w,h,g),c[g]=f,m))for(y in o)w[y]||r(w,y,o[y],!0)}},function(t,e,n){"use strict";var o=n(73),i={};i[n(1)("toStringTag")]="z",i+""!="[object z]"&&n(13)(Object.prototype,"toString",function(){return"[object "+o(this)+"]"},!0)},function(t,e,n){var o=n(19),i=n(15);n(74)("keys",function(){return function(t){return i(o(t))}})},function(t,e,n){"use strict";var o=n(0),i=n(38)(2);o(o.P+o.F*!n(25)([].filter,!0),"Array",{filter:function(t){return i(this,t,arguments[1])}})},function(t,e,n){var o=n(0);o(o.P,"Function",{bind:n(75)})},function(t,e,n){var o=n(0);o(o.S,"Object",{create:n(30)})},function(t,e,n){var o=n(0);o(o.S,"Object",{setPrototypeOf:n(81).set})},function(t,e,n){n(58),t.exports=n(82)},function(t,e){},function(t,e,n){t.exports=n(17)("native-function-to-string",Function.toString)},function(t,e,n){var o=n(61);t.exports=function(t,e){return new(o(t))(e)}},function(t,e,n){var o=n(3),i=n(42),r=n(1)("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(14)("meta"),i=n(3),r=n(8),s=n(5).f,a=0,c=Object.isExtensible||function(){return!0},u=!n(7)(function(){return c(Object.preventExtensions({}))}),l=function(t){s(t,o,{value:{i:"O"+ ++a,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(!c(t))return"F";if(!e)return"E";l(t)}return t[o].i},getWeak:function(t,e){if(!r(t,o)){if(!c(t))return!0;if(!e)return!1;l(t)}return t[o].w},onFreeze:function(t){return u&&h.NEED&&c(t)&&!r(t,o)&&l(t),t}}},function(t,e,n){var o=n(15),i=n(47),r=n(29);t.exports=function(t){var e=o(t),n=i.f;if(n)for(var s,a=n(t),c=r.f,u=0;a.length>u;)c.call(t,s=a[u++])&&e.push(s);return e}},function(t,e,n){var o=n(41),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(5),i=n(12),r=n(15);t.exports=n(6)?Object.defineProperties:function(t,e){i(t);for(var n,s=r(e),a=s.length,c=0;a>c;)o.f(t,n=s[c++],e[n]);return t}},function(t,e,n){var o=n(2).document;t.exports=o&&o.documentElement},function(t,e,n){var o=n(9),i=n(48).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(1)("unscopables"),i=Array.prototype;null==i[o]&&n(4)(i,o,{}),t.exports=function(t){i[o][t]=!0}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){"use strict";var o=n(18),i=n(0),r=n(13),s=n(4),a=n(32),c=n(71),u=n(26),l=n(72),h=n(1)("iterator"),f=!([].keys&&"next"in[].keys()),p=function(){return this};t.exports=function(t,e,n,d,v,y,g){c(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],N=E||x(v),j=v?O?x("entries"):N:void 0,L="Array"==e&&P.entries||E;if(L&&(w=l(L.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,N=function(){return E.call(this)}),o&&!g||!f&&!k&&P[h]||s(P,h,N),a[e]=N,a[S]=p,v)if(m={values:O?N:x("values"),keys:y?N:x("keys"),entries:j},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,n){"use strict";var o=n(30),i=n(16),r=n(26),s={};n(4)(s,n(1)("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){var o=n(8),i=n(19),r=n(27)("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(23),i=n(1)("toStringTag"),r="Arguments"==o(function(){return arguments}());t.exports=function(t){var e,n,s;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),i))?n:r?o(e):"Object"==(s=o(e))&&"function"==typeof e.callee?"Arguments":s}},function(t,e,n){var o=n(0),i=n(11),r=n(7);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){"use strict";var o=n(37),i=n(3),r=n(76),s=[].slice,a={};t.exports=Function.bind||function(t){var e=o(this),n=s.call(arguments,1),c=function(){var o=n.concat(s.call(arguments));return this instanceof c?function(t,e,n){if(!(e in a)){for(var o=[],i=0;i<e;i++)o[i]="a["+i+"]";a[e]=Function("F,a","return new F("+o.join(",")+")")}return a[e](t,n)}(e,o.length,o):r(e,o,t)};return i(e.prototype)&&(c.prototype=e.prototype),c}},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";n(78)("trim",function(t){return function(){return t(this,3)}})},function(t,e,n){var o=n(0),i=n(24),r=n(7),s=n(79),a="["+s+"]",c=RegExp("^"+a+a+"*"),u=RegExp(a+a+"*$"),l=function(t,e,n){var i={},a=r(function(){return!!s[t]()||"​…"!="​…"[t]()}),c=i[t]=a?e(h):s[t];n&&(i[n]=c),o(o.P+o.F*a,"String",i)},h=l.trim=function(t,e){return t=String(i(t)),1&e&&(t=t.replace(c,"")),2&e&&(t=t.replace(u,"")),t};t.exports=l},function(t,e){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},function(t,e,n){"use strict";var o=n(0),i=n(46)(!1),r=[].indexOf,s=!!r&&1/[1].indexOf(1,-0)<0;o(o.P+o.F*(s||!n(25)(r)),"Array",{indexOf:function(t){return s?r.apply(this,arguments)||0:i(this,t,arguments[1])}})},function(t,e,n){var o=n(3),i=n(12),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(22)(Function.call,n(49).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";n.r(e);n(34),n(20),n(50),n(31),n(51),n(52),n(10),n(53),n(54);var o=.75,i=10,r=!0,s=!0,a=!0,c=!1,u="driver-highlighted-element-stage",l='<div id="'.concat("driver-page-overlay",'"></div>'),h='<div id="'.concat(u,'"></div>');n(33),n(77);function f(t){return(f="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 p=function(t){var e=document.createElement("div");return e.innerHTML=t.trim(),e.firstChild},d=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},v=function(t){return t&&"object"===f(t)&&"nodeType"in t};function y(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 g=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)}var e,n,o;return e=t,(n=[{key:"attachNode",value:function(){var t=this.document.getElementById("driver-page-overlay");t||(t=p(l),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,300)):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())}}])&&y(e.prototype,n),o&&y(e,o),t}();n(80);function m(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 b=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,a=void 0===s?0:s,c=e.bottom,u=void 0===c?0:c;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.left=o,this.right=a,this.top=r,this.bottom=u}var e,n,o;return e=t,(n=[{key:"canHighlight",value:function(){return this.left<this.right&&this.top<this.bottom}}])&&m(e.prototype,n),o&&m(e,o),t}();function w(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 x=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,a=e.window,c=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=c,this.window=a,this.options=o,this.overlay=s,this.popover=i,this.stage=r,this.animationTimeout=null}var e,n,o;return e=t,(n=[{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.node&&!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 b({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.isInView()||this.bringInView(),this.showPopover(),this.showStage(),this.addHighlightClasses(),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=d(t,"z-index"),n=parseFloat(d(t,"opacity")),o=d(t,"transform",!0),i=d(t,"transform-style",!0),r=d(t,"transform-box",!0),s=d(t,"filter",!0),a=d(t,"perspective",!0);(/[0-9]+/.test(e)||n<1||o&&"none"!==o||i&&"flat"!==i||r&&"border-box"!==r||s&&"none"!==s||a&&"none"!==a)&&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 d(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=300;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)}}}])&&w(e.prototype,n),o&&w(e,o),t}();n(55),n(56);function S(t){return(S="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 O(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function k(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 P(t,e){return!e||"object"!==S(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 E(t){return(E=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function N(t,e){return(N=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}var j=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=P(this,E(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){O(t,e,n[e])})}return t}({isFirst:!0,isLast:!0,totalCount:1,currentIndex:0,offset:0,showButtons:!0,closeBtnText:"Close",doneBtnText:"Done",startBtnText:"Next &rarr;",nextBtnText:"Next &rarr;",prevBtnText:"&larr; Previous"},t),i.window=n,i.document=o,i}var n,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&&N(t,e)}(e,x),n=e,(o=[{key:"attachNode",value:function(){var t=this.document.getElementById("driver-popover-item");t&&t.parentElement.removeChild(t),t=p(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return'\n <div id="'.concat("driver-popover-item",'" class="').concat(t,'">\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="driver-clearfix ').concat("driver-popover-footer",'">\n <button class="').concat("driver-close-btn",'">Close</button>\n <span class="driver-btn-group ').concat("driver-navigation-btns",'">\n <button class="').concat("driver-prev-btn",'">&larr; Previous</button>\n <button class="').concat("driver-next-btn",'">Next &rarr;</button>\n </span>\n </div>\n </div>')}(this.options.className)),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&&(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.attachNode(),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"mid-center":this.positionOnMidCenter(t);break;case"auto":default:this.autoPosition(t)}this.bringInView()}},{key:"renderFooter",value:function(){this.nextBtnNode.innerHTML=this.options.nextBtnText,this.prevBtnNode.innerHTML=this.options.prevBtnText,this.closeBtnNode.innerHTML=this.options.closeBtnText;var t=this.options.totalCount&&1!==this.options.totalCount;this.options.showButtons?(t?(this.nextBtnNode.style.display="inline-block",this.prevBtnNode.style.display="inline-block",this.closeBtnNode.classList.remove("driver-close-only-btn")):(this.nextBtnNode.style.display="none",this.prevBtnNode.style.display="none",this.closeBtnNode.classList.add("driver-close-only-btn")),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:"positionOnMidCenter",value:function(t){var e=this.getSize(),n=e.height,o=e.width/2,i=n/2,r=(t.bottom-t.top)/2,s=t.top-i+r+this.options.offset,a=this.options.offset+t.left+(t.right-t.left)/2;this.node.style.top="".concat(s,"px"),this.node.style.left="".concat(a-o-this.options.padding,"px"),this.node.style.right="",this.node.style.bottom="",this.tipNode.classList.add("mid-center")}},{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)}}])&&k(n.prototype,o),i&&k(n,i),e}();function L(t){return(L="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 T(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 C(t,e){return!e||"object"!==L(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){return(_=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 H=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=C(this,_(e).call(this))).options=t,i.window=n,i.document=o,i}var n,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,x),n=e,(o=[{key:"attachNode",value:function(){var t=this.document.getElementById(u);t||(t=p(h),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}}])&&T(n.prototype,o),i&&T(n,i),e}();function B(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){F(t,e,n[e])})}return t}function F(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function I(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 R});var R=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=B({animate:r,opacity:o,padding:i,scrollIntoViewOptions:null,allowClose:s,keyboardControl:a,overlayClickNext:c,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 g(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()}var e,n,u;return e=t,(n=[{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),"ontouchstart"in document.documentElement?this.window.addEventListener("touchstart",this.onClick,!1):this.window.addEventListener("click",this.onClick,!1)}},{key:"onClick",value:function(t){if(this.isActivated&&this.hasHighlightedElement()){t.stopPropagation();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.refresh()}},{key:"refresh",value:function(){this.overlay.refresh()}},{key:"onKeyUp",value:function(t){if(this.isActivated&&this.options.keyboardControl)if(27!==t.keyCode){var e=this.getHighlightedElement();e&&e.popover&&(39===t.keyCode?this.handleNext():37===t.keyCode&&this.handlePrevious())}else 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&&t.options&&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&&t.options&&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=B({},this.options),i=t,r="string"!=typeof t&&!v(t);if(!t||r&&!t.element)throw new Error("Element is required in step ".concat(n));r&&(i=t.element,o=B({},this.options,t));var s=v(i)?i:this.document.querySelector(i);if(!s)return console.warn("Element to highlight ".concat(i," not found")),null;var a=null;if(o.popover&&o.popover.title){var c=[this.options.className,o.popover.className].filter(function(t){return t}).join(" "),u=B({},o,o.popover,{className:c,totalCount:e.length,currentIndex:n,isFirst:0===n,isLast:0===e.length||n===e.length-1});a=new j(u,this.window,this.document)}var l=B({},o),h=new H(l,this.window,this.document);return new x({node:s,options:o,popover:a,stage:h,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)}}])&&I(e.prototype,n),u&&I(e,u),t}()}]).default});
2485
+ //# sourceMappingURL=driver.min.js.map
2486
+
2333
2487
  /***/ }),
2334
2488
 
2335
2489
  /***/ "5dfd":
@@ -2558,6 +2712,18 @@ var WeakMap = global.WeakMap;
2558
2712
  module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
2559
2713
 
2560
2714
 
2715
+ /***/ }),
2716
+
2717
+ /***/ "64bf":
2718
+ /***/ (function(module, exports, __webpack_require__) {
2719
+
2720
+ var fails = __webpack_require__("efe2");
2721
+
2722
+ module.exports = !fails(function () {
2723
+ return Object.isExtensible(Object.preventExtensions({}));
2724
+ });
2725
+
2726
+
2561
2727
  /***/ }),
2562
2728
 
2563
2729
  /***/ "692f":
@@ -3028,6 +3194,113 @@ module.exports = function (key) {
3028
3194
  };
3029
3195
 
3030
3196
 
3197
+ /***/ }),
3198
+
3199
+ /***/ "8216":
3200
+ /***/ (function(module, exports, __webpack_require__) {
3201
+
3202
+ "use strict";
3203
+
3204
+ var $ = __webpack_require__("1c8b");
3205
+ var global = __webpack_require__("d890");
3206
+ var isForced = __webpack_require__("e8d6");
3207
+ var redefine = __webpack_require__("1944");
3208
+ var InternalMetadataModule = __webpack_require__("a83a");
3209
+ var iterate = __webpack_require__("262e");
3210
+ var anInstance = __webpack_require__("c4e4");
3211
+ var isObject = __webpack_require__("a719");
3212
+ var fails = __webpack_require__("efe2");
3213
+ var checkCorrectnessOfIteration = __webpack_require__("f471");
3214
+ var setToStringTag = __webpack_require__("27b5");
3215
+ var inheritIfRequired = __webpack_require__("7063");
3216
+
3217
+ module.exports = function (CONSTRUCTOR_NAME, wrapper, common) {
3218
+ var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
3219
+ var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;
3220
+ var ADDER = IS_MAP ? 'set' : 'add';
3221
+ var NativeConstructor = global[CONSTRUCTOR_NAME];
3222
+ var NativePrototype = NativeConstructor && NativeConstructor.prototype;
3223
+ var Constructor = NativeConstructor;
3224
+ var exported = {};
3225
+
3226
+ var fixMethod = function (KEY) {
3227
+ var nativeMethod = NativePrototype[KEY];
3228
+ redefine(NativePrototype, KEY,
3229
+ KEY == 'add' ? function add(value) {
3230
+ nativeMethod.call(this, value === 0 ? 0 : value);
3231
+ return this;
3232
+ } : KEY == 'delete' ? function (key) {
3233
+ return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);
3234
+ } : KEY == 'get' ? function get(key) {
3235
+ return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);
3236
+ } : KEY == 'has' ? function has(key) {
3237
+ return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);
3238
+ } : function set(key, value) {
3239
+ nativeMethod.call(this, key === 0 ? 0 : key, value);
3240
+ return this;
3241
+ }
3242
+ );
3243
+ };
3244
+
3245
+ // eslint-disable-next-line max-len
3246
+ if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {
3247
+ new NativeConstructor().entries().next();
3248
+ })))) {
3249
+ // create collection constructor
3250
+ Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);
3251
+ InternalMetadataModule.REQUIRED = true;
3252
+ } else if (isForced(CONSTRUCTOR_NAME, true)) {
3253
+ var instance = new Constructor();
3254
+ // early implementations not supports chaining
3255
+ var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;
3256
+ // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false
3257
+ var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });
3258
+ // most early implementations doesn't supports iterables, most modern - not close it correctly
3259
+ // eslint-disable-next-line no-new
3260
+ var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });
3261
+ // for early implementations -0 and +0 not the same
3262
+ var BUGGY_ZERO = !IS_WEAK && fails(function () {
3263
+ // V8 ~ Chromium 42- fails only with 5+ elements
3264
+ var $instance = new NativeConstructor();
3265
+ var index = 5;
3266
+ while (index--) $instance[ADDER](index, index);
3267
+ return !$instance.has(-0);
3268
+ });
3269
+
3270
+ if (!ACCEPT_ITERABLES) {
3271
+ Constructor = wrapper(function (dummy, iterable) {
3272
+ anInstance(dummy, Constructor, CONSTRUCTOR_NAME);
3273
+ var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);
3274
+ if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);
3275
+ return that;
3276
+ });
3277
+ Constructor.prototype = NativePrototype;
3278
+ NativePrototype.constructor = Constructor;
3279
+ }
3280
+
3281
+ if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {
3282
+ fixMethod('delete');
3283
+ fixMethod('has');
3284
+ IS_MAP && fixMethod('get');
3285
+ }
3286
+
3287
+ if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);
3288
+
3289
+ // weak collections should not contains .clear method
3290
+ if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;
3291
+ }
3292
+
3293
+ exported[CONSTRUCTOR_NAME] = Constructor;
3294
+ $({ global: true, forced: Constructor != NativeConstructor }, exported);
3295
+
3296
+ setToStringTag(Constructor, CONSTRUCTOR_NAME);
3297
+
3298
+ if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);
3299
+
3300
+ return Constructor;
3301
+ };
3302
+
3303
+
3031
3304
  /***/ }),
3032
3305
 
3033
3306
  /***/ "84c2":
@@ -3348,6 +3621,19 @@ $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
3348
3621
  });
3349
3622
 
3350
3623
 
3624
+ /***/ }),
3625
+
3626
+ /***/ "99ab":
3627
+ /***/ (function(module, exports, __webpack_require__) {
3628
+
3629
+ var redefine = __webpack_require__("1944");
3630
+
3631
+ module.exports = function (target, src, options) {
3632
+ for (var key in src) redefine(target, key, src[key], options);
3633
+ return target;
3634
+ };
3635
+
3636
+
3351
3637
  /***/ }),
3352
3638
 
3353
3639
  /***/ "99ad":
@@ -3813,7 +4099,7 @@ function _defineProperty(obj, key, value) {
3813
4099
 
3814
4100
  return obj;
3815
4101
  }
3816
- // EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/slicedToArray.js + 5 modules
4102
+ // EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/slicedToArray.js + 3 modules
3817
4103
  var slicedToArray = __webpack_require__("1998");
3818
4104
 
3819
4105
  // CONCATENATED MODULE: ./node_modules/_cache-loader@4.1.0@cache-loader/dist/cjs.js??ref--12-0!./node_modules/_thread-loader@2.1.3@thread-loader/dist/cjs.js!./node_modules/_babel-loader@8.1.0@babel-loader/lib!./examples/components/comPage/formItem/formItem.js?vue&type=script&lang=js&
@@ -4539,6 +4825,74 @@ module.exports = function (it) {
4539
4825
  /* unused harmony reexport * */
4540
4826
  /* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_mini_css_extract_plugin_0_9_0_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_3_6_0_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_15_9_3_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_3_0_0_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_8_0_2_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_4_1_0_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_15_9_3_vue_loader_lib_index_js_vue_loader_options_formItem_vue_vue_type_style_index_0_id_04968db9_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default.a);
4541
4827
 
4828
+ /***/ }),
4829
+
4830
+ /***/ "a83a":
4831
+ /***/ (function(module, exports, __webpack_require__) {
4832
+
4833
+ var hiddenKeys = __webpack_require__("d5a8");
4834
+ var isObject = __webpack_require__("a719");
4835
+ var has = __webpack_require__("faa8");
4836
+ var defineProperty = __webpack_require__("d910").f;
4837
+ var uid = __webpack_require__("7e8b");
4838
+ var FREEZING = __webpack_require__("64bf");
4839
+
4840
+ var METADATA = uid('meta');
4841
+ var id = 0;
4842
+
4843
+ var isExtensible = Object.isExtensible || function () {
4844
+ return true;
4845
+ };
4846
+
4847
+ var setMetadata = function (it) {
4848
+ defineProperty(it, METADATA, { value: {
4849
+ objectID: 'O' + ++id, // object ID
4850
+ weakData: {} // weak collections IDs
4851
+ } });
4852
+ };
4853
+
4854
+ var fastKey = function (it, create) {
4855
+ // return a primitive with prefix
4856
+ if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;
4857
+ if (!has(it, METADATA)) {
4858
+ // can't set metadata to uncaught frozen object
4859
+ if (!isExtensible(it)) return 'F';
4860
+ // not necessary to add metadata
4861
+ if (!create) return 'E';
4862
+ // add missing metadata
4863
+ setMetadata(it);
4864
+ // return object ID
4865
+ } return it[METADATA].objectID;
4866
+ };
4867
+
4868
+ var getWeakData = function (it, create) {
4869
+ if (!has(it, METADATA)) {
4870
+ // can't set metadata to uncaught frozen object
4871
+ if (!isExtensible(it)) return true;
4872
+ // not necessary to add metadata
4873
+ if (!create) return false;
4874
+ // add missing metadata
4875
+ setMetadata(it);
4876
+ // return the store of weak collections IDs
4877
+ } return it[METADATA].weakData;
4878
+ };
4879
+
4880
+ // add metadata on freeze-family methods calling
4881
+ var onFreeze = function (it) {
4882
+ if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);
4883
+ return it;
4884
+ };
4885
+
4886
+ var meta = module.exports = {
4887
+ REQUIRED: false,
4888
+ fastKey: fastKey,
4889
+ getWeakData: getWeakData,
4890
+ onFreeze: onFreeze
4891
+ };
4892
+
4893
+ hiddenKeys[METADATA] = true;
4894
+
4895
+
4542
4896
  /***/ }),
4543
4897
 
4544
4898
  /***/ "aa6b":
@@ -4960,6 +5314,217 @@ module.exports = {
4960
5314
  };
4961
5315
 
4962
5316
 
5317
+ /***/ }),
5318
+
5319
+ /***/ "b85e":
5320
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
5321
+
5322
+ "use strict";
5323
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return _arrayLikeToArray; });
5324
+ function _arrayLikeToArray(arr, len) {
5325
+ if (len == null || len > arr.length) len = arr.length;
5326
+
5327
+ for (var i = 0, arr2 = new Array(len); i < len; i++) {
5328
+ arr2[i] = arr[i];
5329
+ }
5330
+
5331
+ return arr2;
5332
+ }
5333
+
5334
+ /***/ }),
5335
+
5336
+ /***/ "be57":
5337
+ /***/ (function(module, exports, __webpack_require__) {
5338
+
5339
+ "use strict";
5340
+
5341
+ var defineProperty = __webpack_require__("d910").f;
5342
+ var create = __webpack_require__("6d60");
5343
+ var redefineAll = __webpack_require__("99ab");
5344
+ var bind = __webpack_require__("e349");
5345
+ var anInstance = __webpack_require__("c4e4");
5346
+ var iterate = __webpack_require__("262e");
5347
+ var defineIterator = __webpack_require__("99ee");
5348
+ var setSpecies = __webpack_require__("403f");
5349
+ var DESCRIPTORS = __webpack_require__("1e2c");
5350
+ var fastKey = __webpack_require__("a83a").fastKey;
5351
+ var InternalStateModule = __webpack_require__("b702");
5352
+
5353
+ var setInternalState = InternalStateModule.set;
5354
+ var internalStateGetterFor = InternalStateModule.getterFor;
5355
+
5356
+ module.exports = {
5357
+ getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
5358
+ var C = wrapper(function (that, iterable) {
5359
+ anInstance(that, C, CONSTRUCTOR_NAME);
5360
+ setInternalState(that, {
5361
+ type: CONSTRUCTOR_NAME,
5362
+ index: create(null),
5363
+ first: undefined,
5364
+ last: undefined,
5365
+ size: 0
5366
+ });
5367
+ if (!DESCRIPTORS) that.size = 0;
5368
+ if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);
5369
+ });
5370
+
5371
+ var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);
5372
+
5373
+ var define = function (that, key, value) {
5374
+ var state = getInternalState(that);
5375
+ var entry = getEntry(that, key);
5376
+ var previous, index;
5377
+ // change existing entry
5378
+ if (entry) {
5379
+ entry.value = value;
5380
+ // create new entry
5381
+ } else {
5382
+ state.last = entry = {
5383
+ index: index = fastKey(key, true),
5384
+ key: key,
5385
+ value: value,
5386
+ previous: previous = state.last,
5387
+ next: undefined,
5388
+ removed: false
5389
+ };
5390
+ if (!state.first) state.first = entry;
5391
+ if (previous) previous.next = entry;
5392
+ if (DESCRIPTORS) state.size++;
5393
+ else that.size++;
5394
+ // add to index
5395
+ if (index !== 'F') state.index[index] = entry;
5396
+ } return that;
5397
+ };
5398
+
5399
+ var getEntry = function (that, key) {
5400
+ var state = getInternalState(that);
5401
+ // fast case
5402
+ var index = fastKey(key);
5403
+ var entry;
5404
+ if (index !== 'F') return state.index[index];
5405
+ // frozen object case
5406
+ for (entry = state.first; entry; entry = entry.next) {
5407
+ if (entry.key == key) return entry;
5408
+ }
5409
+ };
5410
+
5411
+ redefineAll(C.prototype, {
5412
+ // 23.1.3.1 Map.prototype.clear()
5413
+ // 23.2.3.2 Set.prototype.clear()
5414
+ clear: function clear() {
5415
+ var that = this;
5416
+ var state = getInternalState(that);
5417
+ var data = state.index;
5418
+ var entry = state.first;
5419
+ while (entry) {
5420
+ entry.removed = true;
5421
+ if (entry.previous) entry.previous = entry.previous.next = undefined;
5422
+ delete data[entry.index];
5423
+ entry = entry.next;
5424
+ }
5425
+ state.first = state.last = undefined;
5426
+ if (DESCRIPTORS) state.size = 0;
5427
+ else that.size = 0;
5428
+ },
5429
+ // 23.1.3.3 Map.prototype.delete(key)
5430
+ // 23.2.3.4 Set.prototype.delete(value)
5431
+ 'delete': function (key) {
5432
+ var that = this;
5433
+ var state = getInternalState(that);
5434
+ var entry = getEntry(that, key);
5435
+ if (entry) {
5436
+ var next = entry.next;
5437
+ var prev = entry.previous;
5438
+ delete state.index[entry.index];
5439
+ entry.removed = true;
5440
+ if (prev) prev.next = next;
5441
+ if (next) next.previous = prev;
5442
+ if (state.first == entry) state.first = next;
5443
+ if (state.last == entry) state.last = prev;
5444
+ if (DESCRIPTORS) state.size--;
5445
+ else that.size--;
5446
+ } return !!entry;
5447
+ },
5448
+ // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)
5449
+ // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)
5450
+ forEach: function forEach(callbackfn /* , that = undefined */) {
5451
+ var state = getInternalState(this);
5452
+ var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
5453
+ var entry;
5454
+ while (entry = entry ? entry.next : state.first) {
5455
+ boundFunction(entry.value, entry.key, this);
5456
+ // revert to the last existing entry
5457
+ while (entry && entry.removed) entry = entry.previous;
5458
+ }
5459
+ },
5460
+ // 23.1.3.7 Map.prototype.has(key)
5461
+ // 23.2.3.7 Set.prototype.has(value)
5462
+ has: function has(key) {
5463
+ return !!getEntry(this, key);
5464
+ }
5465
+ });
5466
+
5467
+ redefineAll(C.prototype, IS_MAP ? {
5468
+ // 23.1.3.6 Map.prototype.get(key)
5469
+ get: function get(key) {
5470
+ var entry = getEntry(this, key);
5471
+ return entry && entry.value;
5472
+ },
5473
+ // 23.1.3.9 Map.prototype.set(key, value)
5474
+ set: function set(key, value) {
5475
+ return define(this, key === 0 ? 0 : key, value);
5476
+ }
5477
+ } : {
5478
+ // 23.2.3.1 Set.prototype.add(value)
5479
+ add: function add(value) {
5480
+ return define(this, value = value === 0 ? 0 : value, value);
5481
+ }
5482
+ });
5483
+ if (DESCRIPTORS) defineProperty(C.prototype, 'size', {
5484
+ get: function () {
5485
+ return getInternalState(this).size;
5486
+ }
5487
+ });
5488
+ return C;
5489
+ },
5490
+ setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {
5491
+ var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';
5492
+ var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);
5493
+ var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);
5494
+ // add .keys, .values, .entries, [@@iterator]
5495
+ // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11
5496
+ defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {
5497
+ setInternalState(this, {
5498
+ type: ITERATOR_NAME,
5499
+ target: iterated,
5500
+ state: getInternalCollectionState(iterated),
5501
+ kind: kind,
5502
+ last: undefined
5503
+ });
5504
+ }, function () {
5505
+ var state = getInternalIteratorState(this);
5506
+ var kind = state.kind;
5507
+ var entry = state.last;
5508
+ // revert to the last existing entry
5509
+ while (entry && entry.removed) entry = entry.previous;
5510
+ // get next entry
5511
+ if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {
5512
+ // or finish the iteration
5513
+ state.target = undefined;
5514
+ return { value: undefined, done: true };
5515
+ }
5516
+ // return step by kind
5517
+ if (kind == 'keys') return { value: entry.key, done: false };
5518
+ if (kind == 'values') return { value: entry.value, done: false };
5519
+ return { value: [entry.key, entry.value], done: false };
5520
+ }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);
5521
+
5522
+ // add [@@species], 23.1.2.2, 23.2.2.2
5523
+ setSpecies(CONSTRUCTOR_NAME);
5524
+ }
5525
+ };
5526
+
5527
+
4963
5528
  /***/ }),
4964
5529
 
4965
5530
  /***/ "bfea":
@@ -5035,6 +5600,18 @@ module.exports = {
5035
5600
  };
5036
5601
 
5037
5602
 
5603
+ /***/ }),
5604
+
5605
+ /***/ "c4e4":
5606
+ /***/ (function(module, exports) {
5607
+
5608
+ module.exports = function (it, Constructor, name) {
5609
+ if (!(it instanceof Constructor)) {
5610
+ throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');
5611
+ } return it;
5612
+ };
5613
+
5614
+
5038
5615
  /***/ }),
5039
5616
 
5040
5617
  /***/ "c54b":
@@ -7181,9 +7758,72 @@ twSearch_src_main.install = function (Vue) {
7181
7758
  // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.array.find.js
7182
7759
  var es_array_find = __webpack_require__("4194");
7183
7760
 
7761
+ // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.array.reduce.js
7762
+ var es_array_reduce = __webpack_require__("1784");
7763
+
7764
+ // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.set.js
7765
+ var es_set = __webpack_require__("34d9");
7766
+
7767
+ // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.string.iterator.js
7768
+ var es_string_iterator = __webpack_require__("96db");
7769
+
7184
7770
  // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.string.search.js
7185
7771
  var es_string_search = __webpack_require__("9cf3");
7186
7772
 
7773
+ // EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/arrayLikeToArray.js
7774
+ var arrayLikeToArray = __webpack_require__("b85e");
7775
+
7776
+ // CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/arrayWithoutHoles.js
7777
+
7778
+ function _arrayWithoutHoles(arr) {
7779
+ if (Array.isArray(arr)) return Object(arrayLikeToArray["a" /* default */])(arr);
7780
+ }
7781
+ // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.symbol.js
7782
+ var es_symbol = __webpack_require__("f3dd");
7783
+
7784
+ // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.symbol.description.js
7785
+ var es_symbol_description = __webpack_require__("0a51");
7786
+
7787
+ // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.symbol.iterator.js
7788
+ var es_symbol_iterator = __webpack_require__("9b11");
7789
+
7790
+ // EXTERNAL MODULE: ./node_modules/_core-js@3.6.5@core-js/modules/es.array.from.js
7791
+ var es_array_from = __webpack_require__("98e0");
7792
+
7793
+ // CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/iterableToArray.js
7794
+
7795
+
7796
+
7797
+
7798
+
7799
+
7800
+
7801
+
7802
+ function _iterableToArray(iter) {
7803
+ if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);
7804
+ }
7805
+ // EXTERNAL MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/unsupportedIterableToArray.js
7806
+ var unsupportedIterableToArray = __webpack_require__("3846");
7807
+
7808
+ // CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/nonIterableSpread.js
7809
+ function _nonIterableSpread() {
7810
+ throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
7811
+ }
7812
+ // CONCATENATED MODULE: ./node_modules/_@babel_runtime@7.11.2@@babel/runtime/helpers/esm/toConsumableArray.js
7813
+
7814
+
7815
+
7816
+
7817
+ function _toConsumableArray(arr) {
7818
+ return _arrayWithoutHoles(arr) || _iterableToArray(arr) || Object(unsupportedIterableToArray["a" /* default */])(arr) || _nonIterableSpread();
7819
+ }
7820
+ // EXTERNAL MODULE: ./node_modules/_driver.js@0.9.8@driver.js/dist/driver.min.js
7821
+ var driver_min = __webpack_require__("5d4e");
7822
+ var driver_min_default = /*#__PURE__*/__webpack_require__.n(driver_min);
7823
+
7824
+ // EXTERNAL MODULE: ./node_modules/_driver.js@0.9.8@driver.js/dist/driver.min.css
7825
+ var dist_driver_min = __webpack_require__("3dd7");
7826
+
7187
7827
  // CONCATENATED MODULE: ./packages/twFunc/index.js
7188
7828
 
7189
7829
 
@@ -7199,6 +7839,12 @@ var es_string_search = __webpack_require__("9cf3");
7199
7839
 
7200
7840
 
7201
7841
 
7842
+
7843
+
7844
+
7845
+
7846
+
7847
+
7202
7848
 
7203
7849
 
7204
7850
 
@@ -7394,7 +8040,7 @@ function format_date(time, fmt) {
7394
8040
  } //数字格式处理
7395
8041
 
7396
8042
 
7397
- function change_num(num, changeType) {
8043
+ function change_num(num, changeType, len) {
7398
8044
  // changeType:
7399
8045
  //默认保留2位小数
7400
8046
  //tofixed3--保留三位小数
@@ -7410,54 +8056,76 @@ function change_num(num, changeType) {
7410
8056
  num = parseFloat(num);
7411
8057
 
7412
8058
  switch (changeType) {
7413
- case 'percent':
7414
- afterNum = parseFloat(num.toFixed(2)) + '%';
7415
- break;
7416
-
7417
8059
  case 'tofixed3':
7418
8060
  afterNum = parseFloat(num.toFixed(3));
7419
8061
  break;
7420
8062
 
7421
- case 'comma':
8063
+ case 'tofixed':
8064
+ afterNum = parseFloat(num.toFixed(len ? len : 2));
8065
+ break;
8066
+
7422
8067
  case 'comma3':
8068
+ num = parseFloat(num.toFixed(3)) + '';
8069
+
7423
8070
  if ((num + '').indexOf('.') == -1) {
7424
8071
  afterNum = num ? (num + '').replace(/(?=(?!(\b))(\d{3})+$)/g, ',') : '';
7425
8072
  } else {
7426
- var num1 = num.toFixed(changeType == 'comma' ? 2 : 3) + '',
7427
- data1 = '',
7428
- data2 = '';
7429
- data1 = num1.split('.')[0];
7430
- data2 = parseFloat('.' + num1.split('.')[1]) + '';
7431
-
7432
- if (data2) {
7433
- afterNum = data1.replace(/(?=(?!(\b))(\d{3})+$)/g, ',') + '.' + data2.split('.')[1];
7434
- } else {
7435
- afterNum = data1.replace(/(?=(?!(\b))(\d{3})+$)/g, ',');
7436
- }
8073
+ afterNum = num.split('.')[0].replace(/(?=(?!(\b))(\d{3})+$)/g, ',') + '.' + num.split('.')[1];
8074
+ }
8075
+
8076
+ break;
8077
+
8078
+ case 'percent':
8079
+ afterNum = parseFloat(num.toFixed(len ? len : 2)) + '%';
8080
+ break;
8081
+
8082
+ case 'comma':
8083
+ num = parseFloat(num.toFixed(len ? len : 2)) + '';
8084
+
8085
+ if ((num + '').indexOf('.') == -1) {
8086
+ afterNum = num ? (num + '').replace(/(?=(?!(\b))(\d{3})+$)/g, ',') : '';
8087
+ } else {
8088
+ console.log(num, num.split('.')[1]);
8089
+ afterNum = num.split('.')[0].replace(/(?=(?!(\b))(\d{3})+$)/g, ',') + '.' + num.split('.')[1];
7437
8090
  }
7438
8091
 
7439
8092
  break;
7440
8093
 
7441
8094
  default:
7442
- afterNum = parseFloat(num.toFixed(2));
8095
+ afterNum = parseFloat(num.toFixed(len ? len : 2));
7443
8096
  break;
7444
8097
  }
7445
8098
 
7446
8099
  return afterNum;
8100
+ }
8101
+
8102
+ function del_repeat_obj(arr, keyWord) {
8103
+ //数组对象去重
8104
+ var obj = {};
8105
+ arr = arr.reduce(function (newArr, next) {
8106
+ obj[next[keyWord]] ? "" : obj[next[keyWord]] = true && newArr.push(next);
8107
+ return newArr;
8108
+ }, []);
8109
+ return arr;
8110
+ }
8111
+
8112
+ function del_repeat(arr) {
8113
+ //纯数组去重
8114
+ return _toConsumableArray(new Set(arr));
7447
8115
  } //数组对象根据某个字段排序
7448
8116
 
7449
8117
 
7450
- function compare(property, type) {
8118
+ function compare(property, type, isDate) {
7451
8119
  //type有值为倒序
7452
8120
  return function (a, b) {
7453
- var value1 = a[property];
7454
- var value2 = b[property];
7455
- return type ? value2 - value1 : value1 - value2;
8121
+ var value1 = isDate ? new Date(a[property]).getTime() : a[property];
8122
+ var value2 = isDate ? new Date(b[property]).getTime() : b[property];
8123
+ return !type || type == 'asc' ? value1 - value2 : value2 - value1;
7456
8124
  };
7457
8125
  }
7458
8126
 
7459
- function sort_func(arr, word, type) {
7460
- arr.sort(compare(word, type));
8127
+ function sort_func(arr, word, type, isDate) {
8128
+ arr.sort(compare(word, type, isDate));
7461
8129
  return arr;
7462
8130
  } //返回数组中指定对象
7463
8131
 
@@ -7468,18 +8136,17 @@ function single_obj(ndoe, key, value, child) {
7468
8136
  });
7469
8137
  }
7470
8138
 
7471
- var obj;
7472
-
7473
8139
  function spec_obj(arr, key, value, child) {
7474
8140
  var _this = this;
7475
8141
 
8142
+ //返回数组对象中指定参数的对象
7476
8143
  if (child) {
7477
8144
  arr.map(function (i) {
7478
8145
  if (i[child] && i[child].length > 0) {
7479
8146
  var isFind = _this.single_obj(i, key, value, child);
7480
8147
 
7481
8148
  if (isFind) {
7482
- obj = isFind;
8149
+ return isFind;
7483
8150
  } else {
7484
8151
  _this.spec_obj(i[child], key, value, child);
7485
8152
  }
@@ -7489,20 +8156,42 @@ function spec_obj(arr, key, value, child) {
7489
8156
  var isFind = this.single_obj(arr, key, value, child);
7490
8157
 
7491
8158
  if (isFind) {
7492
- obj = isFind;
8159
+ return isFind;
7493
8160
  }
7494
8161
  }
7495
-
7496
- return obj;
7497
8162
  } //获取路由参数
7498
8163
 
7499
8164
 
7500
- function url_search(name) {
8165
+ function url_search(name, flag) {
7501
8166
  var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
7502
8167
  var r = window.location.search.substr(1).match(reg);
7503
8168
 
7504
8169
  if (r != null) {
7505
- return unescape(r[2]);
8170
+ if (flag) {
8171
+ return decodeURI(r[2]);
8172
+ } else {
8173
+ return unescape(r[2]);
8174
+ }
8175
+ } else {
8176
+ return "";
8177
+ }
8178
+ } //获取路由参数
8179
+
8180
+
8181
+ function get_urlData(name) {
8182
+ var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"),
8183
+ url;
8184
+
8185
+ if (window.location.search) {
8186
+ url = window.location.search;
8187
+ } else {
8188
+ url = window.location.hash;
8189
+ }
8190
+
8191
+ var r = url.split('?')[1].match(reg);
8192
+
8193
+ if (r != null) {
8194
+ return decodeURI(r[2]);
7506
8195
  } else {
7507
8196
  return "";
7508
8197
  }
@@ -7592,6 +8281,44 @@ function toFixed_plus(num) {
7592
8281
  return valStr;
7593
8282
  }
7594
8283
 
8284
+
8285
+
8286
+ var driver = new driver_min_default.a({
8287
+ doneBtnText: '我知道了',
8288
+ closeBtnText: '跳过',
8289
+ nextBtnText: '下一步',
8290
+ prevBtnText: '上一步'
8291
+ });
8292
+
8293
+ function showDriver(list) {
8294
+ //弹出引导
8295
+ var newAryy = [];
8296
+ list.map(function (i) {
8297
+ newAryy.push({
8298
+ element: '#' + i.id,
8299
+ popover: i
8300
+ });
8301
+ });
8302
+ driver.defineSteps(newAryy);
8303
+ driver.start();
8304
+ }
8305
+
8306
+ function get_guidance(list, path) {
8307
+ if (path) {
8308
+ //是否需要跳转页面进行引导
8309
+ if (window.location.pathname == path) {
8310
+ showDriver(list);
8311
+ } else {
8312
+ window.location.href = window.location.href.replace(window.location.pathname, path);
8313
+ setTimeout(function () {
8314
+ showDriver(list);
8315
+ }, 1500);
8316
+ }
8317
+ } else {
8318
+ showDriver(list);
8319
+ }
8320
+ }
8321
+
7595
8322
  /* harmony default export */ var twFunc = ({
7596
8323
  install: function install(Vue) {
7597
8324
  Vue.prototype.formatDate = function (time, fmt) {
@@ -7610,21 +8337,37 @@ function toFixed_plus(num) {
7610
8337
  return change_date(time, type);
7611
8338
  };
7612
8339
 
7613
- Vue.prototype.changeNum = function (num, changeType) {
7614
- return change_num(num, changeType);
8340
+ Vue.prototype.changeNum = function (num, changeType, len) {
8341
+ return change_num(num, changeType, len);
7615
8342
  };
7616
8343
 
7617
8344
  Vue.prototype.sortFunc = function (arr, word, type) {
7618
8345
  return sort_func(arr, word, type);
7619
8346
  };
7620
8347
 
7621
- Vue.prototype.specObj = function (arr, key, value, child) {
8348
+ Vue.prototype.getObjFromList = function (arr, key, value, child) {
7622
8349
  return spec_obj(arr, key, value, child);
7623
8350
  };
7624
8351
 
7625
8352
  Vue.prototype.urlSearch = function (name) {
7626
8353
  return url_search(name);
7627
8354
  };
8355
+
8356
+ Vue.prototype.getUrlData = function (name) {
8357
+ return get_urlData(name);
8358
+ };
8359
+
8360
+ Vue.prototype.delRepeat = function (arr) {
8361
+ return del_repeat(arr);
8362
+ };
8363
+
8364
+ Vue.prototype.delRepeatObj = function (arr, keyWord) {
8365
+ return del_repeat_obj(arr, keyWord);
8366
+ };
8367
+
8368
+ Vue.prototype.guidance = function (list, path) {
8369
+ return get_guidance(list, path);
8370
+ };
7628
8371
  }
7629
8372
  });
7630
8373
  // CONCATENATED MODULE: ./node_modules/_cache-loader@4.1.0@cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"9b9f7194-vue-loader-template"}!./node_modules/_vue-loader@15.9.3@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_cache-loader@4.1.0@cache-loader/dist/cjs.js??ref--0-0!./node_modules/_vue-loader@15.9.3@vue-loader/lib??vue-loader-options!./packages/twPagination/src/main.vue?vue&type=template&id=d7575014&