@opengeoweb/form-fields 9.13.0 → 9.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.esm.js +182 -141
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -17,7 +17,7 @@ var check = function (it) {
17
17
  };
18
18
 
19
19
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
20
- var global$i =
20
+ var global$h =
21
21
  // eslint-disable-next-line es/no-global-this -- safe
22
22
  check(typeof globalThis == 'object' && globalThis) ||
23
23
  check(typeof window == 'object' && window) ||
@@ -57,10 +57,10 @@ var functionBindNative = !fails$j(function () {
57
57
 
58
58
  var NATIVE_BIND$1 = functionBindNative;
59
59
 
60
- var call$b = Function.prototype.call;
60
+ var call$c = Function.prototype.call;
61
61
 
62
- var functionCall = NATIVE_BIND$1 ? call$b.bind(call$b) : function () {
63
- return call$b.apply(call$b, arguments);
62
+ var functionCall = NATIVE_BIND$1 ? call$c.bind(call$c) : function () {
63
+ return call$c.apply(call$c, arguments);
64
64
  };
65
65
 
66
66
  var objectPropertyIsEnumerable = {};
@@ -91,22 +91,22 @@ var createPropertyDescriptor$3 = function (bitmap, value) {
91
91
  var NATIVE_BIND = functionBindNative;
92
92
 
93
93
  var FunctionPrototype$1 = Function.prototype;
94
- var call$a = FunctionPrototype$1.call;
95
- var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$a, call$a);
94
+ var call$b = FunctionPrototype$1.call;
95
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$b, call$b);
96
96
 
97
97
  var functionUncurryThis = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
98
98
  return function () {
99
- return call$a.apply(fn, arguments);
99
+ return call$b.apply(fn, arguments);
100
100
  };
101
101
  };
102
102
 
103
103
  var uncurryThis$g = functionUncurryThis;
104
104
 
105
- var toString$9 = uncurryThis$g({}.toString);
105
+ var toString$a = uncurryThis$g({}.toString);
106
106
  var stringSlice$3 = uncurryThis$g(''.slice);
107
107
 
108
108
  var classofRaw$1 = function (it) {
109
- return stringSlice$3(toString$9(it), 8, -1);
109
+ return stringSlice$3(toString$a(it), 8, -1);
110
110
  };
111
111
 
112
112
  var uncurryThis$f = functionUncurryThis;
@@ -137,17 +137,17 @@ var $TypeError$9 = TypeError;
137
137
 
138
138
  // `RequireObjectCoercible` abstract operation
139
139
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
140
- var requireObjectCoercible$6 = function (it) {
140
+ var requireObjectCoercible$7 = function (it) {
141
141
  if (isNullOrUndefined$2(it)) throw new $TypeError$9("Can't call method on " + it);
142
142
  return it;
143
143
  };
144
144
 
145
145
  // toObject with fallback for non-array-like ES3 strings
146
146
  var IndexedObject$2 = indexedObject;
147
- var requireObjectCoercible$5 = requireObjectCoercible$6;
147
+ var requireObjectCoercible$6 = requireObjectCoercible$7;
148
148
 
149
149
  var toIndexedObject$5 = function (it) {
150
- return IndexedObject$2(requireObjectCoercible$5(it));
150
+ return IndexedObject$2(requireObjectCoercible$6(it));
151
151
  };
152
152
 
153
153
  // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
@@ -156,27 +156,27 @@ var documentAll = typeof document == 'object' && document.all;
156
156
  // `IsCallable` abstract operation
157
157
  // https://tc39.es/ecma262/#sec-iscallable
158
158
  // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
159
- var isCallable$f = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
159
+ var isCallable$g = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
160
160
  return typeof argument == 'function' || argument === documentAll;
161
161
  } : function (argument) {
162
162
  return typeof argument == 'function';
163
163
  };
164
164
 
165
- var isCallable$e = isCallable$f;
165
+ var isCallable$f = isCallable$g;
166
166
 
167
- var isObject$8 = function (it) {
168
- return typeof it == 'object' ? it !== null : isCallable$e(it);
167
+ var isObject$9 = function (it) {
168
+ return typeof it == 'object' ? it !== null : isCallable$f(it);
169
169
  };
170
170
 
171
- var global$h = global$i;
172
- var isCallable$d = isCallable$f;
171
+ var global$g = global$h;
172
+ var isCallable$e = isCallable$g;
173
173
 
174
174
  var aFunction = function (argument) {
175
- return isCallable$d(argument) ? argument : undefined;
175
+ return isCallable$e(argument) ? argument : undefined;
176
176
  };
177
177
 
178
178
  var getBuiltIn$3 = function (namespace, method) {
179
- return arguments.length < 2 ? aFunction(global$h[namespace]) : global$h[namespace] && global$h[namespace][method];
179
+ return arguments.length < 2 ? aFunction(global$g[namespace]) : global$g[namespace] && global$g[namespace][method];
180
180
  };
181
181
 
182
182
  var uncurryThis$e = functionUncurryThis;
@@ -185,11 +185,11 @@ var objectIsPrototypeOf = uncurryThis$e({}.isPrototypeOf);
185
185
 
186
186
  var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
187
187
 
188
- var global$g = global$i;
188
+ var global$f = global$h;
189
189
  var userAgent = engineUserAgent;
190
190
 
191
- var process = global$g.process;
192
- var Deno = global$g.Deno;
191
+ var process = global$f.process;
192
+ var Deno = global$f.Deno;
193
193
  var versions = process && process.versions || Deno && Deno.version;
194
194
  var v8 = versions && versions.v8;
195
195
  var match, version;
@@ -216,9 +216,9 @@ var engineV8Version = version;
216
216
  /* eslint-disable es/no-symbol -- required for testing */
217
217
  var V8_VERSION = engineV8Version;
218
218
  var fails$h = fails$l;
219
- var global$f = global$i;
219
+ var global$e = global$h;
220
220
 
221
- var $String$5 = global$f.String;
221
+ var $String$5 = global$e.String;
222
222
 
223
223
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
224
224
  var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$h(function () {
@@ -240,7 +240,7 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
240
240
  && typeof Symbol.iterator == 'symbol';
241
241
 
242
242
  var getBuiltIn$2 = getBuiltIn$3;
243
- var isCallable$c = isCallable$f;
243
+ var isCallable$d = isCallable$g;
244
244
  var isPrototypeOf$1 = objectIsPrototypeOf;
245
245
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
246
246
 
@@ -250,7 +250,7 @@ var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
250
250
  return typeof it == 'symbol';
251
251
  } : function (it) {
252
252
  var $Symbol = getBuiltIn$2('Symbol');
253
- return isCallable$c($Symbol) && isPrototypeOf$1($Symbol.prototype, $Object$3(it));
253
+ return isCallable$d($Symbol) && isPrototypeOf$1($Symbol.prototype, $Object$3(it));
254
254
  };
255
255
 
256
256
  var $String$4 = String;
@@ -263,14 +263,14 @@ var tryToString$1 = function (argument) {
263
263
  }
264
264
  };
265
265
 
266
- var isCallable$b = isCallable$f;
266
+ var isCallable$c = isCallable$g;
267
267
  var tryToString = tryToString$1;
268
268
 
269
269
  var $TypeError$8 = TypeError;
270
270
 
271
271
  // `Assert: IsCallable(argument) is true`
272
272
  var aCallable$3 = function (argument) {
273
- if (isCallable$b(argument)) return argument;
273
+ if (isCallable$c(argument)) return argument;
274
274
  throw new $TypeError$8(tryToString(argument) + ' is not a function');
275
275
  };
276
276
 
@@ -284,9 +284,9 @@ var getMethod$2 = function (V, P) {
284
284
  return isNullOrUndefined$1(func) ? undefined : aCallable$2(func);
285
285
  };
286
286
 
287
- var call$9 = functionCall;
288
- var isCallable$a = isCallable$f;
289
- var isObject$7 = isObject$8;
287
+ var call$a = functionCall;
288
+ var isCallable$b = isCallable$g;
289
+ var isObject$8 = isObject$9;
290
290
 
291
291
  var $TypeError$7 = TypeError;
292
292
 
@@ -294,55 +294,55 @@ var $TypeError$7 = TypeError;
294
294
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
295
295
  var ordinaryToPrimitive$1 = function (input, pref) {
296
296
  var fn, val;
297
- if (pref === 'string' && isCallable$a(fn = input.toString) && !isObject$7(val = call$9(fn, input))) return val;
298
- if (isCallable$a(fn = input.valueOf) && !isObject$7(val = call$9(fn, input))) return val;
299
- if (pref !== 'string' && isCallable$a(fn = input.toString) && !isObject$7(val = call$9(fn, input))) return val;
297
+ if (pref === 'string' && isCallable$b(fn = input.toString) && !isObject$8(val = call$a(fn, input))) return val;
298
+ if (isCallable$b(fn = input.valueOf) && !isObject$8(val = call$a(fn, input))) return val;
299
+ if (pref !== 'string' && isCallable$b(fn = input.toString) && !isObject$8(val = call$a(fn, input))) return val;
300
300
  throw new $TypeError$7("Can't convert object to primitive value");
301
301
  };
302
302
 
303
- var shared$4 = {exports: {}};
303
+ var sharedStore = {exports: {}};
304
304
 
305
- var global$e = global$i;
305
+ var global$d = global$h;
306
306
 
307
307
  // eslint-disable-next-line es/no-object-defineproperty -- safe
308
308
  var defineProperty$5 = Object.defineProperty;
309
309
 
310
310
  var defineGlobalProperty$3 = function (key, value) {
311
311
  try {
312
- defineProperty$5(global$e, key, { value: value, configurable: true, writable: true });
312
+ defineProperty$5(global$d, key, { value: value, configurable: true, writable: true });
313
313
  } catch (error) {
314
- global$e[key] = value;
314
+ global$d[key] = value;
315
315
  } return value;
316
316
  };
317
317
 
318
- var global$d = global$i;
318
+ var globalThis$1 = global$h;
319
319
  var defineGlobalProperty$2 = defineGlobalProperty$3;
320
320
 
321
321
  var SHARED = '__core-js_shared__';
322
- var store$3 = global$d[SHARED] || defineGlobalProperty$2(SHARED, {});
323
-
324
- var sharedStore = store$3;
325
-
326
- var store$2 = sharedStore;
322
+ var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
327
323
 
328
- (shared$4.exports = function (key, value) {
329
- return store$2[key] || (store$2[key] = value !== undefined ? value : {});
330
- })('versions', []).push({
331
- version: '3.35.1',
324
+ (store$3.versions || (store$3.versions = [])).push({
325
+ version: '3.36.1',
332
326
  mode: 'global',
333
327
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
334
- license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE',
328
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
335
329
  source: 'https://github.com/zloirock/core-js'
336
330
  });
337
331
 
338
- var requireObjectCoercible$4 = requireObjectCoercible$6;
332
+ var store$2 = sharedStore.exports;
333
+
334
+ var shared$4 = function (key, value) {
335
+ return store$2[key] || (store$2[key] = value || {});
336
+ };
337
+
338
+ var requireObjectCoercible$5 = requireObjectCoercible$7;
339
339
 
340
340
  var $Object$2 = Object;
341
341
 
342
342
  // `ToObject` abstract operation
343
343
  // https://tc39.es/ecma262/#sec-toobject
344
344
  var toObject$4 = function (argument) {
345
- return $Object$2(requireObjectCoercible$4(argument));
345
+ return $Object$2(requireObjectCoercible$5(argument));
346
346
  };
347
347
 
348
348
  var uncurryThis$d = functionUncurryThis;
@@ -361,14 +361,14 @@ var uncurryThis$c = functionUncurryThis;
361
361
 
362
362
  var id = 0;
363
363
  var postfix = Math.random();
364
- var toString$8 = uncurryThis$c(1.0.toString);
364
+ var toString$9 = uncurryThis$c(1.0.toString);
365
365
 
366
366
  var uid$2 = function (key) {
367
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$8(++id + postfix, 36);
367
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$9(++id + postfix, 36);
368
368
  };
369
369
 
370
- var global$c = global$i;
371
- var shared$3 = shared$4.exports;
370
+ var global$c = global$h;
371
+ var shared$3 = shared$4;
372
372
  var hasOwn$9 = hasOwnProperty_1;
373
373
  var uid$1 = uid$2;
374
374
  var NATIVE_SYMBOL = symbolConstructorDetection;
@@ -386,8 +386,8 @@ var wellKnownSymbol$b = function (name) {
386
386
  } return WellKnownSymbolsStore[name];
387
387
  };
388
388
 
389
- var call$8 = functionCall;
390
- var isObject$6 = isObject$8;
389
+ var call$9 = functionCall;
390
+ var isObject$7 = isObject$9;
391
391
  var isSymbol$1 = isSymbol$2;
392
392
  var getMethod$1 = getMethod$2;
393
393
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
@@ -399,13 +399,13 @@ var TO_PRIMITIVE = wellKnownSymbol$a('toPrimitive');
399
399
  // `ToPrimitive` abstract operation
400
400
  // https://tc39.es/ecma262/#sec-toprimitive
401
401
  var toPrimitive$1 = function (input, pref) {
402
- if (!isObject$6(input) || isSymbol$1(input)) return input;
402
+ if (!isObject$7(input) || isSymbol$1(input)) return input;
403
403
  var exoticToPrim = getMethod$1(input, TO_PRIMITIVE);
404
404
  var result;
405
405
  if (exoticToPrim) {
406
406
  if (pref === undefined) pref = 'default';
407
- result = call$8(exoticToPrim, input, pref);
408
- if (!isObject$6(result) || isSymbol$1(result)) return result;
407
+ result = call$9(exoticToPrim, input, pref);
408
+ if (!isObject$7(result) || isSymbol$1(result)) return result;
409
409
  throw new $TypeError$6("Can't convert object to primitive value");
410
410
  }
411
411
  if (pref === undefined) pref = 'number';
@@ -422,12 +422,12 @@ var toPropertyKey$2 = function (argument) {
422
422
  return isSymbol(key) ? key : key + '';
423
423
  };
424
424
 
425
- var global$b = global$i;
426
- var isObject$5 = isObject$8;
425
+ var global$b = global$h;
426
+ var isObject$6 = isObject$9;
427
427
 
428
428
  var document$1 = global$b.document;
429
429
  // typeof document.createElement is 'object' in old IE
430
- var EXISTS$1 = isObject$5(document$1) && isObject$5(document$1.createElement);
430
+ var EXISTS$1 = isObject$6(document$1) && isObject$6(document$1.createElement);
431
431
 
432
432
  var documentCreateElement$2 = function (it) {
433
433
  return EXISTS$1 ? document$1.createElement(it) : {};
@@ -446,7 +446,7 @@ var ie8DomDefine = !DESCRIPTORS$9 && !fails$g(function () {
446
446
  });
447
447
 
448
448
  var DESCRIPTORS$8 = descriptors;
449
- var call$7 = functionCall;
449
+ var call$8 = functionCall;
450
450
  var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
451
451
  var createPropertyDescriptor$2 = createPropertyDescriptor$3;
452
452
  var toIndexedObject$4 = toIndexedObject$5;
@@ -465,7 +465,7 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$8 ? $getOwnPropertyDescriptor$1 :
465
465
  if (IE8_DOM_DEFINE$1) try {
466
466
  return $getOwnPropertyDescriptor$1(O, P);
467
467
  } catch (error) { /* empty */ }
468
- if (hasOwn$8(O, P)) return createPropertyDescriptor$2(!call$7(propertyIsEnumerableModule$1.f, O, P), O[P]);
468
+ if (hasOwn$8(O, P)) return createPropertyDescriptor$2(!call$8(propertyIsEnumerableModule$1.f, O, P), O[P]);
469
469
  };
470
470
 
471
471
  var objectDefineProperty = {};
@@ -483,14 +483,14 @@ var v8PrototypeDefineBug = DESCRIPTORS$7 && fails$f(function () {
483
483
  }).prototype !== 42;
484
484
  });
485
485
 
486
- var isObject$4 = isObject$8;
486
+ var isObject$5 = isObject$9;
487
487
 
488
488
  var $String$3 = String;
489
489
  var $TypeError$5 = TypeError;
490
490
 
491
491
  // `Assert: Type(argument) is Object`
492
492
  var anObject$9 = function (argument) {
493
- if (isObject$4(argument)) return argument;
493
+ if (isObject$5(argument)) return argument;
494
494
  throw new $TypeError$5($String$3(argument) + ' is not an object');
495
495
  };
496
496
 
@@ -570,13 +570,13 @@ var functionName = {
570
570
  };
571
571
 
572
572
  var uncurryThis$b = functionUncurryThis;
573
- var isCallable$9 = isCallable$f;
574
- var store$1 = sharedStore;
573
+ var isCallable$a = isCallable$g;
574
+ var store$1 = sharedStore.exports;
575
575
 
576
576
  var functionToString = uncurryThis$b(Function.toString);
577
577
 
578
578
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
579
- if (!isCallable$9(store$1.inspectSource)) {
579
+ if (!isCallable$a(store$1.inspectSource)) {
580
580
  store$1.inspectSource = function (it) {
581
581
  return functionToString(it);
582
582
  };
@@ -584,14 +584,14 @@ if (!isCallable$9(store$1.inspectSource)) {
584
584
 
585
585
  var inspectSource$1 = store$1.inspectSource;
586
586
 
587
- var global$a = global$i;
588
- var isCallable$8 = isCallable$f;
587
+ var global$a = global$h;
588
+ var isCallable$9 = isCallable$g;
589
589
 
590
590
  var WeakMap$1 = global$a.WeakMap;
591
591
 
592
- var weakMapBasicDetection = isCallable$8(WeakMap$1) && /native code/.test(String(WeakMap$1));
592
+ var weakMapBasicDetection = isCallable$9(WeakMap$1) && /native code/.test(String(WeakMap$1));
593
593
 
594
- var shared$2 = shared$4.exports;
594
+ var shared$2 = shared$4;
595
595
  var uid = uid$2;
596
596
 
597
597
  var keys = shared$2('keys');
@@ -603,11 +603,11 @@ var sharedKey$3 = function (key) {
603
603
  var hiddenKeys$4 = {};
604
604
 
605
605
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
606
- var global$9 = global$i;
607
- var isObject$3 = isObject$8;
606
+ var global$9 = global$h;
607
+ var isObject$4 = isObject$9;
608
608
  var createNonEnumerableProperty$4 = createNonEnumerableProperty$5;
609
609
  var hasOwn$6 = hasOwnProperty_1;
610
- var shared$1 = sharedStore;
610
+ var shared$1 = sharedStore.exports;
611
611
  var sharedKey$2 = sharedKey$3;
612
612
  var hiddenKeys$3 = hiddenKeys$4;
613
613
 
@@ -623,7 +623,7 @@ var enforce = function (it) {
623
623
  var getterFor = function (TYPE) {
624
624
  return function (it) {
625
625
  var state;
626
- if (!isObject$3(it) || (state = get(it)).type !== TYPE) {
626
+ if (!isObject$4(it) || (state = get(it)).type !== TYPE) {
627
627
  throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
628
628
  } return state;
629
629
  };
@@ -675,7 +675,7 @@ var internalState = {
675
675
 
676
676
  var uncurryThis$a = functionUncurryThis;
677
677
  var fails$e = fails$l;
678
- var isCallable$7 = isCallable$f;
678
+ var isCallable$8 = isCallable$g;
679
679
  var hasOwn$5 = hasOwnProperty_1;
680
680
  var DESCRIPTORS$3 = descriptors;
681
681
  var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
@@ -725,10 +725,10 @@ var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
725
725
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
726
726
  // eslint-disable-next-line no-extend-native -- required
727
727
  Function.prototype.toString = makeBuiltIn$1(function toString() {
728
- return isCallable$7(this) && getInternalState$2(this).source || inspectSource(this);
728
+ return isCallable$8(this) && getInternalState$2(this).source || inspectSource(this);
729
729
  }, 'toString');
730
730
 
731
- var isCallable$6 = isCallable$f;
731
+ var isCallable$7 = isCallable$g;
732
732
  var definePropertyModule$2 = objectDefineProperty;
733
733
  var makeBuiltIn = makeBuiltIn$2.exports;
734
734
  var defineGlobalProperty$1 = defineGlobalProperty$3;
@@ -737,7 +737,7 @@ var defineBuiltIn$5 = function (O, key, value, options) {
737
737
  if (!options) options = {};
738
738
  var simple = options.enumerable;
739
739
  var name = options.name !== undefined ? options.name : key;
740
- if (isCallable$6(value)) makeBuiltIn(value, name, options);
740
+ if (isCallable$7(value)) makeBuiltIn(value, name, options);
741
741
  if (options.global) {
742
742
  if (simple) O[key] = value;
743
743
  else defineGlobalProperty$1(key, value);
@@ -820,6 +820,7 @@ var createMethod$3 = function (IS_INCLUDES) {
820
820
  return function ($this, el, fromIndex) {
821
821
  var O = toIndexedObject$3($this);
822
822
  var length = lengthOfArrayLike$1(O);
823
+ if (length === 0) return !IS_INCLUDES && -1;
823
824
  var index = toAbsoluteIndex(fromIndex, length);
824
825
  var value;
825
826
  // Array#includes uses SameValueZero equality algorithm
@@ -926,7 +927,7 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
926
927
  };
927
928
 
928
929
  var fails$d = fails$l;
929
- var isCallable$5 = isCallable$f;
930
+ var isCallable$6 = isCallable$g;
930
931
 
931
932
  var replacement = /#|\.prototype\./;
932
933
 
@@ -934,7 +935,7 @@ var isForced$1 = function (feature, detection) {
934
935
  var value = data[normalize(feature)];
935
936
  return value === POLYFILL ? true
936
937
  : value === NATIVE ? false
937
- : isCallable$5(detection) ? fails$d(detection)
938
+ : isCallable$6(detection) ? fails$d(detection)
938
939
  : !!detection;
939
940
  };
940
941
 
@@ -948,7 +949,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
948
949
 
949
950
  var isForced_1 = isForced$1;
950
951
 
951
- var global$8 = global$i;
952
+ var global$8 = global$h;
952
953
  var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
953
954
  var createNonEnumerableProperty$3 = createNonEnumerableProperty$5;
954
955
  var defineBuiltIn$4 = defineBuiltIn$5;
@@ -1015,7 +1016,7 @@ var objectKeys$2 = Object.keys || function keys(O) {
1015
1016
 
1016
1017
  var DESCRIPTORS$2 = descriptors;
1017
1018
  var uncurryThis$7 = functionUncurryThis;
1018
- var call$6 = functionCall;
1019
+ var call$7 = functionCall;
1019
1020
  var fails$c = fails$l;
1020
1021
  var objectKeys$1 = objectKeys$2;
1021
1022
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
@@ -1065,18 +1066,18 @@ var objectAssign = !$assign || fails$c(function () {
1065
1066
  var key;
1066
1067
  while (length > j) {
1067
1068
  key = keys[j++];
1068
- if (!DESCRIPTORS$2 || call$6(propertyIsEnumerable, S, key)) T[key] = S[key];
1069
+ if (!DESCRIPTORS$2 || call$7(propertyIsEnumerable, S, key)) T[key] = S[key];
1069
1070
  }
1070
1071
  } return T;
1071
1072
  } : $assign;
1072
1073
 
1073
- var $$8 = _export;
1074
+ var $$9 = _export;
1074
1075
  var assign = objectAssign;
1075
1076
 
1076
1077
  // `Object.assign` method
1077
1078
  // https://tc39.es/ecma262/#sec-object.assign
1078
1079
  // eslint-disable-next-line es/no-object-assign -- required for testing
1079
- $$8({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1080
+ $$9({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1080
1081
  assign: assign
1081
1082
  });
1082
1083
 
@@ -1122,7 +1123,7 @@ test[TO_STRING_TAG$2] = 'z';
1122
1123
  var toStringTagSupport = String(test) === '[object z]';
1123
1124
 
1124
1125
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1125
- var isCallable$4 = isCallable$f;
1126
+ var isCallable$5 = isCallable$g;
1126
1127
  var classofRaw = classofRaw$1;
1127
1128
  var wellKnownSymbol$8 = wellKnownSymbol$b;
1128
1129
 
@@ -1148,14 +1149,14 @@ var classof$4 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1148
1149
  // builtinTag case
1149
1150
  : CORRECT_ARGUMENTS ? classofRaw(O)
1150
1151
  // ES3 arguments fallback
1151
- : (result = classofRaw(O)) === 'Object' && isCallable$4(O.callee) ? 'Arguments' : result;
1152
+ : (result = classofRaw(O)) === 'Object' && isCallable$5(O.callee) ? 'Arguments' : result;
1152
1153
  };
1153
1154
 
1154
1155
  var classof$3 = classof$4;
1155
1156
 
1156
1157
  var $String$1 = String;
1157
1158
 
1158
- var toString$7 = function (argument) {
1159
+ var toString$8 = function (argument) {
1159
1160
  if (classof$3(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
1160
1161
  return $String$1(argument);
1161
1162
  };
@@ -1165,8 +1166,8 @@ var whitespaces$4 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u200
1165
1166
  '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
1166
1167
 
1167
1168
  var uncurryThis$6 = functionUncurryThis;
1168
- var requireObjectCoercible$3 = requireObjectCoercible$6;
1169
- var toString$6 = toString$7;
1169
+ var requireObjectCoercible$4 = requireObjectCoercible$7;
1170
+ var toString$7 = toString$8;
1170
1171
  var whitespaces$3 = whitespaces$4;
1171
1172
 
1172
1173
  var replace$1 = uncurryThis$6(''.replace);
@@ -1176,7 +1177,7 @@ var rtrim = RegExp('(^|[^' + whitespaces$3 + '])[' + whitespaces$3 + ']+$');
1176
1177
  // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
1177
1178
  var createMethod$2 = function (TYPE) {
1178
1179
  return function ($this) {
1179
- var string = toString$6(requireObjectCoercible$3($this));
1180
+ var string = toString$7(requireObjectCoercible$4($this));
1180
1181
  if (TYPE & 1) string = replace$1(string, ltrim, '');
1181
1182
  if (TYPE & 2) string = replace$1(string, rtrim, '$1');
1182
1183
  return string;
@@ -1195,10 +1196,10 @@ var stringTrim = {
1195
1196
  trim: createMethod$2(3)
1196
1197
  };
1197
1198
 
1198
- var global$7 = global$i;
1199
+ var global$7 = global$h;
1199
1200
  var fails$b = fails$l;
1200
1201
  var uncurryThis$5 = functionUncurryThis;
1201
- var toString$5 = toString$7;
1202
+ var toString$6 = toString$8;
1202
1203
  var trim$1 = stringTrim.trim;
1203
1204
  var whitespaces$2 = whitespaces$4;
1204
1205
 
@@ -1213,17 +1214,17 @@ var FORCED$2 = 1 / $parseFloat$1(whitespaces$2 + '-0') !== -Infinity
1213
1214
  // `parseFloat` method
1214
1215
  // https://tc39.es/ecma262/#sec-parsefloat-string
1215
1216
  var numberParseFloat = FORCED$2 ? function parseFloat(string) {
1216
- var trimmedString = trim$1(toString$5(string));
1217
+ var trimmedString = trim$1(toString$6(string));
1217
1218
  var result = $parseFloat$1(trimmedString);
1218
1219
  return result === 0 && charAt$3(trimmedString, 0) === '-' ? -0 : result;
1219
1220
  } : $parseFloat$1;
1220
1221
 
1221
- var $$7 = _export;
1222
+ var $$8 = _export;
1222
1223
  var $parseFloat = numberParseFloat;
1223
1224
 
1224
1225
  // `parseFloat` method
1225
1226
  // https://tc39.es/ecma262/#sec-parsefloat-string
1226
- $$7({ global: true, forced: parseFloat !== $parseFloat }, {
1227
+ $$8({ global: true, forced: parseFloat !== $parseFloat }, {
1227
1228
  parseFloat: $parseFloat
1228
1229
  });
1229
1230
 
@@ -1246,7 +1247,7 @@ var regexpFlags$1 = function () {
1246
1247
  };
1247
1248
 
1248
1249
  var fails$a = fails$l;
1249
- var global$6 = global$i;
1250
+ var global$6 = global$h;
1250
1251
 
1251
1252
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
1252
1253
  var $RegExp$2 = global$6.RegExp;
@@ -1388,7 +1389,7 @@ var objectCreate = Object.create || function create(O, Properties) {
1388
1389
  };
1389
1390
 
1390
1391
  var fails$9 = fails$l;
1391
- var global$5 = global$i;
1392
+ var global$5 = global$h;
1392
1393
 
1393
1394
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
1394
1395
  var $RegExp$1 = global$5.RegExp;
@@ -1399,7 +1400,7 @@ var regexpUnsupportedDotAll = fails$9(function () {
1399
1400
  });
1400
1401
 
1401
1402
  var fails$8 = fails$l;
1402
- var global$4 = global$i;
1403
+ var global$4 = global$h;
1403
1404
 
1404
1405
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
1405
1406
  var $RegExp = global$4.RegExp;
@@ -1412,12 +1413,12 @@ var regexpUnsupportedNcg = fails$8(function () {
1412
1413
 
1413
1414
  /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
1414
1415
  /* eslint-disable regexp/no-useless-quantifier -- testing */
1415
- var call$5 = functionCall;
1416
+ var call$6 = functionCall;
1416
1417
  var uncurryThis$4 = functionUncurryThis;
1417
- var toString$4 = toString$7;
1418
+ var toString$5 = toString$8;
1418
1419
  var regexpFlags = regexpFlags$1;
1419
1420
  var stickyHelpers = regexpStickyHelpers;
1420
- var shared = shared$4.exports;
1421
+ var shared = shared$4;
1421
1422
  var create$2 = objectCreate;
1422
1423
  var getInternalState$1 = internalState.get;
1423
1424
  var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
@@ -1434,8 +1435,8 @@ var stringSlice$1 = uncurryThis$4(''.slice);
1434
1435
  var UPDATES_LAST_INDEX_WRONG = (function () {
1435
1436
  var re1 = /a/;
1436
1437
  var re2 = /b*/g;
1437
- call$5(nativeExec, re1, 'a');
1438
- call$5(nativeExec, re2, 'a');
1438
+ call$6(nativeExec, re1, 'a');
1439
+ call$6(nativeExec, re2, 'a');
1439
1440
  return re1.lastIndex !== 0 || re2.lastIndex !== 0;
1440
1441
  })();
1441
1442
 
@@ -1450,20 +1451,20 @@ if (PATCH) {
1450
1451
  patchedExec = function exec(string) {
1451
1452
  var re = this;
1452
1453
  var state = getInternalState$1(re);
1453
- var str = toString$4(string);
1454
+ var str = toString$5(string);
1454
1455
  var raw = state.raw;
1455
1456
  var result, reCopy, lastIndex, match, i, object, group;
1456
1457
 
1457
1458
  if (raw) {
1458
1459
  raw.lastIndex = re.lastIndex;
1459
- result = call$5(patchedExec, raw, str);
1460
+ result = call$6(patchedExec, raw, str);
1460
1461
  re.lastIndex = raw.lastIndex;
1461
1462
  return result;
1462
1463
  }
1463
1464
 
1464
1465
  var groups = state.groups;
1465
1466
  var sticky = UNSUPPORTED_Y && re.sticky;
1466
- var flags = call$5(regexpFlags, re);
1467
+ var flags = call$6(regexpFlags, re);
1467
1468
  var source = re.source;
1468
1469
  var charsAdded = 0;
1469
1470
  var strCopy = str;
@@ -1491,7 +1492,7 @@ if (PATCH) {
1491
1492
  }
1492
1493
  if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
1493
1494
 
1494
- match = call$5(nativeExec, sticky ? reCopy : re, strCopy);
1495
+ match = call$6(nativeExec, sticky ? reCopy : re, strCopy);
1495
1496
 
1496
1497
  if (sticky) {
1497
1498
  if (match) {
@@ -1506,7 +1507,7 @@ if (PATCH) {
1506
1507
  if (NPCG_INCLUDED && match && match.length > 1) {
1507
1508
  // Fix browsers whose `exec` methods don't consistently return `undefined`
1508
1509
  // for NPCG, like IE8. NOTE: This doesn't work for /(.?)?/
1509
- call$5(nativeReplace, match[0], reCopy, function () {
1510
+ call$6(nativeReplace, match[0], reCopy, function () {
1510
1511
  for (i = 1; i < arguments.length - 2; i++) {
1511
1512
  if (arguments[i] === undefined) match[i] = undefined;
1512
1513
  }
@@ -1527,15 +1528,50 @@ if (PATCH) {
1527
1528
 
1528
1529
  var regexpExec$2 = patchedExec;
1529
1530
 
1530
- var $$6 = _export;
1531
+ var $$7 = _export;
1531
1532
  var exec$1 = regexpExec$2;
1532
1533
 
1533
1534
  // `RegExp.prototype.exec` method
1534
1535
  // https://tc39.es/ecma262/#sec-regexp.prototype.exec
1535
- $$6({ target: 'RegExp', proto: true, forced: /./.exec !== exec$1 }, {
1536
+ $$7({ target: 'RegExp', proto: true, forced: /./.exec !== exec$1 }, {
1536
1537
  exec: exec$1
1537
1538
  });
1538
1539
 
1540
+ // TODO: Remove from `core-js@4` since it's moved to entry points
1541
+
1542
+ var $$6 = _export;
1543
+ var call$5 = functionCall;
1544
+ var isCallable$4 = isCallable$g;
1545
+ var anObject$3 = anObject$9;
1546
+ var toString$4 = toString$8;
1547
+
1548
+ var DELEGATES_TO_EXEC = function () {
1549
+ var execCalled = false;
1550
+ var re = /[ac]/;
1551
+ re.exec = function () {
1552
+ execCalled = true;
1553
+ return /./.exec.apply(this, arguments);
1554
+ };
1555
+ return re.test('abc') === true && execCalled;
1556
+ }();
1557
+
1558
+ var nativeTest = /./.test;
1559
+
1560
+ // `RegExp.prototype.test` method
1561
+ // https://tc39.es/ecma262/#sec-regexp.prototype.test
1562
+ $$6({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
1563
+ test: function (S) {
1564
+ var R = anObject$3(this);
1565
+ var string = toString$4(S);
1566
+ var exec = R.exec;
1567
+ if (!isCallable$4(exec)) return call$5(nativeTest, R, string);
1568
+ var result = call$5(exec, R, string);
1569
+ if (result === null) return false;
1570
+ anObject$3(result);
1571
+ return true;
1572
+ }
1573
+ });
1574
+
1539
1575
  var call$4 = functionCall;
1540
1576
  var hasOwn$2 = hasOwnProperty_1;
1541
1577
  var isPrototypeOf = objectIsPrototypeOf;
@@ -1551,8 +1587,8 @@ var regexpGetFlags = function (R) {
1551
1587
 
1552
1588
  var PROPER_FUNCTION_NAME$2 = functionName.PROPER;
1553
1589
  var defineBuiltIn$3 = defineBuiltIn$5;
1554
- var anObject$3 = anObject$9;
1555
- var $toString = toString$7;
1590
+ var anObject$2 = anObject$9;
1591
+ var $toString = toString$8;
1556
1592
  var fails$7 = fails$l;
1557
1593
  var getRegExpFlags = regexpGetFlags;
1558
1594
 
@@ -1568,7 +1604,7 @@ var INCORRECT_NAME = PROPER_FUNCTION_NAME$2 && nativeToString.name !== TO_STRING
1568
1604
  // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
1569
1605
  if (NOT_GENERIC || INCORRECT_NAME) {
1570
1606
  defineBuiltIn$3(RegExpPrototype$1, TO_STRING, function toString() {
1571
- var R = anObject$3(this);
1607
+ var R = anObject$2(this);
1572
1608
  var pattern = $toString(R.source);
1573
1609
  var flags = $toString(getRegExpFlags(R));
1574
1610
  return '/' + pattern + '/' + flags;
@@ -1883,6 +1919,8 @@ var lengthOfArrayLike = lengthOfArrayLike$2;
1883
1919
 
1884
1920
  var $TypeError$3 = TypeError;
1885
1921
 
1922
+ var REDUCE_EMPTY = 'Reduce of empty array with no initial value';
1923
+
1886
1924
  // `Array.prototype.{ reduce, reduceRight }` methods implementation
1887
1925
  var createMethod$1 = function (IS_RIGHT) {
1888
1926
  return function (that, callbackfn, argumentsLength, memo) {
@@ -1890,6 +1928,7 @@ var createMethod$1 = function (IS_RIGHT) {
1890
1928
  var self = IndexedObject(O);
1891
1929
  var length = lengthOfArrayLike(O);
1892
1930
  aCallable$1(callbackfn);
1931
+ if (length === 0 && argumentsLength < 2) throw new $TypeError$3(REDUCE_EMPTY);
1893
1932
  var index = IS_RIGHT ? length - 1 : 0;
1894
1933
  var i = IS_RIGHT ? -1 : 1;
1895
1934
  if (argumentsLength < 2) while (true) {
@@ -1900,7 +1939,7 @@ var createMethod$1 = function (IS_RIGHT) {
1900
1939
  }
1901
1940
  index += i;
1902
1941
  if (IS_RIGHT ? index < 0 : length <= index) {
1903
- throw new $TypeError$3('Reduce of empty array with no initial value');
1942
+ throw new $TypeError$3(REDUCE_EMPTY);
1904
1943
  }
1905
1944
  }
1906
1945
  for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {
@@ -1929,7 +1968,7 @@ var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
1929
1968
  });
1930
1969
  };
1931
1970
 
1932
- var global$3 = global$i;
1971
+ var global$3 = global$h;
1933
1972
  var classof$2 = classofRaw$1;
1934
1973
 
1935
1974
  var engineIsNode = classof$2(global$3.process) === 'process';
@@ -2206,7 +2245,7 @@ var correctPrototypeGetter = !fails$3(function () {
2206
2245
  });
2207
2246
 
2208
2247
  var hasOwn$1 = hasOwnProperty_1;
2209
- var isCallable$3 = isCallable$f;
2248
+ var isCallable$3 = isCallable$g;
2210
2249
  var toObject = toObject$4;
2211
2250
  var sharedKey = sharedKey$3;
2212
2251
  var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
@@ -2228,8 +2267,8 @@ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : f
2228
2267
  };
2229
2268
 
2230
2269
  var fails$2 = fails$l;
2231
- var isCallable$2 = isCallable$f;
2232
- var isObject$2 = isObject$8;
2270
+ var isCallable$2 = isCallable$g;
2271
+ var isObject$3 = isObject$9;
2233
2272
  var getPrototypeOf$1 = objectGetPrototypeOf;
2234
2273
  var defineBuiltIn$2 = defineBuiltIn$5;
2235
2274
  var wellKnownSymbol$6 = wellKnownSymbol$b;
@@ -2252,7 +2291,7 @@ if ([].keys) {
2252
2291
  }
2253
2292
  }
2254
2293
 
2255
- var NEW_ITERATOR_PROTOTYPE = !isObject$2(IteratorPrototype$2) || fails$2(function () {
2294
+ var NEW_ITERATOR_PROTOTYPE = !isObject$3(IteratorPrototype$2) || fails$2(function () {
2256
2295
  var test = {};
2257
2296
  // FF44- legacy iterators case
2258
2297
  return IteratorPrototype$2[ITERATOR$3].call(test) !== test;
@@ -2312,10 +2351,10 @@ var functionUncurryThisAccessor = function (object, key, method) {
2312
2351
  } catch (error) { /* empty */ }
2313
2352
  };
2314
2353
 
2315
- var isObject$1 = isObject$8;
2354
+ var isObject$2 = isObject$9;
2316
2355
 
2317
2356
  var isPossiblePrototype$1 = function (argument) {
2318
- return isObject$1(argument) || argument === null;
2357
+ return isObject$2(argument) || argument === null;
2319
2358
  };
2320
2359
 
2321
2360
  var isPossiblePrototype = isPossiblePrototype$1;
@@ -2330,7 +2369,8 @@ var aPossiblePrototype$1 = function (argument) {
2330
2369
 
2331
2370
  /* eslint-disable no-proto -- safe */
2332
2371
  var uncurryThisAccessor = functionUncurryThisAccessor;
2333
- var anObject$2 = anObject$9;
2372
+ var isObject$1 = isObject$9;
2373
+ var requireObjectCoercible$3 = requireObjectCoercible$7;
2334
2374
  var aPossiblePrototype = aPossiblePrototype$1;
2335
2375
 
2336
2376
  // `Object.setPrototypeOf` method
@@ -2347,8 +2387,9 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
2347
2387
  CORRECT_SETTER = test instanceof Array;
2348
2388
  } catch (error) { /* empty */ }
2349
2389
  return function setPrototypeOf(O, proto) {
2350
- anObject$2(O);
2390
+ requireObjectCoercible$3(O);
2351
2391
  aPossiblePrototype(proto);
2392
+ if (!isObject$1(O)) return O;
2352
2393
  if (CORRECT_SETTER) setter(O, proto);
2353
2394
  else O.__proto__ = proto;
2354
2395
  return O;
@@ -2358,7 +2399,7 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
2358
2399
  var $$2 = _export;
2359
2400
  var call$3 = functionCall;
2360
2401
  var FunctionName = functionName;
2361
- var isCallable$1 = isCallable$f;
2402
+ var isCallable$1 = isCallable$g;
2362
2403
  var createIteratorConstructor = iteratorCreateConstructor;
2363
2404
  var getPrototypeOf = objectGetPrototypeOf;
2364
2405
  var setPrototypeOf = objectSetPrototypeOf;
@@ -2522,10 +2563,10 @@ if (DESCRIPTORS && values.name !== 'values') try {
2522
2563
  defineProperty(values, 'name', { value: 'values' });
2523
2564
  } catch (error) { /* empty */ }
2524
2565
 
2525
- var global$2 = global$i;
2566
+ var global$2 = global$h;
2526
2567
  var fails$1 = fails$l;
2527
2568
  var uncurryThis$2 = functionUncurryThis;
2528
- var toString$3 = toString$7;
2569
+ var toString$3 = toString$8;
2529
2570
  var trim = stringTrim.trim;
2530
2571
  var whitespaces = whitespaces$4;
2531
2572
 
@@ -2554,7 +2595,7 @@ $$1({ global: true, forced: parseInt !== $parseInt }, {
2554
2595
  parseInt: $parseInt
2555
2596
  });
2556
2597
 
2557
- var isObject = isObject$8;
2598
+ var isObject = isObject$9;
2558
2599
  var classof$1 = classofRaw$1;
2559
2600
  var wellKnownSymbol$3 = wellKnownSymbol$b;
2560
2601
 
@@ -2596,8 +2637,8 @@ var correctIsRegexpLogic = function (METHOD_NAME) {
2596
2637
  var $ = _export;
2597
2638
  var uncurryThis$1 = functionUncurryThis;
2598
2639
  var notARegExp = notARegexp;
2599
- var requireObjectCoercible$2 = requireObjectCoercible$6;
2600
- var toString$2 = toString$7;
2640
+ var requireObjectCoercible$2 = requireObjectCoercible$7;
2641
+ var toString$2 = toString$8;
2601
2642
  var correctIsRegExpLogic = correctIsRegexpLogic;
2602
2643
 
2603
2644
  var stringIndexOf = uncurryThis$1(''.indexOf);
@@ -2692,8 +2733,8 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2692
2733
 
2693
2734
  var uncurryThis = functionUncurryThis;
2694
2735
  var toIntegerOrInfinity = toIntegerOrInfinity$3;
2695
- var toString$1 = toString$7;
2696
- var requireObjectCoercible$1 = requireObjectCoercible$6;
2736
+ var toString$1 = toString$8;
2737
+ var requireObjectCoercible$1 = requireObjectCoercible$7;
2697
2738
 
2698
2739
  var charAt$1 = uncurryThis(''.charAt);
2699
2740
  var charCodeAt = uncurryThis(''.charCodeAt);
@@ -2737,7 +2778,7 @@ var advanceStringIndex$1 = function (S, index, unicode) {
2737
2778
 
2738
2779
  var call$1 = functionCall;
2739
2780
  var anObject$1 = anObject$9;
2740
- var isCallable = isCallable$f;
2781
+ var isCallable = isCallable$g;
2741
2782
  var classof = classofRaw$1;
2742
2783
  var regexpExec = regexpExec$2;
2743
2784
 
@@ -2761,8 +2802,8 @@ var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
2761
2802
  var anObject = anObject$9;
2762
2803
  var isNullOrUndefined = isNullOrUndefined$3;
2763
2804
  var toLength = toLength$2;
2764
- var toString = toString$7;
2765
- var requireObjectCoercible = requireObjectCoercible$6;
2805
+ var toString = toString$8;
2806
+ var requireObjectCoercible = requireObjectCoercible$7;
2766
2807
  var getMethod = getMethod$2;
2767
2808
  var advanceStringIndex = advanceStringIndex$1;
2768
2809
  var regExpExec = regexpExecAbstract;
@@ -2848,7 +2889,7 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
2848
2889
 
2849
2890
  var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
2850
2891
 
2851
- var global$1 = global$i;
2892
+ var global$1 = global$h;
2852
2893
  var DOMIterables = domIterables;
2853
2894
  var DOMTokenListPrototype = domTokenListPrototype;
2854
2895
  var ArrayIteratorMethods = es_array_iterator;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeoweb/form-fields",
3
- "version": "9.13.0",
3
+ "version": "9.15.0",
4
4
  "description": "GeoWeb form-fields library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {