v-product-details-page 0.1.20 → 0.1.21

Sign up to get free protection for your applications and to get access to all the features.
@@ -189,6 +189,17 @@ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDes
189
189
  };
190
190
 
191
191
 
192
+ /***/ }),
193
+
194
+ /***/ "08f8":
195
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
196
+
197
+ "use strict";
198
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_ProductDescription_vue_vue_type_style_index_0_id_09e7a906_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("81ba");
199
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_ProductDescription_vue_vue_type_style_index_0_id_09e7a906_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_ProductDescription_vue_vue_type_style_index_0_id_09e7a906_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__);
200
+ /* unused harmony reexport * */
201
+
202
+
192
203
  /***/ }),
193
204
 
194
205
  /***/ "0a06":
@@ -372,54 +383,6 @@ module.exports = function (originalArray) {
372
383
  };
373
384
 
374
385
 
375
- /***/ }),
376
-
377
- /***/ "0cb2":
378
- /***/ (function(module, exports, __webpack_require__) {
379
-
380
- var toObject = __webpack_require__("7b0b");
381
-
382
- var floor = Math.floor;
383
- var replace = ''.replace;
384
- var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
385
- var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
386
-
387
- // `GetSubstitution` abstract operation
388
- // https://tc39.es/ecma262/#sec-getsubstitution
389
- module.exports = function (matched, str, position, captures, namedCaptures, replacement) {
390
- var tailPos = position + matched.length;
391
- var m = captures.length;
392
- var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
393
- if (namedCaptures !== undefined) {
394
- namedCaptures = toObject(namedCaptures);
395
- symbols = SUBSTITUTION_SYMBOLS;
396
- }
397
- return replace.call(replacement, symbols, function (match, ch) {
398
- var capture;
399
- switch (ch.charAt(0)) {
400
- case '$': return '$';
401
- case '&': return matched;
402
- case '`': return str.slice(0, position);
403
- case "'": return str.slice(tailPos);
404
- case '<':
405
- capture = namedCaptures[ch.slice(1, -1)];
406
- break;
407
- default: // \d\d?
408
- var n = +ch;
409
- if (n === 0) return match;
410
- if (n > m) {
411
- var f = floor(n / 10);
412
- if (f === 0) return match;
413
- if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
414
- return match;
415
- }
416
- capture = captures[n - 1];
417
- }
418
- return capture === undefined ? '' : capture;
419
- });
420
- };
421
-
422
-
423
386
  /***/ }),
424
387
 
425
388
  /***/ "0cfb":
@@ -473,50 +436,6 @@ module.exports = function spread(callback) {
473
436
  };
474
437
 
475
438
 
476
- /***/ }),
477
-
478
- /***/ "107c":
479
- /***/ (function(module, exports, __webpack_require__) {
480
-
481
- var fails = __webpack_require__("d039");
482
-
483
- module.exports = fails(function () {
484
- // babel-minify transpiles RegExp('.', 'g') -> /./g and it causes SyntaxError
485
- var re = RegExp('(?<a>b)', (typeof '').charAt(5));
486
- return re.exec('b').groups.a !== 'b' ||
487
- 'b'.replace(re, '$<a>c') !== 'bc';
488
- });
489
-
490
-
491
- /***/ }),
492
-
493
- /***/ "14c3":
494
- /***/ (function(module, exports, __webpack_require__) {
495
-
496
- var classof = __webpack_require__("c6b6");
497
- var regexpExec = __webpack_require__("9263");
498
-
499
- // `RegExpExec` abstract operation
500
- // https://tc39.es/ecma262/#sec-regexpexec
501
- module.exports = function (R, S) {
502
- var exec = R.exec;
503
- if (typeof exec === 'function') {
504
- var result = exec.call(R, S);
505
- if (typeof result !== 'object') {
506
- throw TypeError('RegExp exec method returned something other than an Object or null');
507
- }
508
- return result;
509
- }
510
-
511
- if (classof(R) !== 'RegExp') {
512
- throw TypeError('RegExp#exec called on incompatible receiver');
513
- }
514
-
515
- return regexpExec.call(R, S);
516
- };
517
-
518
-
519
-
520
439
  /***/ }),
521
440
 
522
441
  /***/ "19aa":
@@ -1453,22 +1372,6 @@ module.exports = function enhanceError(error, config, code, request, response) {
1453
1372
  };
1454
1373
 
1455
1374
 
1456
- /***/ }),
1457
-
1458
- /***/ "390f":
1459
- /***/ (function(module, exports, __webpack_require__) {
1460
-
1461
- // style-loader: Adds some css to the DOM by adding a <style> tag
1462
-
1463
- // load the styles
1464
- var content = __webpack_require__("538d");
1465
- if(content.__esModule) content = content.default;
1466
- if(typeof content === 'string') content = [[module.i, content, '']];
1467
- if(content.locals) module.exports = content.locals;
1468
- // add the styles to the DOM
1469
- var add = __webpack_require__("499e").default
1470
- var update = add("366dab99", content, true, {"sourceMap":false,"shadowMode":false});
1471
-
1472
1375
  /***/ }),
1473
1376
 
1474
1377
  /***/ "3934":
@@ -1575,14 +1478,14 @@ var es_symbol_description = __webpack_require__("e01a");
1575
1478
  // EXTERNAL MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
1576
1479
  var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__("8bbf");
1577
1480
 
1578
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/ProductDescription.vue?vue&type=template&id=7203b086&scoped=true
1481
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/ProductDescription.vue?vue&type=template&id=09e7a906&scoped=true
1579
1482
 
1580
1483
 
1581
1484
 
1582
1485
 
1583
- var _withId = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withScopeId"])("data-v-7203b086");
1486
+ var _withId = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withScopeId"])("data-v-09e7a906");
1584
1487
 
1585
- Object(external_commonjs_vue_commonjs2_vue_root_Vue_["pushScopeId"])("data-v-7203b086");
1488
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["pushScopeId"])("data-v-09e7a906");
1586
1489
 
1587
1490
  var _hoisted_1 = {
1588
1491
  class: "pd-container"
@@ -1646,14 +1549,14 @@ var _hoisted_18 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_V
1646
1549
  id: "shipping-details"
1647
1550
  }, [/*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("li", null, "Select items are excluded from international shipping Exclusions & Details"), /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("li", null, "Free shipping applies to domestic leg only, additional shipping fees and duties may apply at checkout."), /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("li", null, "Returns are accepted at any Macy's store within 90 days from purchase date. Last Act clearance items must be returned within 30 days from purchase date."), /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("li", null, "For complete details, read our Shipping and Return policies.")], -1);
1648
1551
 
1649
- var _hoisted_19 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createStaticVNode"])("<p class=\"partition\" data-v-7203b086></p><div class=\"pd-icons\" data-v-7203b086><a class=\"icon-link\" id=\"mail-icon\" href=\"mailto:example@gmail.com\" data-v-7203b086><i class=\"pd-icon fas fa-envelope\" data-v-7203b086></i></a><a class=\"icon-link\" id=\"pinterest-icon\" href=\"https://in.pinterest.com/\" target=\"blank\" data-v-7203b086><i class=\"pd-icon fab fa-pinterest-p\" data-v-7203b086></i></a></div>", 2);
1552
+ var _hoisted_19 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createStaticVNode"])("<p class=\"partition\" data-v-09e7a906></p><div class=\"pd-icons\" data-v-09e7a906><a class=\"icon-link\" id=\"mail-icon\" href=\"mailto:example@gmail.com\" data-v-09e7a906><i class=\"pd-icon fas fa-envelope\" data-v-09e7a906></i></a><a class=\"icon-link\" id=\"pinterest-icon\" href=\"https://in.pinterest.com/\" target=\"blank\" data-v-09e7a906><i class=\"pd-icon fab fa-pinterest-p\" data-v-09e7a906></i></a></div>", 2);
1650
1553
 
1651
1554
  Object(external_commonjs_vue_commonjs2_vue_root_Vue_["popScopeId"])();
1652
1555
 
1653
1556
  var render = /*#__PURE__*/_withId(function (_ctx, _cache, $props, $setup, $data, $options) {
1654
1557
  return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("div", _hoisted_1, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", _hoisted_2, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("p", null, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("span", {
1655
1558
  onClick: _cache[1] || (_cache[1] = function ($event) {
1656
- return _ctx.$emit('gotoCategory', $options.formattedCategoryName($data.selectedProduct.category));
1559
+ return _ctx.$emit('gotoCategory', $data.selectedProduct.category);
1657
1560
  }),
1658
1561
  class: "pd-category"
1659
1562
  }, Object(external_commonjs_vue_commonjs2_vue_root_Vue_["toDisplayString"])($data.selectedProduct.category), 1)]), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", null, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("img", {
@@ -1691,13 +1594,7 @@ var render = /*#__PURE__*/_withId(function (_ctx, _cache, $props, $setup, $data,
1691
1594
  })
1692
1595
  }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("h4", null, [_hoisted_16, Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("span", _hoisted_17, Object(external_commonjs_vue_commonjs2_vue_root_Vue_["toDisplayString"])($data.shippingToggle ? "-" : " +"), 1)]), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withDirectives"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", null, [_hoisted_18], 512), [[external_commonjs_vue_commonjs2_vue_root_Vue_["vShow"], $data.shippingToggle]])]), _hoisted_19])]);
1693
1596
  });
1694
- // CONCATENATED MODULE: ./src/ProductDescription.vue?vue&type=template&id=7203b086&scoped=true
1695
-
1696
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.exec.js
1697
- var es_regexp_exec = __webpack_require__("ac1f");
1698
-
1699
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.replace.js
1700
- var es_string_replace = __webpack_require__("5319");
1597
+ // CONCATENATED MODULE: ./src/ProductDescription.vue?vue&type=template&id=09e7a906&scoped=true
1701
1598
 
1702
1599
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
1703
1600
  var es_object_to_string = __webpack_require__("d3b7");
@@ -1717,8 +1614,6 @@ var axios_default = /*#__PURE__*/__webpack_require__.n(axios);
1717
1614
 
1718
1615
 
1719
1616
 
1720
-
1721
-
1722
1617
  /* harmony default export */ var ProductDescriptionvue_type_script_lang_js = ({
1723
1618
  name: 'ProductDescription',
1724
1619
  data: function data() {
@@ -1758,9 +1653,6 @@ var axios_default = /*#__PURE__*/__webpack_require__.n(axios);
1758
1653
  },
1759
1654
  toggleShipping: function toggleShipping() {
1760
1655
  this.shippingToggle = !this.shippingToggle;
1761
- },
1762
- formattedCategoryName: function formattedCategoryName(category) {
1763
- return category.toLowerCase().replace(/\W+/g, '');
1764
1656
  }
1765
1657
  },
1766
1658
  created: function created() {
@@ -1778,8 +1670,8 @@ var axios_default = /*#__PURE__*/__webpack_require__.n(axios);
1778
1670
  });
1779
1671
  // CONCATENATED MODULE: ./src/ProductDescription.vue?vue&type=script&lang=js
1780
1672
 
1781
- // EXTERNAL MODULE: ./src/ProductDescription.vue?vue&type=style&index=0&id=7203b086&scoped=true&lang=css
1782
- var ProductDescriptionvue_type_style_index_0_id_7203b086_scoped_true_lang_css = __webpack_require__("616a");
1673
+ // EXTERNAL MODULE: ./src/ProductDescription.vue?vue&type=style&index=0&id=09e7a906&scoped=true&lang=css
1674
+ var ProductDescriptionvue_type_style_index_0_id_09e7a906_scoped_true_lang_css = __webpack_require__("08f8");
1783
1675
 
1784
1676
  // CONCATENATED MODULE: ./src/ProductDescription.vue
1785
1677
 
@@ -1788,7 +1680,7 @@ var ProductDescriptionvue_type_style_index_0_id_7203b086_scoped_true_lang_css =
1788
1680
 
1789
1681
 
1790
1682
  ProductDescriptionvue_type_script_lang_js.render = render
1791
- ProductDescriptionvue_type_script_lang_js.__scopeId = "data-v-7203b086"
1683
+ ProductDescriptionvue_type_script_lang_js.__scopeId = "data-v-09e7a906"
1792
1684
 
1793
1685
  /* harmony default export */ var ProductDescription = __webpack_exports__["a"] = (ProductDescriptionvue_type_script_lang_js);
1794
1686
 
@@ -2504,154 +2396,6 @@ module.exports = function dispatchRequest(config) {
2504
2396
  };
2505
2397
 
2506
2398
 
