@readme/markdown 10.1.1 → 10.2.1

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/dist/main.js CHANGED
@@ -7,7 +7,7 @@
7
7
  var a = typeof exports === 'object' ? factory(require("@readme/syntax-highlighter"), require("@readme/variable"), require("@tippyjs/react"), require("acorn"), require("mermaid"), require("react")) : factory(root["@readme/syntax-highlighter"], root["@readme/variable"], root["@tippyjs/react"], root["acorn"], root["mermaid"], root["React"]);
8
8
  for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
9
9
  }
10
- })(self, (__WEBPACK_EXTERNAL_MODULE__3966__, __WEBPACK_EXTERNAL_MODULE__8167__, __WEBPACK_EXTERNAL_MODULE__6570__, __WEBPACK_EXTERNAL_MODULE__6473__, __WEBPACK_EXTERNAL_MODULE__1387__, __WEBPACK_EXTERNAL_MODULE__1307__) => {
10
+ })(self, (__WEBPACK_EXTERNAL_MODULE__3966__, __WEBPACK_EXTERNAL_MODULE__8167__, __WEBPACK_EXTERNAL_MODULE__4189__, __WEBPACK_EXTERNAL_MODULE__6473__, __WEBPACK_EXTERNAL_MODULE__1387__, __WEBPACK_EXTERNAL_MODULE__1307__) => {
11
11
  return /******/ (() => { // webpackBootstrap
12
12
  /******/ var __webpack_modules__ = ({
13
13
 
@@ -956,22 +956,6 @@ module.exports = function (key) {
956
956
  };
957
957
 
958
958
 
959
- /***/ }),
960
-
961
- /***/ 7234:
962
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
963
-
964
- "use strict";
965
-
966
- var charAt = (__webpack_require__(7804).charAt);
967
-
968
- // `AdvanceStringIndex` abstract operation
969
- // https://tc39.es/ecma262/#sec-advancestringindex
970
- module.exports = function (S, index, unicode) {
971
- return index + (unicode ? charAt(S, index).length : 1);
972
- };
973
-
974
-
975
959
  /***/ }),
976
960
 
977
961
  /***/ 3938:
@@ -1011,60 +995,6 @@ module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
1011
995
  } : [].forEach;
1012
996
 
1013
997
 
1014
- /***/ }),
1015
-
1016
- /***/ 1027:
1017
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1018
-
1019
- "use strict";
1020
-
1021
- var bind = __webpack_require__(6885);
1022
- var call = __webpack_require__(2368);
1023
- var toObject = __webpack_require__(2612);
1024
- var callWithSafeIterationClosing = __webpack_require__(1332);
1025
- var isArrayIteratorMethod = __webpack_require__(9034);
1026
- var isConstructor = __webpack_require__(1466);
1027
- var lengthOfArrayLike = __webpack_require__(3493);
1028
- var createProperty = __webpack_require__(2057);
1029
- var getIterator = __webpack_require__(9526);
1030
- var getIteratorMethod = __webpack_require__(1898);
1031
-
1032
- var $Array = Array;
1033
-
1034
- // `Array.from` method implementation
1035
- // https://tc39.es/ecma262/#sec-array.from
1036
- module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {
1037
- var O = toObject(arrayLike);
1038
- var IS_CONSTRUCTOR = isConstructor(this);
1039
- var argumentsLength = arguments.length;
1040
- var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
1041
- var mapping = mapfn !== undefined;
1042
- if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined);
1043
- var iteratorMethod = getIteratorMethod(O);
1044
- var index = 0;
1045
- var length, result, step, iterator, next, value;
1046
- // if the target is not iterable or it's an array with the default iterator - use a simple case
1047
- if (iteratorMethod && !(this === $Array && isArrayIteratorMethod(iteratorMethod))) {
1048
- result = IS_CONSTRUCTOR ? new this() : [];
1049
- iterator = getIterator(O, iteratorMethod);
1050
- next = iterator.next;
1051
- for (;!(step = call(next, iterator)).done; index++) {
1052
- value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
1053
- createProperty(result, index, value);
1054
- }
1055
- } else {
1056
- length = lengthOfArrayLike(O);
1057
- result = IS_CONSTRUCTOR ? new this(length) : $Array(length);
1058
- for (;length > index; index++) {
1059
- value = mapping ? mapfn(O[index], index) : O[index];
1060
- createProperty(result, index, value);
1061
- }
1062
- }
1063
- result.length = index;
1064
- return result;
1065
- };
1066
-
1067
-
1068
998
  /***/ }),
1069
999
 
1070
1000
  /***/ 8186:
@@ -1294,75 +1224,6 @@ module.exports = function (originalArray, length) {
1294
1224
  };
1295
1225
 
1296
1226
 
1297
- /***/ }),
1298
-
1299
- /***/ 1332:
1300
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1301
-
1302
- "use strict";
1303
-
1304
- var anObject = __webpack_require__(3938);
1305
- var iteratorClose = __webpack_require__(9868);
1306
-
1307
- // call something on iterator step with safe closing on error
1308
- module.exports = function (iterator, fn, value, ENTRIES) {
1309
- try {
1310
- return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
1311
- } catch (error) {
1312
- iteratorClose(iterator, 'throw', error);
1313
- }
1314
- };
1315
-
1316
-
1317
- /***/ }),
1318
-
1319
- /***/ 7499:
1320
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1321
-
1322
- "use strict";
1323
-
1324
- var wellKnownSymbol = __webpack_require__(1602);
1325
-
1326
- var ITERATOR = wellKnownSymbol('iterator');
1327
- var SAFE_CLOSING = false;
1328
-
1329
- try {
1330
- var called = 0;
1331
- var iteratorWithReturn = {
1332
- next: function () {
1333
- return { done: !!called++ };
1334
- },
1335
- 'return': function () {
1336
- SAFE_CLOSING = true;
1337
- }
1338
- };
1339
- iteratorWithReturn[ITERATOR] = function () {
1340
- return this;
1341
- };
1342
- // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
1343
- Array.from(iteratorWithReturn, function () { throw 2; });
1344
- } catch (error) { /* empty */ }
1345
-
1346
- module.exports = function (exec, SKIP_CLOSING) {
1347
- try {
1348
- if (!SKIP_CLOSING && !SAFE_CLOSING) return false;
1349
- } catch (error) { return false; } // workaround of old WebKit + `eval` bug
1350
- var ITERATION_SUPPORT = false;
1351
- try {
1352
- var object = {};
1353
- object[ITERATOR] = function () {
1354
- return {
1355
- next: function () {
1356
- return { done: ITERATION_SUPPORT = true };
1357
- }
1358
- };
1359
- };
1360
- exec(object);
1361
- } catch (error) { /* empty */ }
1362
- return ITERATION_SUPPORT;
1363
- };
1364
-
1365
-
1366
1227
  /***/ }),
1367
1228
 
1368
1229
  /***/ 8569:
@@ -1682,22 +1543,6 @@ module.exports = function (it) {
1682
1543
  };
1683
1544
 
1684
1545
 
1685
- /***/ }),
1686
-
1687
- /***/ 7242:
1688
- /***/ ((module) => {
1689
-
1690
- "use strict";
1691
-
1692
- var $TypeError = TypeError;
1693
- var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
1694
-
1695
- module.exports = function (it) {
1696
- if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
1697
- return it;
1698
- };
1699
-
1700
-
1701
1546
  /***/ }),
1702
1547
 
1703
1548
  /***/ 5549:
@@ -1907,90 +1752,6 @@ module.exports = function (exec) {
1907
1752
  };
1908
1753
 
1909
1754
 