2507
- /***/ }),
2508
-
2509
- /***/ "5319":
2510
- /***/ (function(module, exports, __webpack_require__) {
2511
-
2512
- "use strict";
2513
-
2514
- var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784");
2515
- var fails = __webpack_require__("d039");
2516
- var anObject = __webpack_require__("825a");
2517
- var toInteger = __webpack_require__("a691");
2518
- var toLength = __webpack_require__("50c4");
2519
- var toString = __webpack_require__("577e");
2520
- var requireObjectCoercible = __webpack_require__("1d80");
2521
- var advanceStringIndex = __webpack_require__("8aa5");
2522
- var getSubstitution = __webpack_require__("0cb2");
2523
- var regExpExec = __webpack_require__("14c3");
2524
- var wellKnownSymbol = __webpack_require__("b622");
2525
-
2526
- var REPLACE = wellKnownSymbol('replace');
2527
- var max = Math.max;
2528
- var min = Math.min;
2529
-
2530
- var maybeToString = function (it) {
2531
- return it === undefined ? it : String(it);
2532
- };
2533
-
2534
- // IE <= 11 replaces $0 with the whole match, as if it was $&
2535
- // https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
2536
- var REPLACE_KEEPS_$0 = (function () {
2537
- // eslint-disable-next-line regexp/prefer-escape-replacement-dollar-char -- required for testing
2538
- return 'a'.replace(/./, '$0') === '$0';
2539
- })();
2540
-
2541
- // Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string
2542
- var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
2543
- if (/./[REPLACE]) {
2544
- return /./[REPLACE]('a', '$0') === '';
2545
- }
2546
- return false;
2547
- })();
2548
-
2549
- var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
2550
- var re = /./;
2551
- re.exec = function () {
2552
- var result = [];
2553
- result.groups = { a: '7' };
2554
- return result;
2555
- };
2556
- return ''.replace(re, '$<a>') !== '7';
2557
- });
2558
-
2559
- // @@replace logic
2560
- fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) {
2561
- var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';
2562
-
2563
- return [
2564
- // `String.prototype.replace` method
2565
- // https://tc39.es/ecma262/#sec-string.prototype.replace
2566
- function replace(searchValue, replaceValue) {
2567
- var O = requireObjectCoercible(this);
2568
- var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
2569
- return replacer !== undefined
2570
- ? replacer.call(searchValue, O, replaceValue)
2571
- : nativeReplace.call(toString(O), searchValue, replaceValue);
2572
- },
2573
- // `RegExp.prototype[@@replace]` method
2574
- // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
2575
- function (string, replaceValue) {
2576
- var rx = anObject(this);
2577
- var S = toString(string);
2578
-
2579
- if (
2580
- typeof replaceValue === 'string' &&
2581
- replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1 &&
2582
- replaceValue.indexOf('$<') === -1
2583
- ) {
2584
- var res = maybeCallNative(nativeReplace, rx, S, replaceValue);
2585
- if (res.done) return res.value;
2586
- }
2587
-
2588
- var functionalReplace = typeof replaceValue === 'function';
2589
- if (!functionalReplace) replaceValue = toString(replaceValue);
2590
-
2591
- var global = rx.global;
2592
- if (global) {
2593
- var fullUnicode = rx.unicode;
2594
- rx.lastIndex = 0;
2595
- }
2596
- var results = [];
2597
- while (true) {
2598
- var result = regExpExec(rx, S);
2599
- if (result === null) break;
2600
-
2601
- results.push(result);
2602
- if (!global) break;
2603
-
2604
- var matchStr = toString(result[0]);
2605
- if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
2606
- }
2607
-
2608
- var accumulatedResult = '';
2609
- var nextSourcePosition = 0;
2610
- for (var i = 0; i < results.length; i++) {
2611
- result = results[i];
2612
-
2613
- var matched = toString(result[0]);
2614
- var position = max(min(toInteger(result.index), S.length), 0);
2615
- var captures = [];
2616
- // NOTE: This is equivalent to
2617
- // captures = result.slice(1).map(maybeToString)
2618
- // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
2619
- // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
2620
- // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
2621
- for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
2622
- var namedCaptures = result.groups;
2623
- if (functionalReplace) {
2624
- var replacerArgs = [matched].concat(captures, position, S);
2625
- if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
2626
- var replacement = toString(replaceValue.apply(undefined, replacerArgs));
2627
- } else {
2628
- replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
2629
- }
2630
- if (position >= nextSourcePosition) {
2631
- accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
2632
- nextSourcePosition = position + matched.length;
2633
- }
2634
- }
2635
- return accumulatedResult + S.slice(nextSourcePosition);
2636
- }
2637
- ];
2638
- }, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);
2639
-
2640
-
2641
- /***/ }),
2642
-
2643
- /***/ "538d":
2644
- /***/ (function(module, exports, __webpack_require__) {
2645
-
2646
- // Imports
2647
- var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
2648
- exports = ___CSS_LOADER_API_IMPORT___(false);
2649
- // Module
2650
- exports.push([module.i, "#product-description[data-v-7203b086]{font-family:sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;color:#2c3e50;margin-top:60px}.pd-container[data-v-7203b086]{margin-top:30px;margin-left:100px;padding:20px;height:1500px;width:1400px;display:flex;flex-wrap:nowrap;justify-content:space-between}.left-block[data-v-7203b086]{height:700px;width:500px}.right-block[data-v-7203b086]{height:900px;width:800px}.pd-category[data-v-7203b086]{margin-top:5px;font-family:Arial;font-size:16px;border-bottom:1px solid #000;cursor:pointer}.pd-image[data-v-7203b086]{height:600px;width:400px;margin-top:30px}.pd-title[data-v-7203b086]{margin-top:60px;font-family:sans-serif}.pd-description[data-v-7203b086]{font:18px sans-serif}.pd-price[data-v-7203b086]{font:22px sans-serif;color:#4b4949}.partition[data-v-7203b086]{border-bottom:.5px solid #cfcdcd}.pd-qty[data-v-7203b086]{font-size:18px;margin-bottom:15px}.item-qty[data-v-7203b086]{margin-right:20px;display:inline}.pd-button[data-v-7203b086]{border:1px solid #d6d6d6;outline:0;padding:5px;color:#4b4949;background-color:#fff;text-align:center;cursor:pointer;width:8%;height:10%;font-size:18px}.pd-button[data-v-7203b086]:disabled{cursor:not-allowed}.pd-addToBag[data-v-7203b086]{margin:5px;border:none;outline:0;padding:12px;color:#fff;background-color:#000;text-align:center;cursor:pointer;width:40%;font-size:18px}.pd-addToBag[data-v-7203b086]:hover{background-color:#868383}.pd-details[data-v-7203b086],.pd-shipping[data-v-7203b086]{font-family:sans-serif;cursor:pointer}.pd-icons[data-v-7203b086]{margin:20px;display:flex}.pd-icon[data-v-7203b086]{padding:5px}.icon-link[data-v-7203b086]{color:#000}.toggle-btn[data-v-7203b086]{float:right}", ""]);
2651
- // Exports
2652
- module.exports = exports;
2653
-
2654
-
2655
2399
  /***/ }),
2656
2400
 
2657
2401
  /***/ "5692":
@@ -2753,52 +2497,6 @@ module.exports = classof(global.process) == 'process';
2753
2497
  module.exports = typeof window == 'object';
2754
2498
 
2755
2499
 
2756
- /***/ }),
2757
-
2758
- /***/ "616a":
2759
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
2760
-
2761
- "use strict";
2762
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_ProductDescription_vue_vue_type_style_index_0_id_7203b086_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("390f");
2763
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_ProductDescription_vue_vue_type_style_index_0_id_7203b086_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_ProductDescription_vue_vue_type_style_index_0_id_7203b086_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__);
2764
- /* unused harmony reexport * */
2765
-
2766
-
2767
- /***/ }),
2768
-
2769
- /***/ "6547":
2770
- /***/ (function(module, exports, __webpack_require__) {
2771
-
2772
- var toInteger = __webpack_require__("a691");
2773
- var toString = __webpack_require__("577e");
2774
- var requireObjectCoercible = __webpack_require__("1d80");
2775
-
2776
- // `String.prototype.codePointAt` methods implementation
2777
- var createMethod = function (CONVERT_TO_STRING) {
2778
- return function ($this, pos) {
2779
- var S = toString(requireObjectCoercible($this));
2780
- var position = toInteger(pos);
2781
- var size = S.length;
2782
- var first, second;
2783
- if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
2784
- first = S.charCodeAt(position);
2785
- return first < 0xD800 || first > 0xDBFF || position + 1 === size
2786
- || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
2787
- ? CONVERT_TO_STRING ? S.charAt(position) : first
2788
- : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
2789
- };
2790
- };
2791
-
2792
- module.exports = {
2793
- // `String.prototype.codePointAt` method
2794
- // https://tc39.es/ecma262/#sec-string.prototype.codepointat
2795
- codeAt: createMethod(false),
2796
- // `String.prototype.at` method
2797
- // https://github.com/mathiasbynens/String.prototype.at
2798
- charAt: createMethod(true)
2799
- };
2800
-
2801
-
2802
2500
  /***/ }),
2803
2501
 
2804
2502
  /***/ "65f0":
@@ -3183,6 +2881,22 @@ var WeakMap = global.WeakMap;
3183
2881
  module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
3184
2882
 
3185
2883
 
2884
+ /***/ }),
2885
+
2886
+ /***/ "81ba":
2887
+ /***/ (function(module, exports, __webpack_require__) {
2888
+
2889
+ // style-loader: Adds some css to the DOM by adding a <style> tag
2890
+
2891
+ // load the styles
2892
+ var content = __webpack_require__("c604");
2893
+ if(content.__esModule) content = content.default;
2894
+ if(typeof content === 'string') content = [[module.i, content, '']];
2895
+ if(content.locals) module.exports = content.locals;
2896
+ // add the styles to the DOM
2897
+ var add = __webpack_require__("499e").default
2898
+ var update = add("7f24f268", content, true, {"sourceMap":false,"shadowMode":false});
2899
+
3186
2900
  /***/ }),
3187
2901
 
3188
2902
  /***/ "825a":
@@ -3466,22 +3180,6 @@ if (typeof store.inspectSource != 'function') {
3466
3180
  module.exports = store.inspectSource;
3467
3181
 
3468
3182
 
3469
- /***/ }),
3470
-
3471
- /***/ "8aa5":
3472
- /***/ (function(module, exports, __webpack_require__) {
3473
-
3474
- "use strict";
3475
-
3476
- var charAt = __webpack_require__("6547").charAt;
3477
-
3478
- // `AdvanceStringIndex` abstract operation
3479
- // https://tc39.es/ecma262/#sec-advancestringindex
3480
- module.exports = function (S, index, unicode) {
3481
- return index + (unicode ? charAt(S, index).length : 1);
3482
- };
3483
-
3484
-
3485
3183
  /***/ }),
3486
3184
 
3487
3185
  /***/ "8bbf":
@@ -3584,127 +3282,6 @@ module.exports = DESCRIPTORS ? function (object, key, value) {
3584
3282
  };