1910
- /***/ }),
1911
-
1912
- /***/ 779:
1913
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1914
-
1915
- "use strict";
1916
-
1917
- // TODO: Remove from `core-js@4` since it's moved to entry points
1918
- __webpack_require__(7136);
1919
- var call = __webpack_require__(2368);
1920
- var defineBuiltIn = __webpack_require__(7485);
1921
- var regexpExec = __webpack_require__(54);
1922
- var fails = __webpack_require__(2074);
1923
- var wellKnownSymbol = __webpack_require__(1602);
1924
- var createNonEnumerableProperty = __webpack_require__(7712);
1925
-
1926
- var SPECIES = wellKnownSymbol('species');
1927
- var RegExpPrototype = RegExp.prototype;
1928
-
1929
- module.exports = function (KEY, exec, FORCED, SHAM) {
1930
- var SYMBOL = wellKnownSymbol(KEY);
1931
-
1932
- var DELEGATES_TO_SYMBOL = !fails(function () {
1933
- // String methods call symbol-named RegExp methods
1934
- var O = {};
1935
- O[SYMBOL] = function () { return 7; };
1936
- return ''[KEY](O) !== 7;
1937
- });
1938
-
1939
- var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
1940
- // Symbol-named RegExp methods call .exec
1941
- var execCalled = false;
1942
- var re = /a/;
1943
-
1944
- if (KEY === 'split') {
1945
- // We can't use real regex here since it causes deoptimization
1946
- // and serious performance degradation in V8
1947
- // https://github.com/zloirock/core-js/issues/306
1948
- re = {};
1949
- // RegExp[@@split] doesn't call the regex's exec method, but first creates
1950
- // a new one. We need to return the patched regex when creating the new one.
1951
- re.constructor = {};
1952
- re.constructor[SPECIES] = function () { return re; };
1953
- re.flags = '';
1954
- re[SYMBOL] = /./[SYMBOL];
1955
- }
1956
-
1957
- re.exec = function () {
1958
- execCalled = true;
1959
- return null;
1960
- };
1961
-
1962
- re[SYMBOL]('');
1963
- return !execCalled;
1964
- });
1965
-
1966
- if (
1967
- !DELEGATES_TO_SYMBOL ||
1968
- !DELEGATES_TO_EXEC ||
1969
- FORCED
1970
- ) {
1971
- var nativeRegExpMethod = /./[SYMBOL];
1972
- var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
1973
- var $exec = regexp.exec;
1974
- if ($exec === regexpExec || $exec === RegExpPrototype.exec) {
1975
- if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
1976
- // The native String method already delegates to @@method (this
1977
- // polyfilled function), leasing to infinite recursion.
1978
- // We avoid it by directly calling the native @@method method.
1979
- return { done: true, value: call(nativeRegExpMethod, regexp, str, arg2) };
1980
- }
1981
- return { done: true, value: call(nativeMethod, str, regexp, arg2) };
1982
- }
1983
- return { done: false };
1984
- });
1985
-
1986
- defineBuiltIn(String.prototype, KEY, methods[0]);
1987
- defineBuiltIn(RegExpPrototype, SYMBOL, methods[1]);
1988
- }
1989
-
1990
- if (SHAM) createNonEnumerableProperty(RegExpPrototype[SYMBOL], 'sham', true);
1991
- };
1992
-
1993
-
1994
1755
  /***/ }),
1995
1756
 
1996
1757
  /***/ 9070:
@@ -2049,50 +1810,6 @@ module.exports = !fails(function () {
2049
1810
  });
2050
1811
 
2051
1812
 
2052
- /***/ }),
2053
-
2054
- /***/ 8891:
2055
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2056
-
2057
- "use strict";
2058
-
2059
- var uncurryThis = __webpack_require__(281);
2060
- var aCallable = __webpack_require__(4601);
2061
- var isObject = __webpack_require__(5335);
2062
- var hasOwn = __webpack_require__(6490);
2063
- var arraySlice = __webpack_require__(9609);
2064
- var NATIVE_BIND = __webpack_require__(8823);
2065
-
2066
- var $Function = Function;
2067
- var concat = uncurryThis([].concat);
2068
- var join = uncurryThis([].join);
2069
- var factories = {};
2070
-
2071
- var construct = function (C, argsLength, args) {
2072
- if (!hasOwn(factories, argsLength)) {
2073
- var list = [];
2074
- var i = 0;
2075
- for (; i < argsLength; i++) list[i] = 'a[' + i + ']';
2076
- factories[argsLength] = $Function('C,a', 'return new C(' + join(list, ',') + ')');
2077
- } return factories[argsLength](C, args);
2078
- };
2079
-
2080
- // `Function.prototype.bind` method implementation
2081
- // https://tc39.es/ecma262/#sec-function.prototype.bind
2082
- // eslint-disable-next-line es/no-function-prototype-bind -- detection
2083
- module.exports = NATIVE_BIND ? $Function.bind : function bind(that /* , ...args */) {
2084
- var F = aCallable(this);
2085
- var Prototype = F.prototype;
2086
- var partArgs = arraySlice(arguments, 1);
2087
- var boundFunction = function bound(/* args... */) {
2088
- var args = concat(partArgs, arraySlice(arguments));
2089
- return this instanceof boundFunction ? construct(F, args.length, args) : F.apply(that, args);
2090
- };
2091
- if (isObject(Prototype)) boundFunction.prototype = Prototype;
2092
- return boundFunction;
2093
- };
2094
-
2095
-
2096
1813
  /***/ }),
2097
1814
 
2098
1815
  /***/ 2368:
@@ -2211,50 +1928,6 @@ module.exports = function (namespace, method) {
2211
1928
  };
2212
1929
 
2213
1930
 
2214
- /***/ }),
2215
-
2216
- /***/ 1898:
2217
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2218
-
2219
- "use strict";
2220
-
2221
- var classof = __webpack_require__(3062);
2222
- var getMethod = __webpack_require__(6457);
2223
- var isNullOrUndefined = __webpack_require__(8406);
2224
- var Iterators = __webpack_require__(2228);
2225
- var wellKnownSymbol = __webpack_require__(1602);
2226
-
2227
- var ITERATOR = wellKnownSymbol('iterator');
2228
-
2229
- module.exports = function (it) {
2230
- if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
2231
- || getMethod(it, '@@iterator')
2232
- || Iterators[classof(it)];
2233
- };
2234
-
2235
-
2236
- /***/ }),
2237
-
2238
- /***/ 9526:
2239
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2240
-
2241
- "use strict";
2242
-
2243
- var call = __webpack_require__(2368);
2244
- var aCallable = __webpack_require__(4601);
2245
- var anObject = __webpack_require__(3938);
2246
- var tryToString = __webpack_require__(3838);
2247
- var getIteratorMethod = __webpack_require__(1898);
2248
-
2249
- var $TypeError = TypeError;
2250
-
2251
- module.exports = function (argument, usingIterator) {
2252
- var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
2253
- if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
2254
- throw new $TypeError(tryToString(argument) + ' is not iterable');
2255
- };
2256
-
2257
-
2258
1931
  /***/ }),
2259
1932
 
2260
1933
  /***/ 1110:
@@ -2550,25 +2223,6 @@ module.exports = {
2550
2223
  };
2551
2224
 
2552
2225
 
2553
- /***/ }),
2554
-
2555
- /***/ 9034:
2556
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2557
-
2558
- "use strict";
2559
-
2560
- var wellKnownSymbol = __webpack_require__(1602);
2561
- var Iterators = __webpack_require__(2228);
2562
-
2563
- var ITERATOR = wellKnownSymbol('iterator');
2564
- var ArrayPrototype = Array.prototype;
2565
-
2566
- // check on default Array iterator
2567
- module.exports = function (it) {
2568
- return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
2569
- };
2570
-
2571
-
2572
2226
  /***/ }),
2573
2227
 
2574
2228
  /***/ 8679:
@@ -2792,38 +2446,6 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
2792
2446
  };
2793
2447
 
2794
2448
 
2795
- /***/ }),
2796
-
2797
- /***/ 9868:
2798
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2799
-
2800
- "use strict";
2801
-
2802
- var call = __webpack_require__(2368);
2803
- var anObject = __webpack_require__(3938);
2804
- var getMethod = __webpack_require__(6457);
2805
-
2806
- module.exports = function (iterator, kind, value) {
2807
- var innerResult, innerError;
2808
- anObject(iterator);
2809
- try {
2810
- innerResult = getMethod(iterator, 'return');
2811
- if (!innerResult) {
2812
- if (kind === 'throw') throw value;
2813
- return value;
2814
- }
2815
- innerResult = call(innerResult, iterator);
2816
- } catch (error) {
2817
- innerError = true;
2818
- innerResult = error;
2819
- }
2820
- if (kind === 'throw') throw value;
2821
- if (innerError) throw innerResult;
2822
- anObject(innerResult);
2823
- return value;
2824
- };
2825
-
2826
-
2827
2449
  /***/ }),
2828
2450
 
2829
2451
  /***/ 8287:
@@ -3141,72 +2763,6 @@ module.exports = function (it) {
3141
2763
  };
3142
2764
 
3143
2765
 
3144
- /***/ }),
3145
-
3146
- /***/ 1688:
3147
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3148
-
3149
- "use strict";
3150
-
3151
- var DESCRIPTORS = __webpack_require__(5077);
3152
- var uncurryThis = __webpack_require__(281);
3153
- var call = __webpack_require__(2368);
3154
- var fails = __webpack_require__(2074);
3155
- var objectKeys = __webpack_require__(1641);
3156
- var getOwnPropertySymbolsModule = __webpack_require__(8916);
3157
- var propertyIsEnumerableModule = __webpack_require__(9304);
3158
- var toObject = __webpack_require__(2612);
3159
- var IndexedObject = __webpack_require__(8664);
3160
-
3161
- // eslint-disable-next-line es/no-object-assign -- safe
3162
- var $assign = Object.assign;
3163
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
3164
- var defineProperty = Object.defineProperty;
3165
- var concat = uncurryThis([].concat);
3166
-
3167
- // `Object.assign` method
3168
- // https://tc39.es/ecma262/#sec-object.assign
3169
- module.exports = !$assign || fails(function () {
3170
- // should have correct order of operations (Edge bug)
3171
- if (DESCRIPTORS && $assign({ b: 1 }, $assign(defineProperty({}, 'a', {
3172
- enumerable: true,
3173
- get: function () {
3174
- defineProperty(this, 'b', {
3175
- value: 3,
3176
- enumerable: false
3177
- });
3178
- }
3179
- }), { b: 2 })).b !== 1) return true;
3180
- // should work with symbols and should have deterministic property order (V8 bug)
3181
- var A = {};
3182
- var B = {};
3183
- // eslint-disable-next-line es/no-symbol -- safe
3184
- var symbol = Symbol('assign detection');
3185
- var alphabet = 'abcdefghijklmnopqrst';
3186
- A[symbol] = 7;
3187
- // eslint-disable-next-line es/no-array-prototype-foreach -- safe
3188
- alphabet.split('').forEach(function (chr) { B[chr] = chr; });
3189
- return $assign({}, A)[symbol] !== 7 || objectKeys($assign({}, B)).join('') !== alphabet;
3190
- }) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
3191
- var T = toObject(target);
3192
- var argumentsLength = arguments.length;
3193
- var index = 1;
3194
- var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
3195
- var propertyIsEnumerable = propertyIsEnumerableModule.f;
3196
- while (argumentsLength > index) {
3197
- var S = IndexedObject(arguments[index++]);
3198
- var keys = getOwnPropertySymbols ? concat(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
3199
- var length = keys.length;
3200
- var j = 0;
3201
- var key;
3202
- while (length > j) {
3203
- key = keys[j++];
3204
- if (!DESCRIPTORS || call(propertyIsEnumerable, S, key)) T[key] = S[key];
3205
- }
3206
- } return T;
3207
- } : $assign;
3208
-
3209
-
3210
2766
  /***/ }),
3211
2767
 
3212
2768
  /***/ 3105:
@@ -3699,285 +3255,6 @@ var globalThis = __webpack_require__(1301);
3699
3255
  module.exports = globalThis;
3700
3256
 
3701
3257
 