3585
3283
 
3586
3284
 
3587
- /***/ }),
3588
-
3589
- /***/ "9263":
3590
- /***/ (function(module, exports, __webpack_require__) {
3591
-
3592
- "use strict";
3593
-
3594
- /* eslint-disable regexp/no-assertion-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
3595
- /* eslint-disable regexp/no-useless-quantifier -- testing */
3596
- var toString = __webpack_require__("577e");
3597
- var regexpFlags = __webpack_require__("ad6d");
3598
- var stickyHelpers = __webpack_require__("9f7f");
3599
- var shared = __webpack_require__("5692");
3600
- var create = __webpack_require__("7c73");
3601
- var getInternalState = __webpack_require__("69f3").get;
3602
- var UNSUPPORTED_DOT_ALL = __webpack_require__("fce3");
3603
- var UNSUPPORTED_NCG = __webpack_require__("107c");
3604
-
3605
- var nativeExec = RegExp.prototype.exec;
3606
- var nativeReplace = shared('native-string-replace', String.prototype.replace);
3607
-
3608
- var patchedExec = nativeExec;
3609
-
3610
- var UPDATES_LAST_INDEX_WRONG = (function () {
3611
- var re1 = /a/;
3612
- var re2 = /b*/g;
3613
- nativeExec.call(re1, 'a');
3614
- nativeExec.call(re2, 'a');
3615
- return re1.lastIndex !== 0 || re2.lastIndex !== 0;
3616
- })();
3617
-
3618
- var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET;
3619
-
3620
- // nonparticipating capturing group, copied from es5-shim's String#split patch.
3621
- var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
3622
-
3623
- var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG;
3624
-
3625
- if (PATCH) {
3626
- // eslint-disable-next-line max-statements -- TODO
3627
- patchedExec = function exec(string) {
3628
- var re = this;
3629
- var state = getInternalState(re);
3630
- var str = toString(string);
3631
- var raw = state.raw;
3632
- var result, reCopy, lastIndex, match, i, object, group;
3633
-
3634
- if (raw) {
3635
- raw.lastIndex = re.lastIndex;
3636
- result = patchedExec.call(raw, str);
3637
- re.lastIndex = raw.lastIndex;
3638
- return result;
3639
- }
3640
-
3641
- var groups = state.groups;
3642
- var sticky = UNSUPPORTED_Y && re.sticky;
3643
- var flags = regexpFlags.call(re);
3644
- var source = re.source;
3645
- var charsAdded = 0;
3646
- var strCopy = str;
3647
-
3648
- if (sticky) {
3649
- flags = flags.replace('y', '');
3650
- if (flags.indexOf('g') === -1) {
3651
- flags += 'g';
3652
- }
3653
-
3654
- strCopy = str.slice(re.lastIndex);
3655
- // Support anchored sticky behavior.
3656
- if (re.lastIndex > 0 && (!re.multiline || re.multiline && str.charAt(re.lastIndex - 1) !== '\n')) {
3657
- source = '(?: ' + source + ')';
3658
- strCopy = ' ' + strCopy;
3659
- charsAdded++;
3660
- }
3661
- // ^(? + rx + ) is needed, in combination with some str slicing, to
3662
- // simulate the 'y' flag.
3663
- reCopy = new RegExp('^(?:' + source + ')', flags);
3664
- }
3665
-
3666
- if (NPCG_INCLUDED) {
3667
- reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
3668
- }
3669
- if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
3670
-
3671
- match = nativeExec.call(sticky ? reCopy : re, strCopy);
3672
-
3673
- if (sticky) {
3674
- if (match) {
3675
- match.input = match.input.slice(charsAdded);
3676
- match[0] = match[0].slice(charsAdded);
3677
- match.index = re.lastIndex;
3678
- re.lastIndex += match[0].length;
3679
- } else re.lastIndex = 0;
3680
- } else if (UPDATES_LAST_INDEX_WRONG && match) {
3681
- re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
3682
- }
3683
- if (NPCG_INCLUDED && match && match.length > 1) {
3684
- // Fix browsers whose `exec` methods don't consistently return `undefined`
3685
- // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
3686
- nativeReplace.call(match[0], reCopy, function () {
3687
- for (i = 1; i < arguments.length - 2; i++) {
3688
- if (arguments[i] === undefined) match[i] = undefined;
3689
- }
3690
- });
3691
- }
3692
-
3693
- if (match && groups) {
3694
- match.groups = object = create(null);
3695
- for (i = 0; i < groups.length; i++) {
3696
- group = groups[i];
3697
- object[group[0]] = match[group[1]];
3698
- }
3699
- }
3700
-
3701
- return match;
3702
- };
3703
- }
3704
-
3705
- module.exports = patchedExec;
3706
-
3707
-
3708
3285
  /***/ }),