3702
- /***/ }),
3703
-
3704
- /***/ 6793:
3705
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3706
-
3707
- "use strict";
3708
-
3709
- var call = __webpack_require__(2368);
3710
- var anObject = __webpack_require__(3938);
3711
- var isCallable = __webpack_require__(8420);
3712
- var classof = __webpack_require__(8569);
3713
- var regexpExec = __webpack_require__(54);
3714
-
3715
- var $TypeError = TypeError;
3716
-
3717
- // `RegExpExec` abstract operation
3718
- // https://tc39.es/ecma262/#sec-regexpexec
3719
- module.exports = function (R, S) {
3720
- var exec = R.exec;
3721
- if (isCallable(exec)) {
3722
- var result = call(exec, R, S);
3723
- if (result !== null) anObject(result);
3724
- return result;
3725
- }
3726
- if (classof(R) === 'RegExp') return call(regexpExec, R, S);
3727
- throw new $TypeError('RegExp#exec called on incompatible receiver');
3728
- };
3729
-
3730
-
3731
- /***/ }),
3732
-
3733
- /***/ 54:
3734
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3735
-
3736
- "use strict";
3737
-
3738
- /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
3739
- /* eslint-disable regexp/no-useless-quantifier -- testing */
3740
- var call = __webpack_require__(2368);
3741
- var uncurryThis = __webpack_require__(281);
3742
- var toString = __webpack_require__(5362);
3743
- var regexpFlags = __webpack_require__(6844);
3744
- var stickyHelpers = __webpack_require__(2192);
3745
- var shared = __webpack_require__(2);
3746
- var create = __webpack_require__(3105);
3747
- var getInternalState = (__webpack_require__(9206).get);
3748
- var UNSUPPORTED_DOT_ALL = __webpack_require__(1036);
3749
- var UNSUPPORTED_NCG = __webpack_require__(8121);
3750
-
3751
- var nativeReplace = shared('native-string-replace', String.prototype.replace);
3752
- var nativeExec = RegExp.prototype.exec;
3753
- var patchedExec = nativeExec;
3754
- var charAt = uncurryThis(''.charAt);
3755
- var indexOf = uncurryThis(''.indexOf);
3756
- var replace = uncurryThis(''.replace);
3757
- var stringSlice = uncurryThis(''.slice);
3758
-
3759
- var UPDATES_LAST_INDEX_WRONG = (function () {
3760
- var re1 = /a/;
3761
- var re2 = /b*/g;
3762
- call(nativeExec, re1, 'a');
3763
- call(nativeExec, re2, 'a');
3764
- return re1.lastIndex !== 0 || re2.lastIndex !== 0;
3765
- })();
3766
-
3767
- var UNSUPPORTED_Y = stickyHelpers.BROKEN_CARET;
3768
-
3769
- // nonparticipating capturing group, copied from es5-shim's String#split patch.
3770
- var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
3771
-
3772
- var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG;
3773
-
3774
- if (PATCH) {
3775
- patchedExec = function exec(string) {
3776
- var re = this;
3777
- var state = getInternalState(re);
3778
- var str = toString(string);
3779
- var raw = state.raw;
3780
- var result, reCopy, lastIndex, match, i, object, group;
3781
-
3782
- if (raw) {
3783
- raw.lastIndex = re.lastIndex;
3784
- result = call(patchedExec, raw, str);
3785
- re.lastIndex = raw.lastIndex;
3786
- return result;
3787
- }
3788
-
3789
- var groups = state.groups;
3790
- var sticky = UNSUPPORTED_Y && re.sticky;
3791
- var flags = call(regexpFlags, re);
3792
- var source = re.source;
3793
- var charsAdded = 0;
3794
- var strCopy = str;
3795
-
3796
- if (sticky) {
3797
- flags = replace(flags, 'y', '');
3798
- if (indexOf(flags, 'g') === -1) {
3799
- flags += 'g';
3800
- }
3801
-
3802
- strCopy = stringSlice(str, re.lastIndex);
3803
- // Support anchored sticky behavior.
3804
- if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt(str, re.lastIndex - 1) !== '\n')) {
3805
- source = '(?: ' + source + ')';
3806
- strCopy = ' ' + strCopy;
3807
- charsAdded++;
3808
- }
3809
- // ^(? + rx + ) is needed, in combination with some str slicing, to
3810
- // simulate the 'y' flag.
3811
- reCopy = new RegExp('^(?:' + source + ')', flags);
3812
- }
3813
-
3814
- if (NPCG_INCLUDED) {
3815
- reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
3816
- }
3817
- if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
3818
-
3819
- match = call(nativeExec, sticky ? reCopy : re, strCopy);
3820
-
3821
- if (sticky) {
3822
- if (match) {
3823
- match.input = stringSlice(match.input, charsAdded);
3824
- match[0] = stringSlice(match[0], charsAdded);
3825
- match.index = re.lastIndex;
3826
- re.lastIndex += match[0].length;
3827
- } else re.lastIndex = 0;
3828
- } else if (UPDATES_LAST_INDEX_WRONG && match) {
3829
- re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
3830
- }
3831
- if (NPCG_INCLUDED && match && match.length > 1) {
3832
- // Fix browsers whose `exec` methods don't consistently return `undefined`
3833
- // for NPCG, like IE8. NOTE: This doesn't work for /(.?)?/
3834
- call(nativeReplace, match[0], reCopy, function () {
3835
- for (i = 1; i < arguments.length - 2; i++) {
3836
- if (arguments[i] === undefined) match[i] = undefined;
3837
- }
3838
- });
3839
- }
3840
-
3841
- if (match && groups) {
3842
- match.groups = object = create(null);
3843
- for (i = 0; i < groups.length; i++) {
3844
- group = groups[i];
3845
- object[group[0]] = match[group[1]];
3846
- }
3847
- }
3848
-
3849
- return match;
3850
- };
3851
- }
3852
-
3853
- module.exports = patchedExec;
3854
-
3855
-
3856
- /***/ }),
3857
-
3858
- /***/ 6844:
3859
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3860
-
3861
- "use strict";
3862
-
3863
- var anObject = __webpack_require__(3938);
3864
-
3865
- // `RegExp.prototype.flags` getter implementation
3866
- // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
3867
- module.exports = function () {
3868
- var that = anObject(this);
3869
- var result = '';
3870
- if (that.hasIndices) result += 'd';
3871
- if (that.global) result += 'g';
3872
- if (that.ignoreCase) result += 'i';
3873
- if (that.multiline) result += 'm';
3874
- if (that.dotAll) result += 's';
3875
- if (that.unicode) result += 'u';
3876
- if (that.unicodeSets) result += 'v';
3877
- if (that.sticky) result += 'y';
3878
- return result;
3879
- };
3880
-
3881
-
3882
- /***/ }),
3883
-
3884
- /***/ 353:
3885
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3886
-
3887
- "use strict";
3888
-
3889
- var call = __webpack_require__(2368);
3890
- var hasOwn = __webpack_require__(6490);
3891
- var isPrototypeOf = __webpack_require__(7658);
3892
- var regExpFlags = __webpack_require__(6844);
3893
-
3894
- var RegExpPrototype = RegExp.prototype;
3895
-
3896
- module.exports = function (R) {
3897
- var flags = R.flags;
3898
- return flags === undefined && !('flags' in RegExpPrototype) && !hasOwn(R, 'flags') && isPrototypeOf(RegExpPrototype, R)
3899
- ? call(regExpFlags, R) : flags;
3900
- };
3901
-
3902
-
3903
- /***/ }),
3904
-
3905
- /***/ 2192:
3906
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3907
-
3908
- "use strict";
3909
-
3910
- var fails = __webpack_require__(2074);
3911
- var globalThis = __webpack_require__(1301);
3912
-
3913
- // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
3914
- var $RegExp = globalThis.RegExp;
3915
-
3916
- var UNSUPPORTED_Y = fails(function () {
3917
- var re = $RegExp('a', 'y');
3918
- re.lastIndex = 2;
3919
- return re.exec('abcd') !== null;
3920
- });
3921
-
3922
- // UC Browser bug
3923
- // https://github.com/zloirock/core-js/issues/1008
3924
- var MISSED_STICKY = UNSUPPORTED_Y || fails(function () {
3925
- return !$RegExp('a', 'y').sticky;
3926
- });
3927
-
3928
- var BROKEN_CARET = UNSUPPORTED_Y || fails(function () {
3929
- // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
3930
- var re = $RegExp('^r', 'gy');
3931
- re.lastIndex = 2;
3932
- return re.exec('str') !== null;
3933
- });
3934
-
3935
- module.exports = {
3936
- BROKEN_CARET: BROKEN_CARET,
3937
- MISSED_STICKY: MISSED_STICKY,
3938
- UNSUPPORTED_Y: UNSUPPORTED_Y
3939
- };
3940
-
3941
-
3942
- /***/ }),
3943
-
3944
- /***/ 1036:
3945
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3946
-
3947
- "use strict";
3948
-
3949
- var fails = __webpack_require__(2074);
3950
- var globalThis = __webpack_require__(1301);
3951
-
3952
- // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
3953
- var $RegExp = globalThis.RegExp;
3954
-
3955
- module.exports = fails(function () {
3956
- var re = $RegExp('.', 's');
3957
- return !(re.dotAll && re.test('\n') && re.flags === 's');
3958
- });
3959
-
3960
-
3961
- /***/ }),
3962
-
3963
- /***/ 8121:
3964
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3965
-
3966
- "use strict";
3967
-
3968
- var fails = __webpack_require__(2074);
3969
- var globalThis = __webpack_require__(1301);
3970
-
3971
- // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
3972
- var $RegExp = globalThis.RegExp;
3973
-
3974
- module.exports = fails(function () {
3975
- var re = $RegExp('(?<a>b)', 'g');
3976
- return re.exec('b').groups.a !== 'b' ||
3977
- 'b'.replace(re, '$<a>c') !== 'bc';
3978
- });
3979
-
3980
-
3981
3258
  /***/ }),
3982
3259
 
3983
3260
  /***/ 1229:
@@ -4575,72 +3852,6 @@ module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u
4575
3852
  '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
4576
3853
 
4577
3854
 
4578
- /***/ }),
4579
-
4580
- /***/ 115:
4581
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4582
-
4583
- "use strict";
4584
-
4585
- var $ = __webpack_require__(1605);
4586
- var fails = __webpack_require__(2074);
4587
- var isArray = __webpack_require__(8679);
4588
- var isObject = __webpack_require__(5335);
4589
- var toObject = __webpack_require__(2612);
4590
- var lengthOfArrayLike = __webpack_require__(3493);
4591
- var doesNotExceedSafeInteger = __webpack_require__(7242);
4592
- var createProperty = __webpack_require__(2057);
4593
- var arraySpeciesCreate = __webpack_require__(2998);
4594
- var arrayMethodHasSpeciesSupport = __webpack_require__(5634);
4595
- var wellKnownSymbol = __webpack_require__(1602);
4596
- var V8_VERSION = __webpack_require__(1928);
4597
-
4598
- var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
4599
-
4600
- // We can't use this feature detection in V8 since it causes
4601
- // deoptimization and serious performance degradation
4602
- // https://github.com/zloirock/core-js/issues/679
4603
- var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {
4604
- var array = [];
4605
- array[IS_CONCAT_SPREADABLE] = false;
4606
- return array.concat()[0] !== array;
4607
- });
4608
-
4609
- var isConcatSpreadable = function (O) {
4610
- if (!isObject(O)) return false;
4611
- var spreadable = O[IS_CONCAT_SPREADABLE];
4612
- return spreadable !== undefined ? !!spreadable : isArray(O);
4613
- };
4614
-
4615
- var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !arrayMethodHasSpeciesSupport('concat');
4616
-
4617
- // `Array.prototype.concat` method
4618
- // https://tc39.es/ecma262/#sec-array.prototype.concat
4619
- // with adding support of @@isConcatSpreadable and @@species
4620
- $({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
4621
- // eslint-disable-next-line no-unused-vars -- required for `.length`
4622
- concat: function concat(arg) {
4623
- var O = toObject(this);
4624
- var A = arraySpeciesCreate(O, 0);
4625
- var n = 0;
4626
- var i, k, length, len, E;
4627
- for (i = -1, length = arguments.length; i < length; i++) {
4628
- E = i === -1 ? O : arguments[i];
4629
- if (isConcatSpreadable(E)) {
4630
- len = lengthOfArrayLike(E);
4631
- doesNotExceedSafeInteger(n + len);
4632
- for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
4633
- } else {
4634
- doesNotExceedSafeInteger(n + 1);
4635
- createProperty(A, n++, E);
4636
- }
4637
- }
4638
- A.length = n;
4639
- return A;
4640
- }
4641
- });
4642
-
4643
-
4644
3855
  /***/ }),
4645
3856
 
4646
3857
  /***/ 17:
@@ -4682,29 +3893,6 @@ $({ target: 'Array', proto: true, forced: [].forEach !== forEach }, {
4682
3893
  });
4683
3894
 
4684
3895
 
4685
- /***/ }),
4686
-
4687
- /***/ 5195:
4688
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4689
-
4690
- "use strict";
4691
-
4692
- var $ = __webpack_require__(1605);
4693
- var from = __webpack_require__(1027);
4694
- var checkCorrectnessOfIteration = __webpack_require__(7499);
4695
-
4696
- var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
4697
- // eslint-disable-next-line es/no-array-from -- required for testing
4698
- Array.from(iterable);
4699
- });
4700
-
4701
- // `Array.from` method
4702
- // https://tc39.es/ecma262/#sec-array.from
4703
- $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
4704
- from: from
4705
- });
4706
-
4707
-
4708
3896
  /***/ }),
4709
3897
 
4710
3898
  /***/ 7746:
@@ -4735,54 +3923,6 @@ $({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
4735
3923
  addToUnscopables('includes');
4736
3924
 
4737
3925
 
4738
- /***/ }),
4739
-
4740
- /***/ 9693:
4741
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4742
-
4743
- "use strict";
4744
-
4745
- /* eslint-disable es/no-array-prototype-indexof -- required for testing */
4746
- var $ = __webpack_require__(1605);
4747
- var uncurryThis = __webpack_require__(3091);
4748
- var $indexOf = (__webpack_require__(8186).indexOf);
4749
- var arrayMethodIsStrict = __webpack_require__(2349);
4750
-
4751
- var nativeIndexOf = uncurryThis([].indexOf);
4752
-
4753
- var NEGATIVE_ZERO = !!nativeIndexOf && 1 / nativeIndexOf([1], 1, -0) < 0;
4754
- var FORCED = NEGATIVE_ZERO || !arrayMethodIsStrict('indexOf');
4755
-
4756
- // `Array.prototype.indexOf` method
4757
- // https://tc39.es/ecma262/#sec-array.prototype.indexof
4758
- $({ target: 'Array', proto: true, forced: FORCED }, {
4759
- indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
4760
- var fromIndex = arguments.length > 1 ? arguments[1] : undefined;
4761
- return NEGATIVE_ZERO
4762
- // convert -0 to +0
4763
- ? nativeIndexOf(this, searchElement, fromIndex) || 0
4764
- : $indexOf(this, searchElement, fromIndex);
4765
- }
4766
- });
4767
-
4768
-
4769
- /***/ }),
4770
-
4771
- /***/ 4895:
4772
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4773
-
4774
- "use strict";
4775
-
4776
- var $ = __webpack_require__(1605);
4777
- var isArray = __webpack_require__(8679);
4778
-
4779
- // `Array.isArray` method
4780
- // https://tc39.es/ecma262/#sec-array.isarray
4781
- $({ target: 'Array', stat: true }, {
4782
- isArray: isArray
4783
- });
4784
-
4785
-
4786
3926
  /***/ }),
4787
3927
 
4788
3928
  /***/ 8665:
@@ -4853,63 +3993,6 @@ if (!IS_PURE && DESCRIPTORS && values.name !== 'values') try {
4853
3993
  } catch (error) { /* empty */ }
4854
3994
 
4855
3995
 
4856
- /***/ }),
4857
-
4858
- /***/ 4913:
4859
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4860
-
4861
- "use strict";
4862
-
4863
- var $ = __webpack_require__(1605);
4864
- var isArray = __webpack_require__(8679);
4865
- var isConstructor = __webpack_require__(1466);
4866
- var isObject = __webpack_require__(5335);
4867
- var toAbsoluteIndex = __webpack_require__(6539);
4868
- var lengthOfArrayLike = __webpack_require__(3493);
4869
- var toIndexedObject = __webpack_require__(5476);
4870
- var createProperty = __webpack_require__(2057);
4871
- var wellKnownSymbol = __webpack_require__(1602);
4872
- var arrayMethodHasSpeciesSupport = __webpack_require__(5634);
4873
- var nativeSlice = __webpack_require__(9609);
4874
-
4875
- var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
4876
-
4877
- var SPECIES = wellKnownSymbol('species');
4878
- var $Array = Array;
4879
- var max = Math.max;
4880
-
4881
- // `Array.prototype.slice` method
4882
- // https://tc39.es/ecma262/#sec-array.prototype.slice
4883
- // fallback for not array-like ES3 strings and DOM objects
4884
- $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
4885
- slice: function slice(start, end) {
4886
- var O = toIndexedObject(this);
4887
- var length = lengthOfArrayLike(O);
4888
- var k = toAbsoluteIndex(start, length);
4889
- var fin = toAbsoluteIndex(end === undefined ? length : end, length);
4890
- // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
4891
- var Constructor, result, n;
4892
- if (isArray(O)) {
4893
- Constructor = O.constructor;
4894
- // cross-realm fallback
4895
- if (isConstructor(Constructor) && (Constructor === $Array || isArray(Constructor.prototype))) {
4896
- Constructor = undefined;
4897
- } else if (isObject(Constructor)) {
4898
- Constructor = Constructor[SPECIES];
4899
- if (Constructor === null) Constructor = undefined;
4900
- }
4901
- if (Constructor === $Array || Constructor === undefined) {
4902
- return nativeSlice(O, k, fin);
4903
- }
4904
- }
4905
- result = new (Constructor === undefined ? $Array : Constructor)(max(fin - k, 0));
4906
- for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);
4907
- result.length = n;
4908
- return result;
4909
- }
4910
- });
4911
-
4912
-
4913
3996
  /***/ }),
4914
3997
 
4915
3998
  /***/ 7787:
@@ -4932,87 +4015,6 @@ if (!hasOwn(DatePrototype, TO_PRIMITIVE)) {
4932
4015
  }
4933
4016
 
4934
4017
 