3709
3286
 
3710
3287
  /***/ "94ca":
@@ -3761,32 +3338,6 @@ exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attrib
3761
3338
  };
3762
3339
 
3763
3340
 
3764
- /***/ }),
3765
-
3766
- /***/ "9f7f":
3767
- /***/ (function(module, exports, __webpack_require__) {
3768
-
3769
- var fails = __webpack_require__("d039");
3770
-
3771
- // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,
3772
- var RE = function (s, f) {
3773
- return RegExp(s, f);
3774
- };
3775
-
3776
- exports.UNSUPPORTED_Y = fails(function () {
3777
- var re = RE('a', 'y');
3778
- re.lastIndex = 2;
3779
- return re.exec('abcd') != null;
3780
- });
3781
-
3782
- exports.BROKEN_CARET = fails(function () {
3783
- // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
3784
- var re = RE('^r', 'gy');
3785
- re.lastIndex = 2;
3786
- return re.exec('str') != null;
3787
- });
3788
-
3789
-
3790
3341
  /***/ }),
3791
3342
 
3792
3343
  /***/ "a04b":
@@ -4189,47 +3740,6 @@ if (!IS_PURE && typeof NativePromise == 'function') {
4189
3740
  }
4190
3741
 
4191
3742
 
4192
- /***/ }),
4193
-
4194
- /***/ "ac1f":
4195
- /***/ (function(module, exports, __webpack_require__) {
4196
-
4197
- "use strict";
4198
-
4199
- var $ = __webpack_require__("23e7");
4200
- var exec = __webpack_require__("9263");
4201
-
4202
- // `RegExp.prototype.exec` method
4203
- // https://tc39.es/ecma262/#sec-regexp.prototype.exec
4204
- $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
4205
- exec: exec
4206
- });
4207
-
4208
-
4209
- /***/ }),
4210
-
4211
- /***/ "ad6d":
4212
- /***/ (function(module, exports, __webpack_require__) {
4213
-
4214
- "use strict";
4215
-
4216
- var anObject = __webpack_require__("825a");
4217
-
4218
- // `RegExp.prototype.flags` getter implementation
4219
- // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
4220
- module.exports = function () {
4221
- var that = anObject(this);
4222
- var result = '';
4223
- if (that.global) result += 'g';
4224
- if (that.ignoreCase) result += 'i';
4225
- if (that.multiline) result += 'm';
4226
- if (that.dotAll) result += 's';
4227
- if (that.unicode) result += 'u';
4228
- if (that.sticky) result += 'y';
4229
- return result;
4230
- };
4231
-
4232
-
4233
3743
  /***/ }),
4234
3744
 
4235
3745
  /***/ "b041":
@@ -5165,6 +4675,20 @@ module.exports = {
5165
4675
  };
5166
4676
 
5167
4677
 
4678
+ /***/ }),
4679
+
4680
+ /***/ "c604":
4681
+ /***/ (function(module, exports, __webpack_require__) {
4682
+
4683
+ // Imports
4684
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
4685
+ exports = ___CSS_LOADER_API_IMPORT___(false);
4686
+ // Module
4687
+ exports.push([module.i, "#product-description[data-v-09e7a906]{font-family:sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;color:#2c3e50;margin-top:60px}.pd-container[data-v-09e7a906]{margin-top:30px;margin-left:100px;padding:20px;height:1500px;width:1400px;display:flex;flex-wrap:nowrap;justify-content:space-between}.left-block[data-v-09e7a906]{height:700px;width:500px}.right-block[data-v-09e7a906]{height:900px;width:800px}.pd-category[data-v-09e7a906]{margin-top:5px;font-family:Arial;font-size:16px;border-bottom:1px solid #000;cursor:pointer}.pd-image[data-v-09e7a906]{height:600px;width:400px;margin-top:30px}.pd-title[data-v-09e7a906]{margin-top:60px;font-family:sans-serif}.pd-description[data-v-09e7a906]{font:18px sans-serif}.pd-price[data-v-09e7a906]{font:22px sans-serif;color:#4b4949}.partition[data-v-09e7a906]{border-bottom:.5px solid #cfcdcd}.pd-qty[data-v-09e7a906]{font-size:18px;margin-bottom:15px}.item-qty[data-v-09e7a906]{margin-right:20px;display:inline}.pd-button[data-v-09e7a906]{border:1px solid #d6d6d6;outline:0;padding:5px;color:#4b4949;background-color:#fff;text-align:center;cursor:pointer;width:8%;height:10%;font-size:18px}.pd-button[data-v-09e7a906]:disabled{cursor:not-allowed}.pd-addToBag[data-v-09e7a906]{margin:5px;border:none;outline:0;padding:12px;color:#fff;background-color:#000;text-align:center;cursor:pointer;width:40%;font-size:18px}.pd-addToBag[data-v-09e7a906]:hover{background-color:#868383}.pd-details[data-v-09e7a906],.pd-shipping[data-v-09e7a906]{font-family:sans-serif;cursor:pointer}.pd-icons[data-v-09e7a906]{margin:20px;display:flex}.pd-icon[data-v-09e7a906]{padding:5px}.icon-link[data-v-09e7a906]{color:#000}.toggle-btn[data-v-09e7a906]{float:right}", ""]);
4688
+ // Exports
4689
+ module.exports = exports;
4690
+
4691
+
5168
4692
  /***/ }),