4935
- /***/ }),
4936
-
4937
- /***/ 9389:
4938
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4939
-
4940
- "use strict";
4941
-
4942
- // TODO: Remove from `core-js@4`
4943
- var uncurryThis = __webpack_require__(281);
4944
- var defineBuiltIn = __webpack_require__(7485);
4945
-
4946
- var DatePrototype = Date.prototype;
4947
- var INVALID_DATE = 'Invalid Date';
4948
- var TO_STRING = 'toString';
4949
- var nativeDateToString = uncurryThis(DatePrototype[TO_STRING]);
4950
- var thisTimeValue = uncurryThis(DatePrototype.getTime);
4951
-
4952
- // `Date.prototype.toString` method
4953
- // https://tc39.es/ecma262/#sec-date.prototype.tostring
4954
- if (String(new Date(NaN)) !== INVALID_DATE) {
4955
- defineBuiltIn(DatePrototype, TO_STRING, function toString() {
4956
- var value = thisTimeValue(this);
4957
- // eslint-disable-next-line no-self-compare -- NaN check
4958
- return value === value ? nativeDateToString(this) : INVALID_DATE;
4959
- });
4960
- }
4961
-
4962
-
4963
- /***/ }),
4964
-
4965
- /***/ 4189:
4966
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4967
-
4968
- "use strict";
4969
-
4970
- // TODO: Remove from `core-js@4`
4971
- var $ = __webpack_require__(1605);
4972
- var bind = __webpack_require__(8891);
4973
-
4974
- // `Function.prototype.bind` method
4975
- // https://tc39.es/ecma262/#sec-function.prototype.bind
4976
- // eslint-disable-next-line es/no-function-prototype-bind -- detection
4977
- $({ target: 'Function', proto: true, forced: Function.bind !== bind }, {
4978
- bind: bind
4979
- });
4980
-
4981
-
4982
- /***/ }),
4983
-
4984
- /***/ 8741:
4985
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4986
-
4987
- "use strict";
4988
-
4989
- var DESCRIPTORS = __webpack_require__(5077);
4990
- var FUNCTION_NAME_EXISTS = (__webpack_require__(2071).EXISTS);
4991
- var uncurryThis = __webpack_require__(281);
4992
- var defineBuiltInAccessor = __webpack_require__(6477);
4993
-
4994
- var FunctionPrototype = Function.prototype;
4995
- var functionToString = uncurryThis(FunctionPrototype.toString);
4996
- var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
4997
- var regExpExec = uncurryThis(nameRE.exec);
4998
- var NAME = 'name';
4999
-
5000
- // Function instances `.name` property
5001
- // https://tc39.es/ecma262/#sec-function-instances-name
5002
- if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) {
5003
- defineBuiltInAccessor(FunctionPrototype, NAME, {
5004
- configurable: true,
5005
- get: function () {
5006
- try {
5007
- return regExpExec(nameRE, functionToString(this))[1];
5008
- } catch (error) {
5009
- return '';
5010
- }
5011
- }
5012
- });
5013
- }
5014
-
5015
-
5016
4018
  /***/ }),
5017
4019
 
5018
4020
  /***/ 959:
@@ -5217,24 +4219,6 @@ if (IS_PURE && PureNumberNamespace) copyConstructorProperties(path[NUMBER], Pure
5217
4219
  if (FORCED || IS_PURE) copyConstructorProperties(path[NUMBER], NativeNumber);
5218
4220
 
5219
4221
 
5220
- /***/ }),
5221
-
5222
- /***/ 9218:
5223
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
5224
-
5225
- "use strict";
5226
-
5227
- var $ = __webpack_require__(1605);
5228
- var assign = __webpack_require__(1688);
5229
-
5230
- // `Object.assign` method
5231
- // https://tc39.es/ecma262/#sec-object.assign
5232
- // eslint-disable-next-line es/no-object-assign -- required for testing
5233
- $({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
5234
- assign: assign
5235
- });
5236
-
5237
-
5238
4222
  /***/ }),
5239
4223
 
5240
4224
  /***/ 6012:
@@ -5398,57 +4382,6 @@ if (!TO_STRING_TAG_SUPPORT) {
5398
4382
  }
5399
4383
 
5400
4384
 
5401
- /***/ }),
5402
-
5403
- /***/ 7136:
5404
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
5405
-
5406
- "use strict";
5407
-
5408
- var $ = __webpack_require__(1605);
5409
- var exec = __webpack_require__(54);
5410
-
5411
- // `RegExp.prototype.exec` method
5412
- // https://tc39.es/ecma262/#sec-regexp.prototype.exec
5413
- $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
5414
- exec: exec
5415
- });
5416
-
5417
-
5418
- /***/ }),
5419
-
5420
- /***/ 6048:
5421
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
5422
-
5423
- "use strict";
5424
-
5425
- var PROPER_FUNCTION_NAME = (__webpack_require__(2071).PROPER);
5426
- var defineBuiltIn = __webpack_require__(7485);
5427
- var anObject = __webpack_require__(3938);
5428
- var $toString = __webpack_require__(5362);
5429
- var fails = __webpack_require__(2074);
5430
- var getRegExpFlags = __webpack_require__(353);
5431
-
5432
- var TO_STRING = 'toString';
5433
- var RegExpPrototype = RegExp.prototype;
5434
- var nativeToString = RegExpPrototype[TO_STRING];
5435
-
5436
- var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) !== '/a/b'; });
5437
- // FF44- RegExp#toString has a wrong name
5438
- var INCORRECT_NAME = PROPER_FUNCTION_NAME && nativeToString.name !== TO_STRING;
5439
-
5440
- // `RegExp.prototype.toString` method
5441
- // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
5442
- if (NOT_GENERIC || INCORRECT_NAME) {
5443
- defineBuiltIn(RegExpPrototype, TO_STRING, function toString() {
5444
- var R = anObject(this);
5445
- var pattern = $toString(R.source);
5446
- var flags = $toString(getRegExpFlags(R));
5447
- return '/' + pattern + '/' + flags;
5448
- }, { unsafe: true });
5449
- }
5450
-
5451
-
5452
4385
  /***/ }),
5453
4386
 
5454
4387
  /***/ 3148:
@@ -5517,62 +4450,6 @@ defineIterator(String, 'String', function (iterated) {
5517
4450
  });
5518
4451
 
5519
4452
 
5520
- /***/ }),
5521
-
5522
- /***/ 8636:
5523
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
5524
-
5525
- "use strict";
5526
-
5527
- var call = __webpack_require__(2368);
5528
- var fixRegExpWellKnownSymbolLogic = __webpack_require__(779);
5529
- var anObject = __webpack_require__(3938);
5530
- var isObject = __webpack_require__(5335);
5531
- var toLength = __webpack_require__(3747);
5532
- var toString = __webpack_require__(5362);
5533
- var requireObjectCoercible = __webpack_require__(1229);
5534
- var getMethod = __webpack_require__(6457);
5535
- var advanceStringIndex = __webpack_require__(7234);
5536
- var regExpExec = __webpack_require__(6793);
5537
-
5538
- // @@match logic
5539
- fixRegExpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNative) {
5540
- return [
5541
- // `String.prototype.match` method
5542
- // https://tc39.es/ecma262/#sec-string.prototype.match
5543
- function match(regexp) {
5544
- var O = requireObjectCoercible(this);
5545
- var matcher = isObject(regexp) ? getMethod(regexp, MATCH) : undefined;
5546
- return matcher ? call(matcher, regexp, O) : new RegExp(regexp)[MATCH](toString(O));
5547
- },
5548
- // `RegExp.prototype[@@match]` method
5549
- // https://tc39.es/ecma262/#sec-regexp.prototype-@@match
5550
- function (string) {
5551
- var rx = anObject(this);
5552
- var S = toString(string);
5553
- var res = maybeCallNative(nativeMatch, rx, S);
5554
-
5555
- if (res.done) return res.value;
5556
-
5557
- if (!rx.global) return regExpExec(rx, S);
5558
-
5559
- var fullUnicode = rx.unicode;
5560
- rx.lastIndex = 0;
5561
- var A = [];
5562
- var n = 0;
5563
- var result;
5564
- while ((result = regExpExec(rx, S)) !== null) {
5565
- var matchStr = toString(result[0]);
5566
- A[n] = matchStr;
5567
- if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
5568
- n++;
5569
- }
5570
- return n === 0 ? null : A;
5571
- }
5572
- ];
5573
- });
5574
-
5575
-
5576
4453
  /***/ }),
5577
4454
 
5578
4455
  /***/ 7896:
@@ -11199,118 +10076,6 @@ module.exports = Warning
11199
10076
  Warning.default = Warning
11200
10077
 
11201
10078
 
11202
- /***/ }),
11203
-
11204
- /***/ 2694:
11205
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
11206
-
11207
- "use strict";
11208
- /**
11209
- * Copyright (c) 2013-present, Facebook, Inc.
11210
- *
11211
- * This source code is licensed under the MIT license found in the
11212
- * LICENSE file in the root directory of this source tree.
11213
- */
11214
-
11215
-
11216
-
11217
- var ReactPropTypesSecret = __webpack_require__(6925);
11218
-
11219
- function emptyFunction() {}
11220
- function emptyFunctionWithReset() {}
11221
- emptyFunctionWithReset.resetWarningCache = emptyFunction;
11222
-
11223
- module.exports = function() {
11224
- function shim(props, propName, componentName, location, propFullName, secret) {
11225
- if (secret === ReactPropTypesSecret) {
11226
- // It is still safe when called from React.
11227
- return;
11228
- }
11229
- var err = new Error(
11230
- 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
11231
- 'Use PropTypes.checkPropTypes() to call them. ' +
11232
- 'Read more at http://fb.me/use-check-prop-types'
11233
- );
11234
- err.name = 'Invariant Violation';
11235
- throw err;
11236
- };
11237
- shim.isRequired = shim;
11238
- function getShim() {
11239
- return shim;
11240
- };
11241
- // Important!
11242
- // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
11243
- var ReactPropTypes = {
11244
- array: shim,
11245
- bigint: shim,
11246
- bool: shim,
11247
- func: shim,
11248
- number: shim,
11249
- object: shim,
11250
- string: shim,
11251
- symbol: shim,
11252
-
11253
- any: shim,
11254
- arrayOf: getShim,
11255
- element: shim,
11256
- elementType: shim,
11257
- instanceOf: getShim,
11258
- node: shim,
11259
- objectOf: getShim,
11260
- oneOf: getShim,
11261
- oneOfType: getShim,
11262
- shape: getShim,
11263
- exact: getShim,
11264
-
11265
- checkPropTypes: emptyFunctionWithReset,
11266
- resetWarningCache: emptyFunction
11267
- };
11268
-
11269
- ReactPropTypes.PropTypes = ReactPropTypes;
11270
-
11271
- return ReactPropTypes;
11272
- };
11273
-
11274
-
11275
- /***/ }),
11276
-
11277
- /***/ 5556:
11278
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
11279
-
11280
- /**
11281
- * Copyright (c) 2013-present, Facebook, Inc.
11282
- *
11283
- * This source code is licensed under the MIT license found in the
11284
- * LICENSE file in the root directory of this source tree.
11285
- */
11286
-
11287
- if (false) { var throwOnDirectAccess, ReactIs; } else {
11288
- // By explicitly using `prop-types` you are opting into new production behavior.
11289
- // http://fb.me/prop-types-in-prod
11290
- module.exports = __webpack_require__(2694)();
11291
- }
11292
-
11293
-
11294
- /***/ }),
11295
-
11296
- /***/ 6925:
11297
- /***/ ((module) => {
11298
-
11299
- "use strict";
11300
- /**
11301
- * Copyright (c) 2013-present, Facebook, Inc.
11302
- *
11303
- * This source code is licensed under the MIT license found in the
11304
- * LICENSE file in the root directory of this source tree.
11305
- */
11306
-
11307
-
11308
-
11309
- var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
11310
-
11311
- module.exports = ReactPropTypesSecret;
11312
-
11313
-
11314
10079
  /***/ }),
11315
10080
 
11316
10081
  /***/ 1020:
@@ -11457,11 +10222,11 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__8167__;
11457
10222
 
11458
10223
  /***/ }),
11459
10224
 
11460
- /***/ 6570:
10225
+ /***/ 4189:
11461
10226
  /***/ ((module) => {
11462
10227
 
11463
10228
  "use strict";
11464
- module.exports = __WEBPACK_EXTERNAL_MODULE__6570__;
10229
+ module.exports = __WEBPACK_EXTERNAL_MODULE__4189__;
11465
10230
 
11466
10231
  /***/ }),
11467
10232
 
@@ -11787,156 +10552,59 @@ const Accordion = ({ children, icon, iconColor, title }) => {
11787
10552
  };
11788
10553
  /* harmony default export */ const components_Accordion = (Accordion);
11789
10554
 
11790
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
11791
- var es_symbol = __webpack_require__(3534);
11792
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
11793
- var es_symbol_description = __webpack_require__(590);
11794
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.iterator.js
11795
- var es_symbol_iterator = __webpack_require__(4216);
11796
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.from.js
11797
- var es_array_from = __webpack_require__(5195);
11798
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.index-of.js
11799
- var es_array_index_of = __webpack_require__(9693);
11800
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.iterator.js
11801
- var es_array_iterator = __webpack_require__(8665);
11802
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.slice.js
11803
- var es_array_slice = __webpack_require__(4913);
11804
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.date.to-string.js
11805
- var es_date_to_string = __webpack_require__(9389);
11806
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.bind.js
11807
- var es_function_bind = __webpack_require__(4189);
11808
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
11809
- var es_function_name = __webpack_require__(8741);
11810
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.assign.js
11811
- var es_object_assign = __webpack_require__(9218);
11812
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
11813
- var es_object_to_string = __webpack_require__(5086);
11814
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.to-string.js
11815
- var es_regexp_to_string = __webpack_require__(6048);
11816
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.iterator.js
11817
- var es_string_iterator = __webpack_require__(9979);
11818
- // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.iterator.js
11819
- var web_dom_collections_iterator = __webpack_require__(4602);
11820
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.concat.js
11821
- var es_array_concat = __webpack_require__(115);
11822
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.is-array.js
11823
- var es_array_is_array = __webpack_require__(4895);
11824
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.exec.js
11825
- var es_regexp_exec = __webpack_require__(7136);
11826
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.match.js
11827
- var es_string_match = __webpack_require__(8636);
11828
- // EXTERNAL MODULE: ./node_modules/prop-types/index.js
11829
- var prop_types = __webpack_require__(5556);
11830
10555
  ;// ./contexts/BaseUrl.js
11831
10556
 
11832
10557
  var BaseUrlContext = /*#__PURE__*/external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createContext('/');
11833
10558
  /* harmony default export */ const BaseUrl = (BaseUrlContext);
11834
- ;// ./components/Anchor.jsx
11835
-
11836
-
11837
-
11838
-
11839
-
11840
-
11841
-
11842
-
11843
-
11844
-
11845
-
11846
-
11847
-
11848
-
11849
-
11850
- var _excluded = ["children", "href", "target", "title"];
11851
- function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
11852
- function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
11853
- function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
11854
-
11855
-
11856
-
11857
-
11858
- function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
11859
- function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
11860
- function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
11861
- function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
11862
- function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
11863
- function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
11864
-
11865
-
10559
+ ;// ./components/Anchor.tsx
11866
10560
 
11867
10561
 
11868
10562
  // Nabbed from here:
11869
10563
  // https://github.com/readmeio/api-explorer/blob/0dedafcf71102feedaa4145040d3f57d79d95752/packages/api-explorer/src/lib/markdown/renderer.js#L52