5169
4693
 
5170
4694
  /***/ "c6b6":
@@ -5506,86 +5030,6 @@ module.exports = function (it, TAG, STATIC) {
5506
5030
  };
5507
5031
 
5508
5032
 
5509
- /***/ }),
5510
-
5511
- /***/ "d784":
5512
- /***/ (function(module, exports, __webpack_require__) {
5513
-
5514
- "use strict";
5515
-
5516
- // TODO: Remove from `core-js@4` since it's moved to entry points
5517
- __webpack_require__("ac1f");
5518
- var redefine = __webpack_require__("6eeb");
5519
- var regexpExec = __webpack_require__("9263");
5520
- var fails = __webpack_require__("d039");
5521
- var wellKnownSymbol = __webpack_require__("b622");
5522
- var createNonEnumerableProperty = __webpack_require__("9112");
5523
-
5524
- var SPECIES = wellKnownSymbol('species');
5525
- var RegExpPrototype = RegExp.prototype;
5526
-
5527
- module.exports = function (KEY, exec, FORCED, SHAM) {
5528
- var SYMBOL = wellKnownSymbol(KEY);
5529
-
5530
- var DELEGATES_TO_SYMBOL = !fails(function () {
5531
- // String methods call symbol-named RegEp methods
5532
- var O = {};
5533
- O[SYMBOL] = function () { return 7; };
5534
- return ''[KEY](O) != 7;
5535
- });
5536
-
5537
- var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
5538
- // Symbol-named RegExp methods call .exec
5539
- var execCalled = false;
5540
- var re = /a/;
5541
-
5542
- if (KEY === 'split') {
5543
- // We can't use real regex here since it causes deoptimization
5544
- // and serious performance degradation in V8
5545
- // https://github.com/zloirock/core-js/issues/306
5546
- re = {};
5547
- // RegExp[@@split] doesn't call the regex's exec method, but first creates
5548
- // a new one. We need to return the patched regex when creating the new one.
5549
- re.constructor = {};
5550
- re.constructor[SPECIES] = function () { return re; };
5551
- re.flags = '';
5552
- re[SYMBOL] = /./[SYMBOL];
5553
- }
5554
-
5555
- re.exec = function () { execCalled = true; return null; };
5556
-
5557
- re[SYMBOL]('');
5558
- return !execCalled;
5559
- });
5560
-
5561
- if (
5562
- !DELEGATES_TO_SYMBOL ||
5563
- !DELEGATES_TO_EXEC ||
5564
- FORCED
5565
- ) {
5566
- var nativeRegExpMethod = /./[SYMBOL];
5567
- var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
5568
- var $exec = regexp.exec;
5569
- if ($exec === regexpExec || $exec === RegExpPrototype.exec) {
5570
- if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
5571
- // The native String method already delegates to @@method (this
5572
- // polyfilled function), leasing to infinite recursion.
5573
- // We avoid it by directly calling the native @@method method.
5574
- return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
5575
- }
5576
- return { done: true, value: nativeMethod.call(str, regexp, arg2) };
5577
- }
5578
- return { done: false };
5579
- });
5580
-
5581
- redefine(String.prototype, KEY, methods[0]);
5582
- redefine(RegExpPrototype, SYMBOL, methods[1]);
5583
- }
5584
-
5585
- if (SHAM) createNonEnumerableProperty(RegExpPrototype[SYMBOL], 'sham', true);
5586
- };
5587
-
5588
-
5589
5033
  /***/ }),
5590
5034
 
5591
5035
  /***/ "d925":
@@ -6737,20 +6181,6 @@ module.exports = function (it) {
6737
6181
  };
6738
6182
 
6739
6183
 
6740
- /***/ }),
6741
-
6742
- /***/ "fce3":
6743
- /***/ (function(module, exports, __webpack_require__) {
6744
-
6745
- var fails = __webpack_require__("d039");
6746
-
6747
- module.exports = fails(function () {
6748
- // babel-minify transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
6749
- var re = RegExp('.', (typeof '').charAt(0));
6750
- return !(re.dotAll && re.exec('\n') && re.flags === 's');
6751
- });
6752
-
6753
-
6754
6184
  /***/ }),
6755
6185
 
6756
6186
  /***/ "fdbf":