11870
10564
  function getHref(href, baseUrl) {
11871
- var _href$split = href.split('#'),
11872
- _href$split2 = _slicedToArray(_href$split, 2),
11873
- path = _href$split2[0],
11874
- hash = _href$split2[1];
11875
- var hashStr = hash ? "#".concat(hash) : '';
11876
- var base = baseUrl === '/' ? '' : baseUrl;
11877
- var doc = path.match(/^doc:([-_a-zA-Z0-9#]*)$/);
11878
- if (doc) {
11879
- return "".concat(base, "/docs/").concat(doc[1]).concat(hashStr);
11880
- }
11881
- var ref = path.match(/^ref:([-_a-zA-Z0-9#]*)$/);
11882
- if (ref) {
11883
- return "".concat(base, "/reference-link/").concat(ref[1]).concat(hashStr);
11884
- }
11885
-
11886
- // we need to perform two matches for changelogs in case
11887
- // of legacy links that use 'blog' instead of 'changelog'
11888
- var blog = path.match(/^blog:([-_a-zA-Z0-9#]*)$/);
11889
- var changelog = path.match(/^changelog:([-_a-zA-Z0-9#]*)$/);
11890
- var changelogMatch = blog || changelog;
11891
- if (changelogMatch) {
11892
- return "".concat(base, "/changelog/").concat(changelogMatch[1]).concat(hashStr);
11893
- }
11894
- var custompage = path.match(/^page:([-_a-zA-Z0-9#]*)$/);
11895
- if (custompage) {
11896
- return "".concat(base, "/page/").concat(custompage[1]).concat(hashStr);
11897
- }
11898
- return href;
10565
+ const [path, hash] = href.split('#');
10566
+ const hashStr = hash ? `#${hash}` : '';
10567
+ const base = baseUrl === '/' ? '' : baseUrl;
10568
+ const doc = path.match(/^doc:([-_a-zA-Z0-9#]*)$/);
10569
+ if (doc) {
10570
+ return `${base}/docs/${doc[1]}${hashStr}`;
10571
+ }
10572
+ const ref = path.match(/^ref:([-_a-zA-Z0-9#]*)$/);
10573
+ if (ref) {
10574
+ return `${base}/reference-link/${ref[1]}${hashStr}`;
10575
+ }
10576
+ // we need to perform two matches for changelogs in case
10577
+ // of legacy links that use 'blog' instead of 'changelog'
10578
+ const blog = path.match(/^blog:([-_a-zA-Z0-9#]*)$/);
10579
+ const changelog = path.match(/^changelog:([-_a-zA-Z0-9#]*)$/);
10580
+ const changelogMatch = blog || changelog;
10581
+ if (changelogMatch) {
10582
+ return `${base}/changelog/${changelogMatch[1]}${hashStr}`;
10583
+ }
10584
+ const custompage = path.match(/^page:([-_a-zA-Z0-9#]*)$/);
10585
+ if (custompage) {
10586
+ return `${base}/page/${custompage[1]}${hashStr}`;
10587
+ }
10588
+ return href;
11899
10589
  }
11900
10590
  function docLink(href) {
11901
- var doc = href.match(/^doc:([-_a-zA-Z0-9#]*)$/);
11902
- if (!doc) return false;
11903
- return {
11904
- className: 'doc-link',
11905
- 'data-sidebar': doc[1]
11906
- };
10591
+ const doc = href.match(/^doc:([-_a-zA-Z0-9#]*)$/);
10592
+ if (!doc)
10593
+ return false;
10594
+ return {
10595
+ className: 'doc-link',
10596
+ 'data-sidebar': doc[1],
10597
+ };
11907
10598
  }
11908
10599
  function Anchor(props) {
11909
- var children = props.children,
11910
- href = props.href,
11911
- target = props.target,
11912
- title = props.title,
11913
- attrs = _objectWithoutProperties(props, _excluded);
11914
- var baseUrl = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useContext)(BaseUrl);
11915
- return (
11916
- /*#__PURE__*/
10600
+ const { children, href = '', target = '', title = '', ...attrs } = props;
10601
+ const baseUrl = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useContext)(BaseUrl);
10602
+ return (
11917
10603
  // eslint-disable-next-line react/jsx-props-no-spreading
11918
- external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("a", _extends({}, attrs, {
11919
- href: getHref(href, baseUrl),
11920
- target: target,
11921
- title: title
11922
- }, docLink(href)), children)
11923
- );
10604
+ external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("a", { ...attrs, href: getHref(href, baseUrl), target: target, title: title, ...docLink(href) }, children));
11924
10605
  }
11925
- Anchor.propTypes = {
11926
- baseUrl: prop_types.string,
11927
- children: prop_types.node.isRequired,
11928
- download: prop_types.string,
11929
- href: prop_types.string,
11930
- target: prop_types.string,
11931
- title: prop_types.string
11932
- };
11933
- Anchor.defaultProps = {
11934
- baseUrl: '/',
11935
- href: '',
11936
- target: '',
11937
- title: ''
11938
- };
11939
10606
  /* harmony default export */ const components_Anchor = (Anchor);
10607
+
11940
10608
  ;// ./node_modules/emoji-regex/index.mjs
11941
10609
  /* harmony default export */ const emoji_regex = (() => {
11942
10610
  // https://mths.be/emoji
@@ -11974,14 +10642,14 @@ const defaultIcons = {
11974
10642
  const Callout = (props) => {
11975
10643
  const { attributes, theme = 'default', empty } = props;
11976
10644
  const children = external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.Children.toArray(props.children);
11977
- const icon = props.icon || defaultIcons[theme] || '❗';
11978
- const isEmoji = emoji_regex().test(icon);
10645
+ const icon = props.icon;
10646
+ const isEmoji = icon && emoji_regex().test(icon);
11979
10647
  const heading = empty ? external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createElement("p", { className: 'callout-heading empty' }) : children[0];
11980
10648
  return (
11981
10649
  // @ts-expect-error -- theme is not a valid attribute
11982
10650
  // eslint-disable-next-line react/jsx-props-no-spreading, react/no-unknown-property
11983
- external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createElement("blockquote", { ...attributes, className: `callout callout_${theme}`, theme: icon },
11984
- isEmoji ? (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createElement("span", { className: "callout-icon" }, icon)) : (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createElement("span", { className: `callout-icon callout-icon_fa ${icon}` })),
10651
+ external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createElement("blockquote", { ...attributes, className: `callout callout_${theme}`, theme: icon || theme },
10652
+ icon ? (isEmoji ? (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createElement("span", { className: "callout-icon" }, icon)) : (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createElement("span", { className: `callout-icon callout-icon_fa ${icon}` }))) : null,
11985
10653
  heading,
11986
10654
  children.slice(1)));
11987
10655
  };
@@ -12179,7 +10847,7 @@ const Embed = ({ lazy = true, url, html, providerName, providerUrl, title, ifram
12179
10847
  /* harmony default export */ const components_Embed = (Embed);
12180
10848
 
12181
10849
  // EXTERNAL MODULE: external "@tippyjs/react"
12182
- var react_ = __webpack_require__(6570);
10850
+ var react_ = __webpack_require__(4189);
12183
10851
  var react_default = /*#__PURE__*/__webpack_require__.n(react_);
12184
10852
  ;// ./contexts/GlossaryTerms.ts
12185
10853
 
@@ -12714,6 +11382,12 @@ visibility = 'public', action = 'collection/fork', }) => {
12714
11382
 
12715
11383
 
12716
11384
 
11385
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
11386
+ var es_symbol = __webpack_require__(3534);
11387
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
11388
+ var es_symbol_description = __webpack_require__(590);
11389
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.iterator.js
11390
+ var es_symbol_iterator = __webpack_require__(4216);
12717
11391
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.to-primitive.js
12718
11392
  var es_symbol_to_primitive = __webpack_require__(6611);
12719
11393
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.filter.js
@@ -12722,6 +11396,8 @@ var es_array_filter = __webpack_require__(17);
12722
11396
  var es_array_for_each = __webpack_require__(8476);
12723
11397
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.includes.js
12724
11398
  var es_array_includes = __webpack_require__(7746);
11399
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.iterator.js
11400
+ var es_array_iterator = __webpack_require__(8665);
12725
11401
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.date.to-primitive.js
12726
11402
  var es_date_to_primitive = __webpack_require__(7787);
12727
11403
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.number.constructor.js
@@ -12736,10 +11412,16 @@ var es_object_get_own_property_descriptor = __webpack_require__(678);
12736
11412
  var es_object_get_own_property_descriptors = __webpack_require__(3101);
12737
11413
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.keys.js
12738
11414
  var es_object_keys = __webpack_require__(7899);
11415
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
11416
+ var es_object_to_string = __webpack_require__(5086);
12739
11417
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
12740
11418
  var es_string_includes = __webpack_require__(3148);
11419
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.iterator.js
11420
+ var es_string_iterator = __webpack_require__(9979);
12741
11421
  // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.for-each.js
12742
11422
  var web_dom_collections_for_each = __webpack_require__(8379);
11423
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.iterator.js
11424
+ var web_dom_collections_iterator = __webpack_require__(4602);
12743
11425
  ;// ./options.js
12744
11426
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
12745
11427
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
@@ -70599,7 +69281,7 @@ const coerceJsxToMd = ({ components = {}, html = false } = {}) => (node, index,
70599
69281
  else if (node.name === 'Callout') {
70600
69282
  const attrs = getAttrs(node);
70601
69283
  const { empty } = attrs;
70602
- const icon = attrs.icon || defaultIcons[attrs.theme];
69284
+ const icon = attrs.icon;
70603
69285
  const theme = attrs.theme || themes[icon] || 'default';
70604
69286
  const mdNode = {
70605
69287
  children: node.children,