@abgov/jsonforms-components 1.28.2 → 1.30.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.
package/index.esm.js CHANGED
@@ -11,10 +11,11 @@ import isEmpty$1 from 'lodash/isEmpty';
11
11
  import range from 'lodash/range';
12
12
  import Ajv from 'ajv';
13
13
  import addFormats from 'ajv-formats';
14
+ import _$8 from 'lodash';
14
15
 
15
16
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
16
17
 
17
- var fails$n = function (exec) {
18
+ var fails$q = function (exec) {
18
19
  try {
19
20
  return !!exec();
20
21
  } catch (error) {
@@ -22,75 +23,75 @@ var fails$n = function (exec) {
22
23
  }
23
24
  };
24
25
 
25
- var fails$m = fails$n;
26
+ var fails$p = fails$q;
26
27
 
27
- var functionBindNative = !fails$m(function () {
28
+ var functionBindNative = !fails$p(function () {
28
29
  // eslint-disable-next-line es/no-function-prototype-bind -- safe
29
30
  var test = (function () { /* empty */ }).bind();
30
31
  // eslint-disable-next-line no-prototype-builtins -- safe
31
32
  return typeof test != 'function' || test.hasOwnProperty('prototype');
32
33
  });
33
34
 
34
- var NATIVE_BIND$2 = functionBindNative;
35
+ var NATIVE_BIND$3 = functionBindNative;
35
36
 
36
37
  var FunctionPrototype$2 = Function.prototype;
37
- var call$e = FunctionPrototype$2.call;
38
- var uncurryThisWithBind = NATIVE_BIND$2 && FunctionPrototype$2.bind.bind(call$e, call$e);
38
+ var call$k = FunctionPrototype$2.call;
39
+ var uncurryThisWithBind = NATIVE_BIND$3 && FunctionPrototype$2.bind.bind(call$k, call$k);
39
40
 
40
- var functionUncurryThis = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
41
+ var functionUncurryThis = NATIVE_BIND$3 ? uncurryThisWithBind : function (fn) {
41
42
  return function () {
42
- return call$e.apply(fn, arguments);
43
+ return call$k.apply(fn, arguments);
43
44
  };
44
45
  };
45
46
 
46
- var uncurryThis$m = functionUncurryThis;
47
+ var uncurryThis$p = functionUncurryThis;
47
48
 
48
- var toString$c = uncurryThis$m({}.toString);
49
- var stringSlice$7 = uncurryThis$m(''.slice);
49
+ var toString$c = uncurryThis$p({}.toString);
50
+ var stringSlice$7 = uncurryThis$p(''.slice);
50
51
 
51
- var classofRaw$1 = function (it) {
52
+ var classofRaw$2 = function (it) {
52
53
  return stringSlice$7(toString$c(it), 8, -1);
53
54
  };
54
55
 
55
- var uncurryThis$l = functionUncurryThis;
56
- var fails$l = fails$n;
57
- var classof$7 = classofRaw$1;
56
+ var uncurryThis$o = functionUncurryThis;
57
+ var fails$o = fails$q;
58
+ var classof$a = classofRaw$2;
58
59
 
59
60
  var $Object$4 = Object;
60
- var split = uncurryThis$l(''.split);
61
+ var split = uncurryThis$o(''.split);
61
62
 
62
63
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
63
- var indexedObject = fails$l(function () {
64
+ var indexedObject = fails$o(function () {
64
65
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
65
66
  // eslint-disable-next-line no-prototype-builtins -- safe
66
67
  return !$Object$4('z').propertyIsEnumerable(0);
67
68
  }) ? function (it) {
68
- return classof$7(it) === 'String' ? split(it, '') : $Object$4(it);
69
+ return classof$a(it) === 'String' ? split(it, '') : $Object$4(it);
69
70
  } : $Object$4;
70
71
 
71
72
  // we can't use just `it == null` since of `document.all` special case
72
73
  // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
73
- var isNullOrUndefined$3 = function (it) {
74
+ var isNullOrUndefined$5 = function (it) {
74
75
  return it === null || it === undefined;
75
76
  };
76
77
 
77
- var isNullOrUndefined$2 = isNullOrUndefined$3;
78
+ var isNullOrUndefined$4 = isNullOrUndefined$5;
78
79
 
79
- var $TypeError$b = TypeError;
80
+ var $TypeError$i = TypeError;
80
81
 
81
82
  // `RequireObjectCoercible` abstract operation
82
83
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
83
84
  var requireObjectCoercible$7 = function (it) {
84
- if (isNullOrUndefined$2(it)) throw new $TypeError$b("Can't call method on " + it);
85
+ if (isNullOrUndefined$4(it)) throw new $TypeError$i("Can't call method on " + it);
85
86
  return it;
86
87
  };
87
88
 
88
89
  // toObject with fallback for non-array-like ES3 strings
89
- var IndexedObject$1 = indexedObject;
90
+ var IndexedObject$2 = indexedObject;
90
91
  var requireObjectCoercible$6 = requireObjectCoercible$7;
91
92
 
92
93
  var toIndexedObject$5 = function (it) {
93
- return IndexedObject$1(requireObjectCoercible$6(it));
94
+ return IndexedObject$2(requireObjectCoercible$6(it));
94
95
  };
95
96
 
96
97
  var check = function (it) {
@@ -98,7 +99,7 @@ var check = function (it) {
98
99
  };
99
100
 
100
101
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
101
- var global$h =
102
+ var global$o =
102
103
  // eslint-disable-next-line es/no-global-this -- safe
103
104
  check(typeof globalThis == 'object' && globalThis) ||
104
105
  check(typeof window == 'object' && window) ||
@@ -111,20 +112,20 @@ var global$h =
111
112
 
112
113
  var sharedStore = {exports: {}};
113
114
 
114
- var global$g = global$h;
115
+ var global$n = global$o;
115
116
 
116
117
  // eslint-disable-next-line es/no-object-defineproperty -- safe
117
118
  var defineProperty$7 = Object.defineProperty;
118
119
 
119
120
  var defineGlobalProperty$3 = function (key, value) {
120
121
  try {
121
- defineProperty$7(global$g, key, { value: value, configurable: true, writable: true });
122
+ defineProperty$7(global$n, key, { value: value, configurable: true, writable: true });
122
123
  } catch (error) {
123
- global$g[key] = value;
124
+ global$n[key] = value;
124
125
  } return value;
125
126
  };
126
127
 
127
- var globalThis$1 = global$h;
128
+ var globalThis$1 = global$o;
128
129
  var defineGlobalProperty$2 = defineGlobalProperty$3;
129
130
 
130
131
  var SHARED = '__core-js_shared__';
@@ -150,27 +151,27 @@ var $Object$3 = Object;
150
151
 
151
152
  // `ToObject` abstract operation
152
153
  // https://tc39.es/ecma262/#sec-toobject
153
- var toObject$6 = function (argument) {
154
+ var toObject$7 = function (argument) {
154
155
  return $Object$3(requireObjectCoercible$5(argument));
155
156
  };
156
157
 
157
- var uncurryThis$k = functionUncurryThis;
158
- var toObject$5 = toObject$6;
158
+ var uncurryThis$n = functionUncurryThis;
159
+ var toObject$6 = toObject$7;
159
160
 
160
- var hasOwnProperty = uncurryThis$k({}.hasOwnProperty);
161
+ var hasOwnProperty = uncurryThis$n({}.hasOwnProperty);
161
162
 
162
163
  // `HasOwnProperty` abstract operation
163
164
  // https://tc39.es/ecma262/#sec-hasownproperty
164
165
  // eslint-disable-next-line es/no-object-hasown -- safe
165
166
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
166
- return hasOwnProperty(toObject$5(it), key);
167
+ return hasOwnProperty(toObject$6(it), key);
167
168
  };
168
169
 
169
- var uncurryThis$j = functionUncurryThis;
170
+ var uncurryThis$m = functionUncurryThis;
170
171
 
171
172
  var id = 0;
172
173
  var postfix = Math.random();
173
- var toString$b = uncurryThis$j(1.0.toString);
174
+ var toString$b = uncurryThis$m(1.0.toString);
174
175
 
175
176
  var uid$2 = function (key) {
176
177
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$b(++id + postfix, 36);
@@ -178,12 +179,12 @@ var uid$2 = function (key) {
178
179
 
179
180
  var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
180
181
 
181
- var global$f = global$h;
182
- var userAgent = engineUserAgent;
182
+ var global$m = global$o;
183
+ var userAgent$3 = engineUserAgent;
183
184
 
184
- var process = global$f.process;
185
- var Deno = global$f.Deno;
186
- var versions = process && process.versions || Deno && Deno.version;
185
+ var process$3 = global$m.process;
186
+ var Deno$1 = global$m.Deno;
187
+ var versions = process$3 && process$3.versions || Deno$1 && Deno$1.version;
187
188
  var v8 = versions && versions.v8;
188
189
  var match, version;
189
190
 
@@ -196,10 +197,10 @@ if (v8) {
196
197
 
197
198
  // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
198
199
  // so check `userAgent` even if `.v8` exists, but 0
199
- if (!version && userAgent) {
200
- match = userAgent.match(/Edge\/(\d+)/);
200
+ if (!version && userAgent$3) {
201
+ match = userAgent$3.match(/Edge\/(\d+)/);
201
202
  if (!match || match[1] >= 74) {
202
- match = userAgent.match(/Chrome\/(\d+)/);
203
+ match = userAgent$3.match(/Chrome\/(\d+)/);
203
204
  if (match) version = +match[1];
204
205
  }
205
206
  }
@@ -207,14 +208,14 @@ if (!version && userAgent) {
207
208
  var engineV8Version = version;
208
209
 
209
210
  /* eslint-disable es/no-symbol -- required for testing */
210
- var V8_VERSION = engineV8Version;
211
- var fails$k = fails$n;
212
- var global$e = global$h;
211
+ var V8_VERSION$1 = engineV8Version;
212
+ var fails$n = fails$q;
213
+ var global$l = global$o;
213
214
 
214
- var $String$6 = global$e.String;
215
+ var $String$6 = global$l.String;
215
216
 
216
217
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
217
- var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$k(function () {
218
+ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$n(function () {
218
219
  var symbol = Symbol('symbol detection');
219
220
  // Chrome 38 Symbol has incorrect toString conversion
220
221
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -222,7 +223,7 @@ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$k(func
222
223
  // of course, fail.
223
224
  return !$String$6(symbol) || !(Object(symbol) instanceof Symbol) ||
224
225
  // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
225
- !Symbol.sham && V8_VERSION && V8_VERSION < 41;
226
+ !Symbol.sham && V8_VERSION$1 && V8_VERSION$1 < 41;
226
227
  });
227
228
 
228
229
  /* eslint-disable es/no-symbol -- required for testing */
@@ -232,20 +233,20 @@ var useSymbolAsUid = NATIVE_SYMBOL$3
232
233
  && !Symbol.sham
233
234
  && typeof Symbol.iterator == 'symbol';
234
235
 
235
- var global$d = global$h;
236
+ var global$k = global$o;
236
237
  var shared$3 = shared$4;
237
- var hasOwn$c = hasOwnProperty_1;
238
+ var hasOwn$d = hasOwnProperty_1;
238
239
  var uid$1 = uid$2;
239
240
  var NATIVE_SYMBOL$2 = symbolConstructorDetection;
240
241
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
241
242
 
242
- var Symbol$1 = global$d.Symbol;
243
+ var Symbol$1 = global$k.Symbol;
243
244
  var WellKnownSymbolsStore = shared$3('wks');
244
245
  var createWellKnownSymbol = USE_SYMBOL_AS_UID$1 ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
245
246
 
246
- var wellKnownSymbol$e = function (name) {
247
- if (!hasOwn$c(WellKnownSymbolsStore, name)) {
248
- WellKnownSymbolsStore[name] = NATIVE_SYMBOL$2 && hasOwn$c(Symbol$1, name)
247
+ var wellKnownSymbol$j = function (name) {
248
+ if (!hasOwn$d(WellKnownSymbolsStore, name)) {
249
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL$2 && hasOwn$d(Symbol$1, name)
249
250
  ? Symbol$1[name]
250
251
  : createWellKnownSymbol('Symbol.' + name);
251
252
  } return WellKnownSymbolsStore[name];
@@ -257,45 +258,45 @@ var documentAll = typeof document == 'object' && document.all;
257
258
  // `IsCallable` abstract operation
258
259
  // https://tc39.es/ecma262/#sec-iscallable
259
260
  // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
260
- var isCallable$l = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
261
+ var isCallable$q = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
261
262
  return typeof argument == 'function' || argument === documentAll;
262
263
  } : function (argument) {
263
264
  return typeof argument == 'function';
264
265
  };
265
266
 
266
- var isCallable$k = isCallable$l;
267
+ var isCallable$p = isCallable$q;
267
268
 
268
- var isObject$b = function (it) {
269
- return typeof it == 'object' ? it !== null : isCallable$k(it);
269
+ var isObject$d = function (it) {
270
+ return typeof it == 'object' ? it !== null : isCallable$p(it);
270
271
  };
271
272
 
272
- var isObject$a = isObject$b;
273
+ var isObject$c = isObject$d;
273
274
 
274
275
  var $String$5 = String;
275
- var $TypeError$a = TypeError;
276
+ var $TypeError$h = TypeError;
276
277
 
277
278
  // `Assert: Type(argument) is Object`
278
- var anObject$9 = function (argument) {
279
- if (isObject$a(argument)) return argument;
280
- throw new $TypeError$a($String$5(argument) + ' is not an object');
279
+ var anObject$e = function (argument) {
280
+ if (isObject$c(argument)) return argument;
281
+ throw new $TypeError$h($String$5(argument) + ' is not an object');
281
282
  };
282
283
 
283
284
  var objectDefineProperties = {};
284
285
 
285
- var fails$j = fails$n;
286
+ var fails$m = fails$q;
286
287
 
287
288
  // Detect IE8's incomplete defineProperty implementation
288
- var descriptors = !fails$j(function () {
289
+ var descriptors = !fails$m(function () {
289
290
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
290
291
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
291
292
  });
292
293
 
293
- var DESCRIPTORS$f = descriptors;
294
- var fails$i = fails$n;
294
+ var DESCRIPTORS$g = descriptors;
295
+ var fails$l = fails$q;
295
296
 
296
297
  // V8 ~ Chrome 36-
297
298
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
298
- var v8PrototypeDefineBug = DESCRIPTORS$f && fails$i(function () {
299
+ var v8PrototypeDefineBug = DESCRIPTORS$g && fails$l(function () {
299
300
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
300
301
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
301
302
  value: 42,
@@ -305,55 +306,55 @@ var v8PrototypeDefineBug = DESCRIPTORS$f && fails$i(function () {
305
306
 
306
307
  var objectDefineProperty = {};
307
308
 
308
- var global$c = global$h;
309
- var isObject$9 = isObject$b;
309
+ var global$j = global$o;
310
+ var isObject$b = isObject$d;
310
311
 
311
- var document$1 = global$c.document;
312
+ var document$3 = global$j.document;
312
313
  // typeof document.createElement is 'object' in old IE
313
- var EXISTS$1 = isObject$9(document$1) && isObject$9(document$1.createElement);
314
+ var EXISTS$1 = isObject$b(document$3) && isObject$b(document$3.createElement);
314
315
 
315
316
  var documentCreateElement$2 = function (it) {
316
- return EXISTS$1 ? document$1.createElement(it) : {};
317
+ return EXISTS$1 ? document$3.createElement(it) : {};
317
318
  };
318
319
 
319
- var DESCRIPTORS$e = descriptors;
320
- var fails$h = fails$n;
321
- var createElement = documentCreateElement$2;
320
+ var DESCRIPTORS$f = descriptors;
321
+ var fails$k = fails$q;
322
+ var createElement$1 = documentCreateElement$2;
322
323
 
323
324
  // Thanks to IE8 for its funny defineProperty
324
- var ie8DomDefine = !DESCRIPTORS$e && !fails$h(function () {
325
+ var ie8DomDefine = !DESCRIPTORS$f && !fails$k(function () {
325
326
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
326
- return Object.defineProperty(createElement('div'), 'a', {
327
+ return Object.defineProperty(createElement$1('div'), 'a', {
327
328
  get: function () { return 7; }
328
329
  }).a !== 7;
329
330
  });
330
331
 
331
- var NATIVE_BIND$1 = functionBindNative;
332
+ var NATIVE_BIND$2 = functionBindNative;
332
333
 
333
- var call$d = Function.prototype.call;
334
+ var call$j = Function.prototype.call;
334
335
 
335
- var functionCall = NATIVE_BIND$1 ? call$d.bind(call$d) : function () {
336
- return call$d.apply(call$d, arguments);
336
+ var functionCall = NATIVE_BIND$2 ? call$j.bind(call$j) : function () {
337
+ return call$j.apply(call$j, arguments);
337
338
  };
338
339
 
339
- var global$b = global$h;
340
- var isCallable$j = isCallable$l;
340
+ var global$i = global$o;
341
+ var isCallable$o = isCallable$q;
341
342
 
342
343
  var aFunction = function (argument) {
343
- return isCallable$j(argument) ? argument : undefined;
344
+ return isCallable$o(argument) ? argument : undefined;
344
345
  };
345
346
 
346
- var getBuiltIn$6 = function (namespace, method) {
347
- return arguments.length < 2 ? aFunction(global$b[namespace]) : global$b[namespace] && global$b[namespace][method];
347
+ var getBuiltIn$9 = function (namespace, method) {
348
+ return arguments.length < 2 ? aFunction(global$i[namespace]) : global$i[namespace] && global$i[namespace][method];
348
349
  };
349
350
 
350
- var uncurryThis$i = functionUncurryThis;
351
+ var uncurryThis$l = functionUncurryThis;
351
352
 
352
- var objectIsPrototypeOf = uncurryThis$i({}.isPrototypeOf);
353
+ var objectIsPrototypeOf = uncurryThis$l({}.isPrototypeOf);
353
354
 
354
- var getBuiltIn$5 = getBuiltIn$6;
355
- var isCallable$i = isCallable$l;
356
- var isPrototypeOf$4 = objectIsPrototypeOf;
355
+ var getBuiltIn$8 = getBuiltIn$9;
356
+ var isCallable$n = isCallable$q;
357
+ var isPrototypeOf$6 = objectIsPrototypeOf;
357
358
  var USE_SYMBOL_AS_UID = useSymbolAsUid;
358
359
 
359
360
  var $Object$2 = Object;
@@ -361,13 +362,13 @@ var $Object$2 = Object;
361
362
  var isSymbol$3 = USE_SYMBOL_AS_UID ? function (it) {
362
363
  return typeof it == 'symbol';
363
364
  } : function (it) {
364
- var $Symbol = getBuiltIn$5('Symbol');
365
- return isCallable$i($Symbol) && isPrototypeOf$4($Symbol.prototype, $Object$2(it));
365
+ var $Symbol = getBuiltIn$8('Symbol');
366
+ return isCallable$n($Symbol) && isPrototypeOf$6($Symbol.prototype, $Object$2(it));
366
367
  };
367
368
 
368
369
  var $String$4 = String;
369
370
 
370
- var tryToString$1 = function (argument) {
371
+ var tryToString$4 = function (argument) {
371
372
  try {
372
373
  return $String$4(argument);
373
374
  } catch (error) {
@@ -375,64 +376,64 @@ var tryToString$1 = function (argument) {
375
376
  }
376
377
  };
377
378
 
378
- var isCallable$h = isCallable$l;
379
- var tryToString = tryToString$1;
379
+ var isCallable$m = isCallable$q;
380
+ var tryToString$3 = tryToString$4;
380
381
 
381
- var $TypeError$9 = TypeError;
382
+ var $TypeError$g = TypeError;
382
383
 
383
384
  // `Assert: IsCallable(argument) is true`
384
- var aCallable$2 = function (argument) {
385
- if (isCallable$h(argument)) return argument;
386
- throw new $TypeError$9(tryToString(argument) + ' is not a function');
385
+ var aCallable$9 = function (argument) {
386
+ if (isCallable$m(argument)) return argument;
387
+ throw new $TypeError$g(tryToString$3(argument) + ' is not a function');
387
388
  };
388
389
 
389
- var aCallable$1 = aCallable$2;
390
- var isNullOrUndefined$1 = isNullOrUndefined$3;
390
+ var aCallable$8 = aCallable$9;
391
+ var isNullOrUndefined$3 = isNullOrUndefined$5;
391
392
 
392
393
  // `GetMethod` abstract operation
393
394
  // https://tc39.es/ecma262/#sec-getmethod
394
- var getMethod$2 = function (V, P) {
395
+ var getMethod$4 = function (V, P) {
395
396
  var func = V[P];
396
- return isNullOrUndefined$1(func) ? undefined : aCallable$1(func);
397
+ return isNullOrUndefined$3(func) ? undefined : aCallable$8(func);
397
398
  };
398
399
 
399
- var call$c = functionCall;
400
- var isCallable$g = isCallable$l;
401
- var isObject$8 = isObject$b;
400
+ var call$i = functionCall;
401
+ var isCallable$l = isCallable$q;
402
+ var isObject$a = isObject$d;
402
403
 
403
- var $TypeError$8 = TypeError;
404
+ var $TypeError$f = TypeError;
404
405
 
405
406
  // `OrdinaryToPrimitive` abstract operation
406
407
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
407
408
  var ordinaryToPrimitive$1 = function (input, pref) {
408
409
  var fn, val;
409
- if (pref === 'string' && isCallable$g(fn = input.toString) && !isObject$8(val = call$c(fn, input))) return val;
410
- if (isCallable$g(fn = input.valueOf) && !isObject$8(val = call$c(fn, input))) return val;
411
- if (pref !== 'string' && isCallable$g(fn = input.toString) && !isObject$8(val = call$c(fn, input))) return val;
412
- throw new $TypeError$8("Can't convert object to primitive value");
410
+ if (pref === 'string' && isCallable$l(fn = input.toString) && !isObject$a(val = call$i(fn, input))) return val;
411
+ if (isCallable$l(fn = input.valueOf) && !isObject$a(val = call$i(fn, input))) return val;
412
+ if (pref !== 'string' && isCallable$l(fn = input.toString) && !isObject$a(val = call$i(fn, input))) return val;
413
+ throw new $TypeError$f("Can't convert object to primitive value");
413
414
  };
414
415
 
415
- var call$b = functionCall;
416
- var isObject$7 = isObject$b;
416
+ var call$h = functionCall;
417
+ var isObject$9 = isObject$d;
417
418
  var isSymbol$2 = isSymbol$3;
418
- var getMethod$1 = getMethod$2;
419
+ var getMethod$3 = getMethod$4;
419
420
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
420
- var wellKnownSymbol$d = wellKnownSymbol$e;
421
+ var wellKnownSymbol$i = wellKnownSymbol$j;
421
422
 
422
- var $TypeError$7 = TypeError;
423
- var TO_PRIMITIVE = wellKnownSymbol$d('toPrimitive');
423
+ var $TypeError$e = TypeError;
424
+ var TO_PRIMITIVE = wellKnownSymbol$i('toPrimitive');
424
425
 
425
426
  // `ToPrimitive` abstract operation
426
427
  // https://tc39.es/ecma262/#sec-toprimitive
427
428
  var toPrimitive$1 = function (input, pref) {
428
- if (!isObject$7(input) || isSymbol$2(input)) return input;
429
- var exoticToPrim = getMethod$1(input, TO_PRIMITIVE);
429
+ if (!isObject$9(input) || isSymbol$2(input)) return input;
430
+ var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
430
431
  var result;
431
432
  if (exoticToPrim) {
432
433
  if (pref === undefined) pref = 'default';
433
- result = call$b(exoticToPrim, input, pref);
434
- if (!isObject$7(result) || isSymbol$2(result)) return result;
435
- throw new $TypeError$7("Can't convert object to primitive value");
434
+ result = call$h(exoticToPrim, input, pref);
435
+ if (!isObject$9(result) || isSymbol$2(result)) return result;
436
+ throw new $TypeError$e("Can't convert object to primitive value");
436
437
  }
437
438
  if (pref === undefined) pref = 'number';
438
439
  return ordinaryToPrimitive(input, pref);
@@ -448,13 +449,13 @@ var toPropertyKey$2 = function (argument) {
448
449
  return isSymbol$1(key) ? key : key + '';
449
450
  };
450
451
 
451
- var DESCRIPTORS$d = descriptors;
452
+ var DESCRIPTORS$e = descriptors;
452
453
  var IE8_DOM_DEFINE$1 = ie8DomDefine;
453
454
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
454
- var anObject$8 = anObject$9;
455
+ var anObject$d = anObject$e;
455
456
  var toPropertyKey$1 = toPropertyKey$2;
456
457
 
457
- var $TypeError$6 = TypeError;
458
+ var $TypeError$d = TypeError;
458
459
  // eslint-disable-next-line es/no-object-defineproperty -- safe
459
460
  var $defineProperty = Object.defineProperty;
460
461
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -465,10 +466,10 @@ var WRITABLE = 'writable';
465
466
 
466
467
  // `Object.defineProperty` method
467
468
  // https://tc39.es/ecma262/#sec-object.defineproperty
468
- objectDefineProperty.f = DESCRIPTORS$d ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
469
- anObject$8(O);
469
+ objectDefineProperty.f = DESCRIPTORS$e ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
470
+ anObject$d(O);
470
471
  P = toPropertyKey$1(P);
471
- anObject$8(Attributes);
472
+ anObject$d(Attributes);
472
473
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
473
474
  var current = $getOwnPropertyDescriptor$1(O, P);
474
475
  if (current && current[WRITABLE]) {
@@ -481,13 +482,13 @@ objectDefineProperty.f = DESCRIPTORS$d ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
481
482
  }
482
483
  } return $defineProperty(O, P, Attributes);
483
484
  } : $defineProperty : function defineProperty(O, P, Attributes) {
484
- anObject$8(O);
485
+ anObject$d(O);
485
486
  P = toPropertyKey$1(P);
486
- anObject$8(Attributes);
487
+ anObject$d(Attributes);
487
488
  if (IE8_DOM_DEFINE$1) try {
488
489
  return $defineProperty(O, P, Attributes);
489
490
  } catch (error) { /* empty */ }
490
- if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$6('Accessors not supported');
491
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$d('Accessors not supported');
491
492
  if ('value' in Attributes) O[P] = Attributes.value;
492
493
  return O;
493
494
  };
@@ -541,19 +542,19 @@ var toLength$1 = toLength$2;
541
542
 
542
543
  // `LengthOfArrayLike` abstract operation
543
544
  // https://tc39.es/ecma262/#sec-lengthofarraylike
544
- var lengthOfArrayLike$3 = function (obj) {
545
+ var lengthOfArrayLike$5 = function (obj) {
545
546
  return toLength$1(obj.length);
546
547
  };
547
548
 
548
549
  var toIndexedObject$4 = toIndexedObject$5;
549
550
  var toAbsoluteIndex = toAbsoluteIndex$1;
550
- var lengthOfArrayLike$2 = lengthOfArrayLike$3;
551
+ var lengthOfArrayLike$4 = lengthOfArrayLike$5;
551
552
 
552
553
  // `Array.prototype.{ indexOf, includes }` methods implementation
553
- var createMethod$1 = function (IS_INCLUDES) {
554
+ var createMethod$2 = function (IS_INCLUDES) {
554
555
  return function ($this, el, fromIndex) {
555
556
  var O = toIndexedObject$4($this);
556
- var length = lengthOfArrayLike$2(O);
557
+ var length = lengthOfArrayLike$4(O);
557
558
  if (length === 0) return !IS_INCLUDES && -1;
558
559
  var index = toAbsoluteIndex(fromIndex, length);
559
560
  var value;
@@ -573,30 +574,30 @@ var createMethod$1 = function (IS_INCLUDES) {
573
574
  var arrayIncludes = {
574
575
  // `Array.prototype.includes` method
575
576
  // https://tc39.es/ecma262/#sec-array.prototype.includes
576
- includes: createMethod$1(true),
577
+ includes: createMethod$2(true),
577
578
  // `Array.prototype.indexOf` method
578
579
  // https://tc39.es/ecma262/#sec-array.prototype.indexof
579
- indexOf: createMethod$1(false)
580
+ indexOf: createMethod$2(false)
580
581
  };
581
582
 
582
583
  var hiddenKeys$4 = {};
583
584
 
584
- var uncurryThis$h = functionUncurryThis;
585
- var hasOwn$b = hasOwnProperty_1;
585
+ var uncurryThis$k = functionUncurryThis;
586
+ var hasOwn$c = hasOwnProperty_1;
586
587
  var toIndexedObject$3 = toIndexedObject$5;
587
588
  var indexOf$1 = arrayIncludes.indexOf;
588
589
  var hiddenKeys$3 = hiddenKeys$4;
589
590
 
590
- var push$2 = uncurryThis$h([].push);
591
+ var push$2 = uncurryThis$k([].push);
591
592
 
592
593
  var objectKeysInternal = function (object, names) {
593
594
  var O = toIndexedObject$3(object);
594
595
  var i = 0;
595
596
  var result = [];
596
597
  var key;
597
- for (key in O) !hasOwn$b(hiddenKeys$3, key) && hasOwn$b(O, key) && push$2(result, key);
598
+ for (key in O) !hasOwn$c(hiddenKeys$3, key) && hasOwn$c(O, key) && push$2(result, key);
598
599
  // Don't enum bug & hidden keys
599
- while (names.length > i) if (hasOwn$b(O, key = names[i++])) {
600
+ while (names.length > i) if (hasOwn$c(O, key = names[i++])) {
600
601
  ~indexOf$1(result, key) || push$2(result, key);
601
602
  }
602
603
  return result;
@@ -623,18 +624,18 @@ var objectKeys$2 = Object.keys || function keys(O) {
623
624
  return internalObjectKeys$1(O, enumBugKeys$2);
624
625
  };
625
626
 
626
- var DESCRIPTORS$c = descriptors;
627
+ var DESCRIPTORS$d = descriptors;
627
628
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
628
629
  var definePropertyModule$3 = objectDefineProperty;
629
- var anObject$7 = anObject$9;
630
+ var anObject$c = anObject$e;
630
631
  var toIndexedObject$2 = toIndexedObject$5;
631
632
  var objectKeys$1 = objectKeys$2;
632
633
 
633
634
  // `Object.defineProperties` method
634
635
  // https://tc39.es/ecma262/#sec-object.defineproperties
635
636
  // eslint-disable-next-line es/no-object-defineproperties -- safe
636
- objectDefineProperties.f = DESCRIPTORS$c && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
637
- anObject$7(O);
637
+ objectDefineProperties.f = DESCRIPTORS$d && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
638
+ anObject$c(O);
638
639
  var props = toIndexedObject$2(Properties);
639
640
  var keys = objectKeys$1(Properties);
640
641
  var length = keys.length;
@@ -644,9 +645,9 @@ objectDefineProperties.f = DESCRIPTORS$c && !V8_PROTOTYPE_DEFINE_BUG ? Object.de
644
645
  return O;
645
646
  };
646
647
 
647
- var getBuiltIn$4 = getBuiltIn$6;
648
+ var getBuiltIn$7 = getBuiltIn$9;
648
649
 
649
- var html$1 = getBuiltIn$4('document', 'documentElement');
650
+ var html$2 = getBuiltIn$7('document', 'documentElement');
650
651
 
651
652
  var shared$2 = shared$4;
652
653
  var uid = uid$2;
@@ -658,11 +659,11 @@ var sharedKey$3 = function (key) {
658
659
  };
659
660
 
660
661
  /* global ActiveXObject -- old IE, WSH */
661
- var anObject$6 = anObject$9;
662
+ var anObject$b = anObject$e;
662
663
  var definePropertiesModule = objectDefineProperties;
663
664
  var enumBugKeys$1 = enumBugKeys$3;
664
665
  var hiddenKeys$2 = hiddenKeys$4;
665
- var html = html$1;
666
+ var html$1 = html$2;
666
667
  var documentCreateElement$1 = documentCreateElement$2;
667
668
  var sharedKey$2 = sharedKey$3;
668
669
 
@@ -694,7 +695,7 @@ var NullProtoObjectViaIFrame = function () {
694
695
  var JS = 'java' + SCRIPT + ':';
695
696
  var iframeDocument;
696
697
  iframe.style.display = 'none';
697
- html.appendChild(iframe);
698
+ html$1.appendChild(iframe);
698
699
  // https://github.com/zloirock/core-js/issues/475
699
700
  iframe.src = String(JS);
700
701
  iframeDocument = iframe.contentWindow.document;
@@ -732,7 +733,7 @@ hiddenKeys$2[IE_PROTO$1] = true;
732
733
  var objectCreate = Object.create || function create(O, Properties) {
733
734
  var result;
734
735
  if (O !== null) {
735
- EmptyConstructor[PROTOTYPE] = anObject$6(O);
736
+ EmptyConstructor[PROTOTYPE] = anObject$b(O);
736
737
  result = new EmptyConstructor();
737
738
  EmptyConstructor[PROTOTYPE] = null;
738
739
  // add "__proto__" for Object.getPrototypeOf polyfill
@@ -741,17 +742,17 @@ var objectCreate = Object.create || function create(O, Properties) {
741
742
  return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
742
743
  };
743
744
 
744
- var wellKnownSymbol$c = wellKnownSymbol$e;
745
+ var wellKnownSymbol$h = wellKnownSymbol$j;
745
746
  var create$3 = objectCreate;
746
747
  var defineProperty$6 = objectDefineProperty.f;
747
748
 
748
- var UNSCOPABLES = wellKnownSymbol$c('unscopables');
749
- var ArrayPrototype = Array.prototype;
749
+ var UNSCOPABLES = wellKnownSymbol$h('unscopables');
750
+ var ArrayPrototype$1 = Array.prototype;
750
751
 
751
752
  // Array.prototype[@@unscopables]
752
753
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
753
- if (ArrayPrototype[UNSCOPABLES] === undefined) {
754
- defineProperty$6(ArrayPrototype, UNSCOPABLES, {
754
+ if (ArrayPrototype$1[UNSCOPABLES] === undefined) {
755
+ defineProperty$6(ArrayPrototype$1, UNSCOPABLES, {
755
756
  configurable: true,
756
757
  value: create$3(null)
757
758
  });
@@ -759,17 +760,17 @@ if (ArrayPrototype[UNSCOPABLES] === undefined) {
759
760
 
760
761
  // add a key to Array.prototype[@@unscopables]
761
762
  var addToUnscopables$3 = function (key) {
762
- ArrayPrototype[UNSCOPABLES][key] = true;
763
+ ArrayPrototype$1[UNSCOPABLES][key] = true;
763
764
  };
764
765
 
765
766
  var iterators = {};
766
767
 
767
- var global$a = global$h;
768
- var isCallable$f = isCallable$l;
768
+ var global$h = global$o;
769
+ var isCallable$k = isCallable$q;
769
770
 
770
- var WeakMap$1 = global$a.WeakMap;
771
+ var WeakMap$1 = global$h.WeakMap;
771
772
 
772
- var weakMapBasicDetection = isCallable$f(WeakMap$1) && /native code/.test(String(WeakMap$1));
773
+ var weakMapBasicDetection = isCallable$k(WeakMap$1) && /native code/.test(String(WeakMap$1));
773
774
 
774
775
  var createPropertyDescriptor$4 = function (bitmap, value) {
775
776
  return {
@@ -780,11 +781,11 @@ var createPropertyDescriptor$4 = function (bitmap, value) {
780
781
  };
781
782
  };
782
783
 
783
- var DESCRIPTORS$b = descriptors;
784
+ var DESCRIPTORS$c = descriptors;
784
785
  var definePropertyModule$2 = objectDefineProperty;
785
786
  var createPropertyDescriptor$3 = createPropertyDescriptor$4;
786
787
 
787
- var createNonEnumerableProperty$9 = DESCRIPTORS$b ? function (object, key, value) {
788
+ var createNonEnumerableProperty$9 = DESCRIPTORS$c ? function (object, key, value) {
788
789
  return definePropertyModule$2.f(object, key, createPropertyDescriptor$3(1, value));
789
790
  } : function (object, key, value) {
790
791
  object[key] = value;
@@ -792,28 +793,28 @@ var createNonEnumerableProperty$9 = DESCRIPTORS$b ? function (object, key, value
792
793
  };
793
794
 
794
795
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
795
- var global$9 = global$h;
796
- var isObject$6 = isObject$b;
796
+ var global$g = global$o;
797
+ var isObject$8 = isObject$d;
797
798
  var createNonEnumerableProperty$8 = createNonEnumerableProperty$9;
798
- var hasOwn$a = hasOwnProperty_1;
799
+ var hasOwn$b = hasOwnProperty_1;
799
800
  var shared$1 = sharedStore.exports;
800
801
  var sharedKey$1 = sharedKey$3;
801
802
  var hiddenKeys$1 = hiddenKeys$4;
802
803
 
803
804
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
804
- var TypeError$1 = global$9.TypeError;
805
- var WeakMap = global$9.WeakMap;
806
- var set, get, has;
805
+ var TypeError$2 = global$g.TypeError;
806
+ var WeakMap = global$g.WeakMap;
807
+ var set$1, get, has;
807
808
 
808
809
  var enforce = function (it) {
809
- return has(it) ? get(it) : set(it, {});
810
+ return has(it) ? get(it) : set$1(it, {});
810
811
  };
811
812
 
812
813
  var getterFor = function (TYPE) {
813
814
  return function (it) {
814
815
  var state;
815
- if (!isObject$6(it) || (state = get(it)).type !== TYPE) {
816
- throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
816
+ if (!isObject$8(it) || (state = get(it)).type !== TYPE) {
817
+ throw new TypeError$2('Incompatible receiver, ' + TYPE + ' required');
817
818
  } return state;
818
819
  };
819
820
  };
@@ -825,8 +826,8 @@ if (NATIVE_WEAK_MAP || shared$1.state) {
825
826
  store$1.has = store$1.has;
826
827
  store$1.set = store$1.set;
827
828
  /* eslint-enable no-self-assign -- prototype methods protection */
828
- set = function (it, metadata) {
829
- if (store$1.has(it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
829
+ set$1 = function (it, metadata) {
830
+ if (store$1.has(it)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
830
831
  metadata.facade = it;
831
832
  store$1.set(it, metadata);
832
833
  return metadata;
@@ -840,22 +841,22 @@ if (NATIVE_WEAK_MAP || shared$1.state) {
840
841
  } else {
841
842
  var STATE = sharedKey$1('state');
842
843
  hiddenKeys$1[STATE] = true;
843
- set = function (it, metadata) {
844
- if (hasOwn$a(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
844
+ set$1 = function (it, metadata) {
845
+ if (hasOwn$b(it, STATE)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
845
846
  metadata.facade = it;
846
847
  createNonEnumerableProperty$8(it, STATE, metadata);
847
848
  return metadata;
848
849
  };
849
850
  get = function (it) {
850
- return hasOwn$a(it, STATE) ? it[STATE] : {};
851
+ return hasOwn$b(it, STATE) ? it[STATE] : {};
851
852
  };
852
853
  has = function (it) {
853
- return hasOwn$a(it, STATE);
854
+ return hasOwn$b(it, STATE);
854
855
  };
855
856
  }
856
857
 
857
858
  var internalState = {
858
- set: set,
859
+ set: set$1,
859
860
  get: get,
860
861
  has: has,
861
862
  enforce: enforce,
@@ -868,25 +869,25 @@ var objectPropertyIsEnumerable = {};
868
869
 
869
870
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
870
871
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
871
- var getOwnPropertyDescriptor$2 = Object.getOwnPropertyDescriptor;
872
+ var getOwnPropertyDescriptor$3 = Object.getOwnPropertyDescriptor;
872
873
 
873
874
  // Nashorn ~ JDK8 bug
874
- var NASHORN_BUG = getOwnPropertyDescriptor$2 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
875
+ var NASHORN_BUG = getOwnPropertyDescriptor$3 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
875
876
 
876
877
  // `Object.prototype.propertyIsEnumerable` method implementation
877
878
  // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
878
879
  objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
879
- var descriptor = getOwnPropertyDescriptor$2(this, V);
880
+ var descriptor = getOwnPropertyDescriptor$3(this, V);
880
881
  return !!descriptor && descriptor.enumerable;
881
882
  } : $propertyIsEnumerable;
882
883
 
883
- var DESCRIPTORS$a = descriptors;
884
- var call$a = functionCall;
884
+ var DESCRIPTORS$b = descriptors;
885
+ var call$g = functionCall;
885
886
  var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
886
887
  var createPropertyDescriptor$2 = createPropertyDescriptor$4;
887
888
  var toIndexedObject$1 = toIndexedObject$5;
888
889
  var toPropertyKey = toPropertyKey$2;
889
- var hasOwn$9 = hasOwnProperty_1;
890
+ var hasOwn$a = hasOwnProperty_1;
890
891
  var IE8_DOM_DEFINE = ie8DomDefine;
891
892
 
892
893
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -894,28 +895,28 @@ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
894
895
 
895
896
  // `Object.getOwnPropertyDescriptor` method
896
897
  // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
897
- objectGetOwnPropertyDescriptor.f = DESCRIPTORS$a ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
898
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$b ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
898
899
  O = toIndexedObject$1(O);
899
900
  P = toPropertyKey(P);
900
901
  if (IE8_DOM_DEFINE) try {
901
902
  return $getOwnPropertyDescriptor(O, P);
902
903
  } catch (error) { /* empty */ }
903
- if (hasOwn$9(O, P)) return createPropertyDescriptor$2(!call$a(propertyIsEnumerableModule$1.f, O, P), O[P]);
904
+ if (hasOwn$a(O, P)) return createPropertyDescriptor$2(!call$g(propertyIsEnumerableModule$1.f, O, P), O[P]);
904
905
  };
905
906
 
906
907
  var makeBuiltIn$3 = {exports: {}};
907
908
 
908
- var DESCRIPTORS$9 = descriptors;
909
- var hasOwn$8 = hasOwnProperty_1;
909
+ var DESCRIPTORS$a = descriptors;
910
+ var hasOwn$9 = hasOwnProperty_1;
910
911
 
911
912
  var FunctionPrototype$1 = Function.prototype;
912
913
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
913
- var getDescriptor = DESCRIPTORS$9 && Object.getOwnPropertyDescriptor;
914
+ var getDescriptor = DESCRIPTORS$a && Object.getOwnPropertyDescriptor;
914
915
 
915
- var EXISTS = hasOwn$8(FunctionPrototype$1, 'name');
916
+ var EXISTS = hasOwn$9(FunctionPrototype$1, 'name');
916
917
  // additional protection from minified / mangled / dropped function names
917
918
  var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
918
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$9 || (DESCRIPTORS$9 && getDescriptor(FunctionPrototype$1, 'name').configurable));
919
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$a || (DESCRIPTORS$a && getDescriptor(FunctionPrototype$1, 'name').configurable));
919
920
 
920
921
  var functionName = {
921
922
  EXISTS: EXISTS,
@@ -923,40 +924,40 @@ var functionName = {
923
924
  CONFIGURABLE: CONFIGURABLE
924
925
  };
925
926
 
926
- var uncurryThis$g = functionUncurryThis;
927
- var isCallable$e = isCallable$l;
927
+ var uncurryThis$j = functionUncurryThis;
928
+ var isCallable$j = isCallable$q;
928
929
  var store = sharedStore.exports;
929
930
 
930
- var functionToString = uncurryThis$g(Function.toString);
931
+ var functionToString = uncurryThis$j(Function.toString);
931
932
 
932
933
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
933
- if (!isCallable$e(store.inspectSource)) {
934
+ if (!isCallable$j(store.inspectSource)) {
934
935
  store.inspectSource = function (it) {
935
936
  return functionToString(it);
936
937
  };
937
938
  }
938
939
 
939
- var inspectSource$1 = store.inspectSource;
940
+ var inspectSource$3 = store.inspectSource;
940
941
 
941
- var uncurryThis$f = functionUncurryThis;
942
- var fails$g = fails$n;
943
- var isCallable$d = isCallable$l;
944
- var hasOwn$7 = hasOwnProperty_1;
945
- var DESCRIPTORS$8 = descriptors;
942
+ var uncurryThis$i = functionUncurryThis;
943
+ var fails$j = fails$q;
944
+ var isCallable$i = isCallable$q;
945
+ var hasOwn$8 = hasOwnProperty_1;
946
+ var DESCRIPTORS$9 = descriptors;
946
947
  var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
947
- var inspectSource = inspectSource$1;
948
- var InternalStateModule$1 = internalState;
948
+ var inspectSource$2 = inspectSource$3;
949
+ var InternalStateModule$2 = internalState;
949
950
 
950
- var enforceInternalState$1 = InternalStateModule$1.enforce;
951
- var getInternalState$3 = InternalStateModule$1.get;
951
+ var enforceInternalState$1 = InternalStateModule$2.enforce;
952
+ var getInternalState$3 = InternalStateModule$2.get;
952
953
  var $String$3 = String;
953
954
  // eslint-disable-next-line es/no-object-defineproperty -- safe
954
955
  var defineProperty$5 = Object.defineProperty;
955
- var stringSlice$6 = uncurryThis$f(''.slice);
956
- var replace$6 = uncurryThis$f(''.replace);
957
- var join = uncurryThis$f([].join);
956
+ var stringSlice$6 = uncurryThis$i(''.slice);
957
+ var replace$6 = uncurryThis$i(''.replace);
958
+ var join = uncurryThis$i([].join);
958
959
 
959
- var CONFIGURABLE_LENGTH = DESCRIPTORS$8 && !fails$g(function () {
960
+ var CONFIGURABLE_LENGTH = DESCRIPTORS$9 && !fails$j(function () {
960
961
  return defineProperty$5(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
961
962
  });
962
963
 
@@ -968,21 +969,21 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
968
969
  }
969
970
  if (options && options.getter) name = 'get ' + name;
970
971
  if (options && options.setter) name = 'set ' + name;
971
- if (!hasOwn$7(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
972
- if (DESCRIPTORS$8) defineProperty$5(value, 'name', { value: name, configurable: true });
972
+ if (!hasOwn$8(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
973
+ if (DESCRIPTORS$9) defineProperty$5(value, 'name', { value: name, configurable: true });
973
974
  else value.name = name;
974
975
  }
975
- if (CONFIGURABLE_LENGTH && options && hasOwn$7(options, 'arity') && value.length !== options.arity) {
976
+ if (CONFIGURABLE_LENGTH && options && hasOwn$8(options, 'arity') && value.length !== options.arity) {
976
977
  defineProperty$5(value, 'length', { value: options.arity });
977
978
  }
978
979
  try {
979
- if (options && hasOwn$7(options, 'constructor') && options.constructor) {
980
- if (DESCRIPTORS$8) defineProperty$5(value, 'prototype', { writable: false });
980
+ if (options && hasOwn$8(options, 'constructor') && options.constructor) {
981
+ if (DESCRIPTORS$9) defineProperty$5(value, 'prototype', { writable: false });
981
982
  // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
982
983
  } else if (value.prototype) value.prototype = undefined;
983
984
  } catch (error) { /* empty */ }
984
985
  var state = enforceInternalState$1(value);
985
- if (!hasOwn$7(state, 'source')) {
986
+ if (!hasOwn$8(state, 'source')) {
986
987
  state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
987
988
  } return value;
988
989
  };
@@ -990,19 +991,19 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
990
991
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
991
992
  // eslint-disable-next-line no-extend-native -- required
992
993
  Function.prototype.toString = makeBuiltIn$2(function toString() {
993
- return isCallable$d(this) && getInternalState$3(this).source || inspectSource(this);
994
+ return isCallable$i(this) && getInternalState$3(this).source || inspectSource$2(this);
994
995
  }, 'toString');
995
996
 
996
- var isCallable$c = isCallable$l;
997
+ var isCallable$h = isCallable$q;
997
998
  var definePropertyModule$1 = objectDefineProperty;
998
999
  var makeBuiltIn$1 = makeBuiltIn$3.exports;
999
1000
  var defineGlobalProperty$1 = defineGlobalProperty$3;
1000
1001
 
1001
- var defineBuiltIn$6 = function (O, key, value, options) {
1002
+ var defineBuiltIn$8 = function (O, key, value, options) {
1002
1003
  if (!options) options = {};
1003
1004
  var simple = options.enumerable;
1004
1005
  var name = options.name !== undefined ? options.name : key;
1005
- if (isCallable$c(value)) makeBuiltIn$1(value, name, options);
1006
+ if (isCallable$h(value)) makeBuiltIn$1(value, name, options);
1006
1007
  if (options.global) {
1007
1008
  if (simple) O[key] = value;
1008
1009
  else defineGlobalProperty$1(key, value);
@@ -1040,22 +1041,22 @@ var objectGetOwnPropertySymbols = {};
1040
1041
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1041
1042
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1042
1043
 
1043
- var getBuiltIn$3 = getBuiltIn$6;
1044
- var uncurryThis$e = functionUncurryThis;
1044
+ var getBuiltIn$6 = getBuiltIn$9;
1045
+ var uncurryThis$h = functionUncurryThis;
1045
1046
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1046
1047
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
1047
- var anObject$5 = anObject$9;
1048
+ var anObject$a = anObject$e;
1048
1049
 
1049
- var concat$2 = uncurryThis$e([].concat);
1050
+ var concat$2 = uncurryThis$h([].concat);
1050
1051
 
1051
1052
  // all object keys, includes non-enumerable and symbols
1052
- var ownKeys$1 = getBuiltIn$3('Reflect', 'ownKeys') || function ownKeys(it) {
1053
- var keys = getOwnPropertyNamesModule.f(anObject$5(it));
1053
+ var ownKeys$1 = getBuiltIn$6('Reflect', 'ownKeys') || function ownKeys(it) {
1054
+ var keys = getOwnPropertyNamesModule.f(anObject$a(it));
1054
1055
  var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
1055
1056
  return getOwnPropertySymbols ? concat$2(keys, getOwnPropertySymbols(it)) : keys;
1056
1057
  };
1057
1058
 
1058
- var hasOwn$6 = hasOwnProperty_1;
1059
+ var hasOwn$7 = hasOwnProperty_1;
1059
1060
  var ownKeys = ownKeys$1;
1060
1061
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
1061
1062
  var definePropertyModule = objectDefineProperty;
@@ -1066,42 +1067,42 @@ var copyConstructorProperties$3 = function (target, source, exceptions) {
1066
1067
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1067
1068
  for (var i = 0; i < keys.length; i++) {
1068
1069
  var key = keys[i];
1069
- if (!hasOwn$6(target, key) && !(exceptions && hasOwn$6(exceptions, key))) {
1070
+ if (!hasOwn$7(target, key) && !(exceptions && hasOwn$7(exceptions, key))) {
1070
1071
  defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1071
1072
  }
1072
1073
  }
1073
1074
  };
1074
1075
 
1075
- var fails$f = fails$n;
1076
- var isCallable$b = isCallable$l;
1076
+ var fails$i = fails$q;
1077
+ var isCallable$g = isCallable$q;
1077
1078
 
1078
1079
  var replacement = /#|\.prototype\./;
1079
1080
 
1080
- var isForced$2 = function (feature, detection) {
1081
+ var isForced$3 = function (feature, detection) {
1081
1082
  var value = data[normalize(feature)];
1082
1083
  return value === POLYFILL ? true
1083
1084
  : value === NATIVE ? false
1084
- : isCallable$b(detection) ? fails$f(detection)
1085
+ : isCallable$g(detection) ? fails$i(detection)
1085
1086
  : !!detection;
1086
1087
  };
1087
1088
 
1088
- var normalize = isForced$2.normalize = function (string) {
1089
+ var normalize = isForced$3.normalize = function (string) {
1089
1090
  return String(string).replace(replacement, '.').toLowerCase();
1090
1091
  };
1091
1092
 
1092
- var data = isForced$2.data = {};
1093
- var NATIVE = isForced$2.NATIVE = 'N';
1094
- var POLYFILL = isForced$2.POLYFILL = 'P';
1093
+ var data = isForced$3.data = {};
1094
+ var NATIVE = isForced$3.NATIVE = 'N';
1095
+ var POLYFILL = isForced$3.POLYFILL = 'P';
1095
1096
 
1096
- var isForced_1 = isForced$2;
1097
+ var isForced_1 = isForced$3;
1097
1098
 
1098
- var global$8 = global$h;
1099
- var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1099
+ var global$f = global$o;
1100
+ var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
1100
1101
  var createNonEnumerableProperty$7 = createNonEnumerableProperty$9;
1101
- var defineBuiltIn$5 = defineBuiltIn$6;
1102
+ var defineBuiltIn$7 = defineBuiltIn$8;
1102
1103
  var defineGlobalProperty = defineGlobalProperty$3;
1103
1104
  var copyConstructorProperties$2 = copyConstructorProperties$3;
1104
- var isForced$1 = isForced_1;
1105
+ var isForced$2 = isForced_1;
1105
1106
 
1106
1107
  /*
1107
1108
  options.target - name of the target object
@@ -1124,19 +1125,19 @@ var _export = function (options, source) {
1124
1125
  var STATIC = options.stat;
1125
1126
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1126
1127
  if (GLOBAL) {
1127
- target = global$8;
1128
+ target = global$f;
1128
1129
  } else if (STATIC) {
1129
- target = global$8[TARGET] || defineGlobalProperty(TARGET, {});
1130
+ target = global$f[TARGET] || defineGlobalProperty(TARGET, {});
1130
1131
  } else {
1131
- target = global$8[TARGET] && global$8[TARGET].prototype;
1132
+ target = global$f[TARGET] && global$f[TARGET].prototype;
1132
1133
  }
1133
1134
  if (target) for (key in source) {
1134
1135
  sourceProperty = source[key];
1135
1136
  if (options.dontCallGetSet) {
1136
- descriptor = getOwnPropertyDescriptor$1(target, key);
1137
+ descriptor = getOwnPropertyDescriptor$2(target, key);
1137
1138
  targetProperty = descriptor && descriptor.value;
1138
1139
  } else targetProperty = target[key];
1139
- FORCED = isForced$1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1140
+ FORCED = isForced$2(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1140
1141
  // contained in target
1141
1142
  if (!FORCED && targetProperty !== undefined) {
1142
1143
  if (typeof sourceProperty == typeof targetProperty) continue;
@@ -1146,22 +1147,22 @@ var _export = function (options, source) {
1146
1147
  if (options.sham || (targetProperty && targetProperty.sham)) {
1147
1148
  createNonEnumerableProperty$7(sourceProperty, 'sham', true);
1148
1149
  }
1149
- defineBuiltIn$5(target, key, sourceProperty, options);
1150
+ defineBuiltIn$7(target, key, sourceProperty, options);
1150
1151
  }
1151
1152
  };
1152
1153
 
1153
- var fails$e = fails$n;
1154
+ var fails$h = fails$q;
1154
1155
 
1155
- var correctPrototypeGetter = !fails$e(function () {
1156
+ var correctPrototypeGetter = !fails$h(function () {
1156
1157
  function F() { /* empty */ }
1157
1158
  F.prototype.constructor = null;
1158
1159
  // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1159
1160
  return Object.getPrototypeOf(new F()) !== F.prototype;
1160
1161
  });
1161
1162
 
1162
- var hasOwn$5 = hasOwnProperty_1;
1163
- var isCallable$a = isCallable$l;
1164
- var toObject$4 = toObject$6;
1163
+ var hasOwn$6 = hasOwnProperty_1;
1164
+ var isCallable$f = isCallable$q;
1165
+ var toObject$5 = toObject$7;
1165
1166
  var sharedKey = sharedKey$3;
1166
1167
  var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
1167
1168
 
@@ -1173,22 +1174,22 @@ var ObjectPrototype = $Object$1.prototype;
1173
1174
  // https://tc39.es/ecma262/#sec-object.getprototypeof
1174
1175
  // eslint-disable-next-line es/no-object-getprototypeof -- safe
1175
1176
  var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf : function (O) {
1176
- var object = toObject$4(O);
1177
- if (hasOwn$5(object, IE_PROTO)) return object[IE_PROTO];
1177
+ var object = toObject$5(O);
1178
+ if (hasOwn$6(object, IE_PROTO)) return object[IE_PROTO];
1178
1179
  var constructor = object.constructor;
1179
- if (isCallable$a(constructor) && object instanceof constructor) {
1180
+ if (isCallable$f(constructor) && object instanceof constructor) {
1180
1181
  return constructor.prototype;
1181
1182
  } return object instanceof $Object$1 ? ObjectPrototype : null;
1182
1183
  };
1183
1184
 
1184
- var fails$d = fails$n;
1185
- var isCallable$9 = isCallable$l;
1186
- var isObject$5 = isObject$b;
1185
+ var fails$g = fails$q;
1186
+ var isCallable$e = isCallable$q;
1187
+ var isObject$7 = isObject$d;
1187
1188
  var getPrototypeOf$1 = objectGetPrototypeOf;
1188
- var defineBuiltIn$4 = defineBuiltIn$6;
1189
- var wellKnownSymbol$b = wellKnownSymbol$e;
1189
+ var defineBuiltIn$6 = defineBuiltIn$8;
1190
+ var wellKnownSymbol$g = wellKnownSymbol$j;
1190
1191
 
1191
- var ITERATOR$2 = wellKnownSymbol$b('iterator');
1192
+ var ITERATOR$5 = wellKnownSymbol$g('iterator');
1192
1193
  var BUGGY_SAFARI_ITERATORS$1 = false;
1193
1194
 
1194
1195
  // `%IteratorPrototype%` object
@@ -1206,18 +1207,18 @@ if ([].keys) {
1206
1207
  }
1207
1208
  }
1208
1209
 
1209
- var NEW_ITERATOR_PROTOTYPE = !isObject$5(IteratorPrototype$2) || fails$d(function () {
1210
+ var NEW_ITERATOR_PROTOTYPE = !isObject$7(IteratorPrototype$2) || fails$g(function () {
1210
1211
  var test = {};
1211
1212
  // FF44- legacy iterators case
1212
- return IteratorPrototype$2[ITERATOR$2].call(test) !== test;
1213
+ return IteratorPrototype$2[ITERATOR$5].call(test) !== test;
1213
1214
  });
1214
1215
 
1215
1216
  if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1216
1217
 
1217
1218
  // `%IteratorPrototype%[@@iterator]()` method
1218
1219
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1219
- if (!isCallable$9(IteratorPrototype$2[ITERATOR$2])) {
1220
- defineBuiltIn$4(IteratorPrototype$2, ITERATOR$2, function () {
1220
+ if (!isCallable$e(IteratorPrototype$2[ITERATOR$5])) {
1221
+ defineBuiltIn$6(IteratorPrototype$2, ITERATOR$5, function () {
1221
1222
  return this;
1222
1223
  });
1223
1224
  }
@@ -1228,14 +1229,14 @@ var iteratorsCore = {
1228
1229
  };
1229
1230
 
1230
1231
  var defineProperty$4 = objectDefineProperty.f;
1231
- var hasOwn$4 = hasOwnProperty_1;
1232
- var wellKnownSymbol$a = wellKnownSymbol$e;
1232
+ var hasOwn$5 = hasOwnProperty_1;
1233
+ var wellKnownSymbol$f = wellKnownSymbol$j;
1233
1234
 
1234
- var TO_STRING_TAG$2 = wellKnownSymbol$a('toStringTag');
1235
+ var TO_STRING_TAG$2 = wellKnownSymbol$f('toStringTag');
1235
1236
 
1236
- var setToStringTag$3 = function (target, TAG, STATIC) {
1237
+ var setToStringTag$4 = function (target, TAG, STATIC) {
1237
1238
  if (target && !STATIC) target = target.prototype;
1238
- if (target && !hasOwn$4(target, TO_STRING_TAG$2)) {
1239
+ if (target && !hasOwn$5(target, TO_STRING_TAG$2)) {
1239
1240
  defineProperty$4(target, TO_STRING_TAG$2, { configurable: true, value: TAG });
1240
1241
  }
1241
1242
  };
@@ -1243,48 +1244,48 @@ var setToStringTag$3 = function (target, TAG, STATIC) {
1243
1244
  var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
1244
1245
  var create$2 = objectCreate;
1245
1246
  var createPropertyDescriptor$1 = createPropertyDescriptor$4;
1246
- var setToStringTag$2 = setToStringTag$3;
1247
- var Iterators$2 = iterators;
1247
+ var setToStringTag$3 = setToStringTag$4;
1248
+ var Iterators$4 = iterators;
1248
1249
 
1249
1250
  var returnThis$1 = function () { return this; };
1250
1251
 
1251
1252
  var iteratorCreateConstructor = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
1252
1253
  var TO_STRING_TAG = NAME + ' Iterator';
1253
1254
  IteratorConstructor.prototype = create$2(IteratorPrototype$1, { next: createPropertyDescriptor$1(+!ENUMERABLE_NEXT, next) });
1254
- setToStringTag$2(IteratorConstructor, TO_STRING_TAG, false);
1255
- Iterators$2[TO_STRING_TAG] = returnThis$1;
1255
+ setToStringTag$3(IteratorConstructor, TO_STRING_TAG, false);
1256
+ Iterators$4[TO_STRING_TAG] = returnThis$1;
1256
1257
  return IteratorConstructor;
1257
1258
  };
1258
1259
 
1259
- var uncurryThis$d = functionUncurryThis;
1260
- var aCallable = aCallable$2;
1260
+ var uncurryThis$g = functionUncurryThis;
1261
+ var aCallable$7 = aCallable$9;
1261
1262
 
1262
1263
  var functionUncurryThisAccessor = function (object, key, method) {
1263
1264
  try {
1264
1265
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1265
- return uncurryThis$d(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
1266
+ return uncurryThis$g(aCallable$7(Object.getOwnPropertyDescriptor(object, key)[method]));
1266
1267
  } catch (error) { /* empty */ }
1267
1268
  };
1268
1269
 
1269
- var isObject$4 = isObject$b;
1270
+ var isObject$6 = isObject$d;
1270
1271
 
1271
1272
  var isPossiblePrototype$1 = function (argument) {
1272
- return isObject$4(argument) || argument === null;
1273
+ return isObject$6(argument) || argument === null;
1273
1274
  };
1274
1275
 
1275
1276
  var isPossiblePrototype = isPossiblePrototype$1;
1276
1277
 
1277
1278
  var $String$2 = String;
1278
- var $TypeError$5 = TypeError;
1279
+ var $TypeError$c = TypeError;
1279
1280
 
1280
1281
  var aPossiblePrototype$1 = function (argument) {
1281
1282
  if (isPossiblePrototype(argument)) return argument;
1282
- throw new $TypeError$5("Can't set " + $String$2(argument) + ' as a prototype');
1283
+ throw new $TypeError$c("Can't set " + $String$2(argument) + ' as a prototype');
1283
1284
  };
1284
1285
 
1285
1286
  /* eslint-disable no-proto -- safe */
1286
1287
  var uncurryThisAccessor = functionUncurryThisAccessor;
1287
- var isObject$3 = isObject$b;
1288
+ var isObject$5 = isObject$d;
1288
1289
  var requireObjectCoercible$4 = requireObjectCoercible$7;
1289
1290
  var aPossiblePrototype = aPossiblePrototype$1;
1290
1291
 
@@ -1304,32 +1305,32 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1304
1305
  return function setPrototypeOf(O, proto) {
1305
1306
  requireObjectCoercible$4(O);
1306
1307
  aPossiblePrototype(proto);
1307
- if (!isObject$3(O)) return O;
1308
+ if (!isObject$5(O)) return O;
1308
1309
  if (CORRECT_SETTER) setter(O, proto);
1309
1310
  else O.__proto__ = proto;
1310
1311
  return O;
1311
1312
  };
1312
1313
  }() : undefined);
1313
1314
 
1314
- var $$b = _export;
1315
- var call$9 = functionCall;
1315
+ var $$i = _export;
1316
+ var call$f = functionCall;
1316
1317
  var FunctionName = functionName;
1317
- var isCallable$8 = isCallable$l;
1318
+ var isCallable$d = isCallable$q;
1318
1319
  var createIteratorConstructor = iteratorCreateConstructor;
1319
1320
  var getPrototypeOf = objectGetPrototypeOf;
1320
- var setPrototypeOf$2 = objectSetPrototypeOf;
1321
- var setToStringTag$1 = setToStringTag$3;
1321
+ var setPrototypeOf$3 = objectSetPrototypeOf;
1322
+ var setToStringTag$2 = setToStringTag$4;
1322
1323
  var createNonEnumerableProperty$6 = createNonEnumerableProperty$9;
1323
- var defineBuiltIn$3 = defineBuiltIn$6;
1324
- var wellKnownSymbol$9 = wellKnownSymbol$e;
1325
- var Iterators$1 = iterators;
1324
+ var defineBuiltIn$5 = defineBuiltIn$8;
1325
+ var wellKnownSymbol$e = wellKnownSymbol$j;
1326
+ var Iterators$3 = iterators;
1326
1327
  var IteratorsCore = iteratorsCore;
1327
1328
 
1328
1329
  var PROPER_FUNCTION_NAME$1 = FunctionName.PROPER;
1329
1330
  var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
1330
1331
  var IteratorPrototype = IteratorsCore.IteratorPrototype;
1331
1332
  var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
1332
- var ITERATOR$1 = wellKnownSymbol$9('iterator');
1333
+ var ITERATOR$4 = wellKnownSymbol$e('iterator');
1333
1334
  var KEYS = 'keys';
1334
1335
  var VALUES = 'values';
1335
1336
  var ENTRIES = 'entries';
@@ -1355,7 +1356,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1355
1356
  var TO_STRING_TAG = NAME + ' Iterator';
1356
1357
  var INCORRECT_VALUES_NAME = false;
1357
1358
  var IterablePrototype = Iterable.prototype;
1358
- var nativeIterator = IterablePrototype[ITERATOR$1]
1359
+ var nativeIterator = IterablePrototype[ITERATOR$4]
1359
1360
  || IterablePrototype['@@iterator']
1360
1361
  || DEFAULT && IterablePrototype[DEFAULT];
1361
1362
  var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
@@ -1367,14 +1368,14 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1367
1368
  CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
1368
1369
  if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
1369
1370
  if (getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1370
- if (setPrototypeOf$2) {
1371
- setPrototypeOf$2(CurrentIteratorPrototype, IteratorPrototype);
1372
- } else if (!isCallable$8(CurrentIteratorPrototype[ITERATOR$1])) {
1373
- defineBuiltIn$3(CurrentIteratorPrototype, ITERATOR$1, returnThis);
1371
+ if (setPrototypeOf$3) {
1372
+ setPrototypeOf$3(CurrentIteratorPrototype, IteratorPrototype);
1373
+ } else if (!isCallable$d(CurrentIteratorPrototype[ITERATOR$4])) {
1374
+ defineBuiltIn$5(CurrentIteratorPrototype, ITERATOR$4, returnThis);
1374
1375
  }
1375
1376
  }
1376
1377
  // Set @@toStringTag to native iterators
1377
- setToStringTag$1(CurrentIteratorPrototype, TO_STRING_TAG, true);
1378
+ setToStringTag$2(CurrentIteratorPrototype, TO_STRING_TAG, true);
1378
1379
  }
1379
1380
  }
1380
1381
 
@@ -1384,7 +1385,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1384
1385
  createNonEnumerableProperty$6(IterablePrototype, 'name', VALUES);
1385
1386
  } else {
1386
1387
  INCORRECT_VALUES_NAME = true;
1387
- defaultIterator = function values() { return call$9(nativeIterator, this); };
1388
+ defaultIterator = function values() { return call$f(nativeIterator, this); };
1388
1389
  }
1389
1390
  }
1390
1391
 
@@ -1397,16 +1398,16 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1397
1398
  };
1398
1399
  if (FORCED) for (KEY in methods) {
1399
1400
  if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1400
- defineBuiltIn$3(IterablePrototype, KEY, methods[KEY]);
1401
+ defineBuiltIn$5(IterablePrototype, KEY, methods[KEY]);
1401
1402
  }
1402
- } else $$b({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1403
+ } else $$i({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1403
1404
  }
1404
1405
 
1405
1406
  // define iterator
1406
- if (IterablePrototype[ITERATOR$1] !== defaultIterator) {
1407
- defineBuiltIn$3(IterablePrototype, ITERATOR$1, defaultIterator, { name: DEFAULT });
1407
+ if (IterablePrototype[ITERATOR$4] !== defaultIterator) {
1408
+ defineBuiltIn$5(IterablePrototype, ITERATOR$4, defaultIterator, { name: DEFAULT });
1408
1409
  }
1409
- Iterators$1[NAME] = defaultIterator;
1410
+ Iterators$3[NAME] = defaultIterator;
1410
1411
 
1411
1412
  return methods;
1412
1413
  };
@@ -1419,16 +1420,16 @@ var createIterResultObject$1 = function (value, done) {
1419
1420
 
1420
1421
  var toIndexedObject = toIndexedObject$5;
1421
1422
  var addToUnscopables$2 = addToUnscopables$3;
1422
- var Iterators = iterators;
1423
- var InternalStateModule = internalState;
1423
+ var Iterators$2 = iterators;
1424
+ var InternalStateModule$1 = internalState;
1424
1425
  var defineProperty$3 = objectDefineProperty.f;
1425
1426
  var defineIterator = iteratorDefine;
1426
1427
  var createIterResultObject = createIterResultObject$1;
1427
- var DESCRIPTORS$7 = descriptors;
1428
+ var DESCRIPTORS$8 = descriptors;
1428
1429
 
1429
1430
  var ARRAY_ITERATOR = 'Array Iterator';
1430
- var setInternalState = InternalStateModule.set;
1431
- var getInternalState$2 = InternalStateModule.getterFor(ARRAY_ITERATOR);
1431
+ var setInternalState$1 = InternalStateModule$1.set;
1432
+ var getInternalState$2 = InternalStateModule$1.getterFor(ARRAY_ITERATOR);
1432
1433
 
1433
1434
  // `Array.prototype.entries` method
1434
1435
  // https://tc39.es/ecma262/#sec-array.prototype.entries
@@ -1441,7 +1442,7 @@ var getInternalState$2 = InternalStateModule.getterFor(ARRAY_ITERATOR);
1441
1442
  // `CreateArrayIterator` internal method
1442
1443
  // https://tc39.es/ecma262/#sec-createarrayiterator
1443
1444
  var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) {
1444
- setInternalState(this, {
1445
+ setInternalState$1(this, {
1445
1446
  type: ARRAY_ITERATOR,
1446
1447
  target: toIndexedObject(iterated), // target
1447
1448
  index: 0, // next index
@@ -1466,7 +1467,7 @@ var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind)
1466
1467
  // argumentsList[@@iterator] is %ArrayProto_values%
1467
1468
  // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
1468
1469
  // https://tc39.es/ecma262/#sec-createmappedargumentsobject
1469
- var values = Iterators.Arguments = Iterators.Array;
1470
+ var values = Iterators$2.Arguments = Iterators$2.Array;
1470
1471
 
1471
1472
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
1472
1473
  addToUnscopables$2('keys');
@@ -1474,7 +1475,7 @@ addToUnscopables$2('values');
1474
1475
  addToUnscopables$2('entries');
1475
1476
 
1476
1477
  // V8 ~ Chrome 45- bug
1477
- if (DESCRIPTORS$7 && values.name !== 'values') try {
1478
+ if (DESCRIPTORS$8 && values.name !== 'values') try {
1478
1479
  defineProperty$3(values, 'name', { value: 'values' });
1479
1480
  } catch (error) { /* empty */ }
1480
1481
 
@@ -1522,26 +1523,26 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
1522
1523
 
1523
1524
  var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
1524
1525
 
1525
- var global$7 = global$h;
1526
+ var global$e = global$o;
1526
1527
  var DOMIterables = domIterables;
1527
1528
  var DOMTokenListPrototype = domTokenListPrototype;
1528
1529
  var ArrayIteratorMethods = es_array_iterator;
1529
1530
  var createNonEnumerableProperty$5 = createNonEnumerableProperty$9;
1530
- var setToStringTag = setToStringTag$3;
1531
- var wellKnownSymbol$8 = wellKnownSymbol$e;
1531
+ var setToStringTag$1 = setToStringTag$4;
1532
+ var wellKnownSymbol$d = wellKnownSymbol$j;
1532
1533
 
1533
- var ITERATOR = wellKnownSymbol$8('iterator');
1534
+ var ITERATOR$3 = wellKnownSymbol$d('iterator');
1534
1535
  var ArrayValues = ArrayIteratorMethods.values;
1535
1536
 
1536
1537
  var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1537
1538
  if (CollectionPrototype) {
1538
1539
  // some Chrome versions have non-configurable methods on DOMTokenList
1539
- if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
1540
- createNonEnumerableProperty$5(CollectionPrototype, ITERATOR, ArrayValues);
1540
+ if (CollectionPrototype[ITERATOR$3] !== ArrayValues) try {
1541
+ createNonEnumerableProperty$5(CollectionPrototype, ITERATOR$3, ArrayValues);
1541
1542
  } catch (error) {
1542
- CollectionPrototype[ITERATOR] = ArrayValues;
1543
+ CollectionPrototype[ITERATOR$3] = ArrayValues;
1543
1544
  }
1544
- setToStringTag(CollectionPrototype, COLLECTION_NAME, true);
1545
+ setToStringTag$1(CollectionPrototype, COLLECTION_NAME, true);
1545
1546
  if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
1546
1547
  // some Chrome versions have non-configurable methods on DOMTokenList
1547
1548
  if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
@@ -1554,32 +1555,32 @@ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1554
1555
  };
1555
1556
 
1556
1557
  for (var COLLECTION_NAME in DOMIterables) {
1557
- handlePrototype(global$7[COLLECTION_NAME] && global$7[COLLECTION_NAME].prototype, COLLECTION_NAME);
1558
+ handlePrototype(global$e[COLLECTION_NAME] && global$e[COLLECTION_NAME].prototype, COLLECTION_NAME);
1558
1559
  }
1559
1560
 
1560
1561
  handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
1561
1562
 
1562
- var DESCRIPTORS$6 = descriptors;
1563
- var uncurryThis$c = functionUncurryThis;
1564
- var call$8 = functionCall;
1565
- var fails$c = fails$n;
1563
+ var DESCRIPTORS$7 = descriptors;
1564
+ var uncurryThis$f = functionUncurryThis;
1565
+ var call$e = functionCall;
1566
+ var fails$f = fails$q;
1566
1567
  var objectKeys = objectKeys$2;
1567
1568
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1568
1569
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
1569
- var toObject$3 = toObject$6;
1570
- var IndexedObject = indexedObject;
1570
+ var toObject$4 = toObject$7;
1571
+ var IndexedObject$1 = indexedObject;
1571
1572
 
1572
1573
  // eslint-disable-next-line es/no-object-assign -- safe
1573
1574
  var $assign = Object.assign;
1574
1575
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1575
1576
  var defineProperty$2 = Object.defineProperty;
1576
- var concat$1 = uncurryThis$c([].concat);
1577
+ var concat$1 = uncurryThis$f([].concat);
1577
1578
 
1578
1579
  // `Object.assign` method
1579
1580
  // https://tc39.es/ecma262/#sec-object.assign
1580
- var objectAssign = !$assign || fails$c(function () {
1581
+ var objectAssign = !$assign || fails$f(function () {
1581
1582
  // should have correct order of operations (Edge bug)
1582
- if (DESCRIPTORS$6 && $assign({ b: 1 }, $assign(defineProperty$2({}, 'a', {
1583
+ if (DESCRIPTORS$7 && $assign({ b: 1 }, $assign(defineProperty$2({}, 'a', {
1583
1584
  enumerable: true,
1584
1585
  get: function () {
1585
1586
  defineProperty$2(this, 'b', {
@@ -1598,31 +1599,31 @@ var objectAssign = !$assign || fails$c(function () {
1598
1599
  alphabet.split('').forEach(function (chr) { B[chr] = chr; });
1599
1600
  return $assign({}, A)[symbol] !== 7 || objectKeys($assign({}, B)).join('') !== alphabet;
1600
1601
  }) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
1601
- var T = toObject$3(target);
1602
+ var T = toObject$4(target);
1602
1603
  var argumentsLength = arguments.length;
1603
1604
  var index = 1;
1604
1605
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1605
1606
  var propertyIsEnumerable = propertyIsEnumerableModule.f;
1606
1607
  while (argumentsLength > index) {
1607
- var S = IndexedObject(arguments[index++]);
1608
+ var S = IndexedObject$1(arguments[index++]);
1608
1609
  var keys = getOwnPropertySymbols ? concat$1(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
1609
1610
  var length = keys.length;
1610
1611
  var j = 0;
1611
1612
  var key;
1612
1613
  while (length > j) {
1613
1614
  key = keys[j++];
1614
- if (!DESCRIPTORS$6 || call$8(propertyIsEnumerable, S, key)) T[key] = S[key];
1615
+ if (!DESCRIPTORS$7 || call$e(propertyIsEnumerable, S, key)) T[key] = S[key];
1615
1616
  }
1616
1617
  } return T;
1617
1618
  } : $assign;
1618
1619
 
1619
- var $$a = _export;
1620
+ var $$h = _export;
1620
1621
  var assign = objectAssign;
1621
1622
 
1622
1623
  // `Object.assign` method
1623
1624
  // https://tc39.es/ecma262/#sec-object.assign
1624
1625
  // eslint-disable-next-line es/no-object-assign -- required for testing
1625
- $$a({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1626
+ $$h({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1626
1627
  assign: assign
1627
1628
  });
1628
1629
 
@@ -1632,18 +1633,18 @@ const FormFieldWrapper = styled.div(_t$7 || (_t$7 = _$7`
1632
1633
  margin-bottom: var(--goa-space-l);
1633
1634
  `));
1634
1635
 
1635
- var $$9 = _export;
1636
- var toObject$2 = toObject$6;
1637
- var lengthOfArrayLike$1 = lengthOfArrayLike$3;
1636
+ var $$g = _export;
1637
+ var toObject$3 = toObject$7;
1638
+ var lengthOfArrayLike$3 = lengthOfArrayLike$5;
1638
1639
  var toIntegerOrInfinity$3 = toIntegerOrInfinity$6;
1639
1640
  var addToUnscopables$1 = addToUnscopables$3;
1640
1641
 
1641
1642
  // `Array.prototype.at` method
1642
1643
  // https://tc39.es/ecma262/#sec-array.prototype.at
1643
- $$9({ target: 'Array', proto: true }, {
1644
+ $$g({ target: 'Array', proto: true }, {
1644
1645
  at: function at(index) {
1645
- var O = toObject$2(this);
1646
- var len = lengthOfArrayLike$1(O);
1646
+ var O = toObject$3(this);
1647
+ var len = lengthOfArrayLike$3(O);
1647
1648
  var relativeIndex = toIntegerOrInfinity$3(index);
1648
1649
  var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
1649
1650
  return (k < 0 || k >= len) ? undefined : O[k];
@@ -1652,9 +1653,9 @@ $$9({ target: 'Array', proto: true }, {
1652
1653
 
1653
1654
  addToUnscopables$1('at');
1654
1655
 
1655
- var wellKnownSymbol$7 = wellKnownSymbol$e;
1656
+ var wellKnownSymbol$c = wellKnownSymbol$j;
1656
1657
 
1657
- var TO_STRING_TAG$1 = wellKnownSymbol$7('toStringTag');
1658
+ var TO_STRING_TAG$1 = wellKnownSymbol$c('toStringTag');
1658
1659
  var test = {};
1659
1660
 
1660
1661
  test[TO_STRING_TAG$1] = 'z';
@@ -1662,15 +1663,15 @@ test[TO_STRING_TAG$1] = 'z';
1662
1663
  var toStringTagSupport = String(test) === '[object z]';
1663
1664
 
1664
1665
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1665
- var isCallable$7 = isCallable$l;
1666
- var classofRaw = classofRaw$1;
1667
- var wellKnownSymbol$6 = wellKnownSymbol$e;
1666
+ var isCallable$c = isCallable$q;
1667
+ var classofRaw$1 = classofRaw$2;
1668
+ var wellKnownSymbol$b = wellKnownSymbol$j;
1668
1669
 
1669
- var TO_STRING_TAG = wellKnownSymbol$6('toStringTag');
1670
+ var TO_STRING_TAG = wellKnownSymbol$b('toStringTag');
1670
1671
  var $Object = Object;
1671
1672
 
1672
1673
  // ES3 wrong here
1673
- var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
1674
+ var CORRECT_ARGUMENTS = classofRaw$1(function () { return arguments; }()) === 'Arguments';
1674
1675
 
1675
1676
  // fallback for IE11 Script Access Denied error
1676
1677
  var tryGet = function (it, key) {
@@ -1680,32 +1681,32 @@ var tryGet = function (it, key) {
1680
1681
  };
1681
1682
 
1682
1683
  // getting tag from ES6+ `Object.prototype.toString`
1683
- var classof$6 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1684
+ var classof$9 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
1684
1685
  var O, tag, result;
1685
1686
  return it === undefined ? 'Undefined' : it === null ? 'Null'
1686
1687
  // @@toStringTag case
1687
1688
  : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1688
1689
  // builtinTag case
1689
- : CORRECT_ARGUMENTS ? classofRaw(O)
1690
+ : CORRECT_ARGUMENTS ? classofRaw$1(O)
1690
1691
  // ES3 arguments fallback
1691
- : (result = classofRaw(O)) === 'Object' && isCallable$7(O.callee) ? 'Arguments' : result;
1692
+ : (result = classofRaw$1(O)) === 'Object' && isCallable$c(O.callee) ? 'Arguments' : result;
1692
1693
  };
1693
1694
 
1694
- var classof$5 = classof$6;
1695
+ var classof$8 = classof$9;
1695
1696
 
1696
1697
  var $String$1 = String;
1697
1698
 
1698
1699
  var toString$a = function (argument) {
1699
- if (classof$5(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
1700
+ if (classof$8(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
1700
1701
  return $String$1(argument);
1701
1702
  };
1702
1703
 
1703
- var anObject$4 = anObject$9;
1704
+ var anObject$9 = anObject$e;
1704
1705
 
1705
1706
  // `RegExp.prototype.flags` getter implementation
1706
1707
  // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
1707
1708
  var regexpFlags$1 = function () {
1708
- var that = anObject$4(this);
1709
+ var that = anObject$9(this);
1709
1710
  var result = '';
1710
1711
  if (that.hasIndices) result += 'd';
1711
1712
  if (that.global) result += 'g';
@@ -1718,13 +1719,13 @@ var regexpFlags$1 = function () {
1718
1719
  return result;
1719
1720
  };
1720
1721
 
1721
- var fails$b = fails$n;
1722
- var global$6 = global$h;
1722
+ var fails$e = fails$q;
1723
+ var global$d = global$o;
1723
1724
 
1724
1725
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
1725
- var $RegExp$2 = global$6.RegExp;
1726
+ var $RegExp$2 = global$d.RegExp;
1726
1727
 
1727
- var UNSUPPORTED_Y$2 = fails$b(function () {
1728
+ var UNSUPPORTED_Y$2 = fails$e(function () {
1728
1729
  var re = $RegExp$2('a', 'y');
1729
1730
  re.lastIndex = 2;
1730
1731
  return re.exec('abcd') !== null;
@@ -1732,11 +1733,11 @@ var UNSUPPORTED_Y$2 = fails$b(function () {
1732
1733
 
1733
1734
  // UC Browser bug
1734
1735
  // https://github.com/zloirock/core-js/issues/1008
1735
- var MISSED_STICKY$1 = UNSUPPORTED_Y$2 || fails$b(function () {
1736
+ var MISSED_STICKY$1 = UNSUPPORTED_Y$2 || fails$e(function () {
1736
1737
  return !$RegExp$2('a', 'y').sticky;
1737
1738
  });
1738
1739
 
1739
- var BROKEN_CARET = UNSUPPORTED_Y$2 || fails$b(function () {
1740
+ var BROKEN_CARET = UNSUPPORTED_Y$2 || fails$e(function () {
1740
1741
  // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
1741
1742
  var re = $RegExp$2('^r', 'gy');
1742
1743
  re.lastIndex = 2;
@@ -1749,24 +1750,24 @@ var regexpStickyHelpers = {
1749
1750
  UNSUPPORTED_Y: UNSUPPORTED_Y$2
1750
1751
  };
1751
1752
 
1752
- var fails$a = fails$n;
1753
- var global$5 = global$h;
1753
+ var fails$d = fails$q;
1754
+ var global$c = global$o;
1754
1755
 
1755
1756
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
1756
- var $RegExp$1 = global$5.RegExp;
1757
+ var $RegExp$1 = global$c.RegExp;
1757
1758
 
1758
- var regexpUnsupportedDotAll = fails$a(function () {
1759
+ var regexpUnsupportedDotAll = fails$d(function () {
1759
1760
  var re = $RegExp$1('.', 's');
1760
1761
  return !(re.dotAll && re.test('\n') && re.flags === 's');
1761
1762
  });
1762
1763
 
1763
- var fails$9 = fails$n;
1764
- var global$4 = global$h;
1764
+ var fails$c = fails$q;
1765
+ var global$b = global$o;
1765
1766
 
1766
1767
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
1767
- var $RegExp = global$4.RegExp;
1768
+ var $RegExp = global$b.RegExp;
1768
1769
 
1769
- var regexpUnsupportedNcg = fails$9(function () {
1770
+ var regexpUnsupportedNcg = fails$c(function () {
1770
1771
  var re = $RegExp('(?<a>b)', 'g');
1771
1772
  return re.exec('b').groups.a !== 'b' ||
1772
1773
  'b'.replace(re, '$<a>c') !== 'bc';
@@ -1774,8 +1775,8 @@ var regexpUnsupportedNcg = fails$9(function () {
1774
1775
 
1775
1776
  /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
1776
1777
  /* eslint-disable regexp/no-useless-quantifier -- testing */
1777
- var call$7 = functionCall;
1778
- var uncurryThis$b = functionUncurryThis;
1778
+ var call$d = functionCall;
1779
+ var uncurryThis$e = functionUncurryThis;
1779
1780
  var toString$9 = toString$a;
1780
1781
  var regexpFlags = regexpFlags$1;
1781
1782
  var stickyHelpers$1 = regexpStickyHelpers;
@@ -1788,16 +1789,16 @@ var UNSUPPORTED_NCG$1 = regexpUnsupportedNcg;
1788
1789
  var nativeReplace = shared('native-string-replace', String.prototype.replace);
1789
1790
  var nativeExec = RegExp.prototype.exec;
1790
1791
  var patchedExec = nativeExec;
1791
- var charAt$6 = uncurryThis$b(''.charAt);
1792
- var indexOf = uncurryThis$b(''.indexOf);
1793
- var replace$5 = uncurryThis$b(''.replace);
1794
- var stringSlice$5 = uncurryThis$b(''.slice);
1792
+ var charAt$6 = uncurryThis$e(''.charAt);
1793
+ var indexOf = uncurryThis$e(''.indexOf);
1794
+ var replace$5 = uncurryThis$e(''.replace);
1795
+ var stringSlice$5 = uncurryThis$e(''.slice);
1795
1796
 
1796
1797
  var UPDATES_LAST_INDEX_WRONG = (function () {
1797
1798
  var re1 = /a/;
1798
1799
  var re2 = /b*/g;
1799
- call$7(nativeExec, re1, 'a');
1800
- call$7(nativeExec, re2, 'a');
1800
+ call$d(nativeExec, re1, 'a');
1801
+ call$d(nativeExec, re2, 'a');
1801
1802
  return re1.lastIndex !== 0 || re2.lastIndex !== 0;
1802
1803
  })();
1803
1804
 
@@ -1818,14 +1819,14 @@ if (PATCH) {
1818
1819
 
1819
1820
  if (raw) {
1820
1821
  raw.lastIndex = re.lastIndex;
1821
- result = call$7(patchedExec, raw, str);
1822
+ result = call$d(patchedExec, raw, str);
1822
1823
  re.lastIndex = raw.lastIndex;
1823
1824
  return result;
1824
1825
  }
1825
1826
 
1826
1827
  var groups = state.groups;
1827
1828
  var sticky = UNSUPPORTED_Y$1 && re.sticky;
1828
- var flags = call$7(regexpFlags, re);
1829
+ var flags = call$d(regexpFlags, re);
1829
1830
  var source = re.source;
1830
1831
  var charsAdded = 0;
1831
1832
  var strCopy = str;
@@ -1853,7 +1854,7 @@ if (PATCH) {
1853
1854
  }
1854
1855
  if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
1855
1856
 
1856
- match = call$7(nativeExec, sticky ? reCopy : re, strCopy);
1857
+ match = call$d(nativeExec, sticky ? reCopy : re, strCopy);
1857
1858
 
1858
1859
  if (sticky) {
1859
1860
  if (match) {
@@ -1868,7 +1869,7 @@ if (PATCH) {
1868
1869
  if (NPCG_INCLUDED && match && match.length > 1) {
1869
1870
  // Fix browsers whose `exec` methods don't consistently return `undefined`
1870
1871
  // for NPCG, like IE8. NOTE: This doesn't work for /(.?)?/
1871
- call$7(nativeReplace, match[0], reCopy, function () {
1872
+ call$d(nativeReplace, match[0], reCopy, function () {
1872
1873
  for (i = 1; i < arguments.length - 2; i++) {
1873
1874
  if (arguments[i] === undefined) match[i] = undefined;
1874
1875
  }
@@ -1889,21 +1890,21 @@ if (PATCH) {
1889
1890
 
1890
1891
  var regexpExec$2 = patchedExec;
1891
1892
 
1892
- var $$8 = _export;
1893
- var exec$2 = regexpExec$2;
1893
+ var $$f = _export;
1894
+ var exec$3 = regexpExec$2;
1894
1895
 
1895
1896
  // `RegExp.prototype.exec` method
1896
1897
  // https://tc39.es/ecma262/#sec-regexp.prototype.exec
1897
- $$8({ target: 'RegExp', proto: true, forced: /./.exec !== exec$2 }, {
1898
- exec: exec$2
1898
+ $$f({ target: 'RegExp', proto: true, forced: /./.exec !== exec$3 }, {
1899
+ exec: exec$3
1899
1900
  });
1900
1901
 
1901
1902
  // TODO: Remove from `core-js@4` since it's moved to entry points
1902
1903
 
1903
- var $$7 = _export;
1904
- var call$6 = functionCall;
1905
- var isCallable$6 = isCallable$l;
1906
- var anObject$3 = anObject$9;
1904
+ var $$e = _export;
1905
+ var call$c = functionCall;
1906
+ var isCallable$b = isCallable$q;
1907
+ var anObject$8 = anObject$e;
1907
1908
  var toString$8 = toString$a;
1908
1909
 
1909
1910
  var DELEGATES_TO_EXEC = function () {
@@ -1920,36 +1921,36 @@ var nativeTest = /./.test;
1920
1921
 
1921
1922
  // `RegExp.prototype.test` method
1922
1923
  // https://tc39.es/ecma262/#sec-regexp.prototype.test
1923
- $$7({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
1924
+ $$e({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
1924
1925
  test: function (S) {
1925
- var R = anObject$3(this);
1926
+ var R = anObject$8(this);
1926
1927
  var string = toString$8(S);
1927
1928
  var exec = R.exec;
1928
- if (!isCallable$6(exec)) return call$6(nativeTest, R, string);
1929
- var result = call$6(exec, R, string);
1929
+ if (!isCallable$b(exec)) return call$c(nativeTest, R, string);
1930
+ var result = call$c(exec, R, string);
1930
1931
  if (result === null) return false;
1931
- anObject$3(result);
1932
+ anObject$8(result);
1932
1933
  return true;
1933
1934
  }
1934
1935
  });
1935
1936
 
1936
- var $$6 = _export;
1937
- var uncurryThis$a = functionUncurryThis;
1937
+ var $$d = _export;
1938
+ var uncurryThis$d = functionUncurryThis;
1938
1939
  var requireObjectCoercible$3 = requireObjectCoercible$7;
1939
1940
  var toIntegerOrInfinity$2 = toIntegerOrInfinity$6;
1940
1941
  var toString$7 = toString$a;
1941
- var fails$8 = fails$n;
1942
+ var fails$b = fails$q;
1942
1943
 
1943
- var charAt$5 = uncurryThis$a(''.charAt);
1944
+ var charAt$5 = uncurryThis$d(''.charAt);
1944
1945
 
1945
- var FORCED$2 = fails$8(function () {
1946
+ var FORCED$3 = fails$b(function () {
1946
1947
  // eslint-disable-next-line es/no-array-string-prototype-at -- safe
1947
1948
  return '𠮷'.at(-2) !== '\uD842';
1948
1949
  });
1949
1950
 
1950
1951
  // `String.prototype.at` method
1951
1952
  // https://tc39.es/ecma262/#sec-string.prototype.at
1952
- $$6({ target: 'String', proto: true, forced: FORCED$2 }, {
1953
+ $$d({ target: 'String', proto: true, forced: FORCED$3 }, {
1953
1954
  at: function at(index) {
1954
1955
  var S = toString$7(requireObjectCoercible$3(this));
1955
1956
  var len = S.length;
@@ -1959,40 +1960,40 @@ $$6({ target: 'String', proto: true, forced: FORCED$2 }, {
1959
1960
  }
1960
1961
  });
1961
1962
 
1962
- var NATIVE_BIND = functionBindNative;
1963
+ var NATIVE_BIND$1 = functionBindNative;
1963
1964
 
1964
1965
  var FunctionPrototype = Function.prototype;
1965
- var apply$3 = FunctionPrototype.apply;
1966
- var call$5 = FunctionPrototype.call;
1966
+ var apply$4 = FunctionPrototype.apply;
1967
+ var call$b = FunctionPrototype.call;
1967
1968
 
1968
1969
  // eslint-disable-next-line es/no-reflect -- safe
1969
- var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call$5.bind(apply$3) : function () {
1970
- return call$5.apply(apply$3, arguments);
1970
+ var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$b.bind(apply$4) : function () {
1971
+ return call$b.apply(apply$4, arguments);
1971
1972
  });
1972
1973
 
1973
1974
  // TODO: Remove from `core-js@4` since it's moved to entry points
1974
1975
 
1975
- var call$4 = functionCall;
1976
- var defineBuiltIn$2 = defineBuiltIn$6;
1976
+ var call$a = functionCall;
1977
+ var defineBuiltIn$4 = defineBuiltIn$8;
1977
1978
  var regexpExec$1 = regexpExec$2;
1978
- var fails$7 = fails$n;
1979
- var wellKnownSymbol$5 = wellKnownSymbol$e;
1979
+ var fails$a = fails$q;
1980
+ var wellKnownSymbol$a = wellKnownSymbol$j;
1980
1981
  var createNonEnumerableProperty$4 = createNonEnumerableProperty$9;
1981
1982
 
1982
- var SPECIES$1 = wellKnownSymbol$5('species');
1983
+ var SPECIES$3 = wellKnownSymbol$a('species');
1983
1984
  var RegExpPrototype$4 = RegExp.prototype;
1984
1985
 
1985
1986
  var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
1986
- var SYMBOL = wellKnownSymbol$5(KEY);
1987
+ var SYMBOL = wellKnownSymbol$a(KEY);
1987
1988
 
1988
- var DELEGATES_TO_SYMBOL = !fails$7(function () {
1989
+ var DELEGATES_TO_SYMBOL = !fails$a(function () {
1989
1990
  // String methods call symbol-named RegExp methods
1990
1991
  var O = {};
1991
1992
  O[SYMBOL] = function () { return 7; };
1992
1993
  return ''[KEY](O) !== 7;
1993
1994
  });
1994
1995
 
1995
- var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$7(function () {
1996
+ var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$a(function () {
1996
1997
  // Symbol-named RegExp methods call .exec
1997
1998
  var execCalled = false;
1998
1999
  var re = /a/;
@@ -2005,7 +2006,7 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2005
2006
  // RegExp[@@split] doesn't call the regex's exec method, but first creates
2006
2007
  // a new one. We need to return the patched regex when creating the new one.
2007
2008
  re.constructor = {};
2008
- re.constructor[SPECIES$1] = function () { return re; };
2009
+ re.constructor[SPECIES$3] = function () { return re; };
2009
2010
  re.flags = '';
2010
2011
  re[SYMBOL] = /./[SYMBOL];
2011
2012
  }
@@ -2032,30 +2033,30 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2032
2033
  // The native String method already delegates to @@method (this
2033
2034
  // polyfilled function), leasing to infinite recursion.
2034
2035
  // We avoid it by directly calling the native @@method method.
2035
- return { done: true, value: call$4(nativeRegExpMethod, regexp, str, arg2) };
2036
+ return { done: true, value: call$a(nativeRegExpMethod, regexp, str, arg2) };
2036
2037
  }
2037
- return { done: true, value: call$4(nativeMethod, str, regexp, arg2) };
2038
+ return { done: true, value: call$a(nativeMethod, str, regexp, arg2) };
2038
2039
  }
2039
2040
  return { done: false };
2040
2041
  });
2041
2042
 
2042
- defineBuiltIn$2(String.prototype, KEY, methods[0]);
2043
- defineBuiltIn$2(RegExpPrototype$4, SYMBOL, methods[1]);
2043
+ defineBuiltIn$4(String.prototype, KEY, methods[0]);
2044
+ defineBuiltIn$4(RegExpPrototype$4, SYMBOL, methods[1]);
2044
2045
  }
2045
2046
 
2046
2047
  if (SHAM) createNonEnumerableProperty$4(RegExpPrototype$4[SYMBOL], 'sham', true);
2047
2048
  };
2048
2049
 
2049
- var uncurryThis$9 = functionUncurryThis;
2050
+ var uncurryThis$c = functionUncurryThis;
2050
2051
  var toIntegerOrInfinity$1 = toIntegerOrInfinity$6;
2051
2052
  var toString$6 = toString$a;
2052
2053
  var requireObjectCoercible$2 = requireObjectCoercible$7;
2053
2054
 
2054
- var charAt$4 = uncurryThis$9(''.charAt);
2055
- var charCodeAt$1 = uncurryThis$9(''.charCodeAt);
2056
- var stringSlice$4 = uncurryThis$9(''.slice);
2055
+ var charAt$4 = uncurryThis$c(''.charAt);
2056
+ var charCodeAt$1 = uncurryThis$c(''.charCodeAt);
2057
+ var stringSlice$4 = uncurryThis$c(''.slice);
2057
2058
 
2058
- var createMethod = function (CONVERT_TO_STRING) {
2059
+ var createMethod$1 = function (CONVERT_TO_STRING) {
2059
2060
  return function ($this, pos) {
2060
2061
  var S = toString$6(requireObjectCoercible$2($this));
2061
2062
  var position = toIntegerOrInfinity$1(pos);
@@ -2077,10 +2078,10 @@ var createMethod = function (CONVERT_TO_STRING) {
2077
2078
  var stringMultibyte = {
2078
2079
  // `String.prototype.codePointAt` method
2079
2080
  // https://tc39.es/ecma262/#sec-string.prototype.codepointat
2080
- codeAt: createMethod(false),
2081
+ codeAt: createMethod$1(false),
2081
2082
  // `String.prototype.at` method
2082
2083
  // https://github.com/mathiasbynens/String.prototype.at
2083
- charAt: createMethod(true)
2084
+ charAt: createMethod$1(true)
2084
2085
  };
2085
2086
 
2086
2087
  var charAt$3 = stringMultibyte.charAt;
@@ -2091,13 +2092,13 @@ var advanceStringIndex$1 = function (S, index, unicode) {
2091
2092
  return index + (unicode ? charAt$3(S, index).length : 1);
2092
2093
  };
2093
2094
 
2094
- var uncurryThis$8 = functionUncurryThis;
2095
- var toObject$1 = toObject$6;
2095
+ var uncurryThis$b = functionUncurryThis;
2096
+ var toObject$2 = toObject$7;
2096
2097
 
2097
2098
  var floor = Math.floor;
2098
- var charAt$2 = uncurryThis$8(''.charAt);
2099
- var replace$4 = uncurryThis$8(''.replace);
2100
- var stringSlice$3 = uncurryThis$8(''.slice);
2099
+ var charAt$2 = uncurryThis$b(''.charAt);
2100
+ var replace$4 = uncurryThis$b(''.replace);
2101
+ var stringSlice$3 = uncurryThis$b(''.slice);
2101
2102
  // eslint-disable-next-line redos/no-vulnerable -- safe
2102
2103
  var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
2103
2104
  var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
@@ -2109,7 +2110,7 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
2109
2110
  var m = captures.length;
2110
2111
  var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
2111
2112
  if (namedCaptures !== undefined) {
2112
- namedCaptures = toObject$1(namedCaptures);
2113
+ namedCaptures = toObject$2(namedCaptures);
2113
2114
  symbols = SUBSTITUTION_SYMBOLS;
2114
2115
  }
2115
2116
  return replace$4(replacement, symbols, function (match, ch) {
@@ -2137,52 +2138,52 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
2137
2138
  });
2138
2139
  };
2139
2140
 
2140
- var call$3 = functionCall;
2141
- var anObject$2 = anObject$9;
2142
- var isCallable$5 = isCallable$l;
2143
- var classof$4 = classofRaw$1;
2141
+ var call$9 = functionCall;
2142
+ var anObject$7 = anObject$e;
2143
+ var isCallable$a = isCallable$q;
2144
+ var classof$7 = classofRaw$2;
2144
2145
  var regexpExec = regexpExec$2;
2145
2146
 
2146
- var $TypeError$4 = TypeError;
2147
+ var $TypeError$b = TypeError;
2147
2148
 
2148
2149
  // `RegExpExec` abstract operation
2149
2150
  // https://tc39.es/ecma262/#sec-regexpexec
2150
2151
  var regexpExecAbstract = function (R, S) {
2151
2152
  var exec = R.exec;
2152
- if (isCallable$5(exec)) {
2153
- var result = call$3(exec, R, S);
2154
- if (result !== null) anObject$2(result);
2153
+ if (isCallable$a(exec)) {
2154
+ var result = call$9(exec, R, S);
2155
+ if (result !== null) anObject$7(result);
2155
2156
  return result;
2156
2157
  }
2157
- if (classof$4(R) === 'RegExp') return call$3(regexpExec, R, S);
2158
- throw new $TypeError$4('RegExp#exec called on incompatible receiver');
2158
+ if (classof$7(R) === 'RegExp') return call$9(regexpExec, R, S);
2159
+ throw new $TypeError$b('RegExp#exec called on incompatible receiver');
2159
2160
  };
2160
2161
 
2161
- var apply$2 = functionApply;
2162
- var call$2 = functionCall;
2163
- var uncurryThis$7 = functionUncurryThis;
2162
+ var apply$3 = functionApply;
2163
+ var call$8 = functionCall;
2164
+ var uncurryThis$a = functionUncurryThis;
2164
2165
  var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
2165
- var fails$6 = fails$n;
2166
- var anObject$1 = anObject$9;
2167
- var isCallable$4 = isCallable$l;
2168
- var isNullOrUndefined = isNullOrUndefined$3;
2166
+ var fails$9 = fails$q;
2167
+ var anObject$6 = anObject$e;
2168
+ var isCallable$9 = isCallable$q;
2169
+ var isNullOrUndefined$2 = isNullOrUndefined$5;
2169
2170
  var toIntegerOrInfinity = toIntegerOrInfinity$6;
2170
2171
  var toLength = toLength$2;
2171
2172
  var toString$5 = toString$a;
2172
2173
  var requireObjectCoercible$1 = requireObjectCoercible$7;
2173
2174
  var advanceStringIndex = advanceStringIndex$1;
2174
- var getMethod = getMethod$2;
2175
+ var getMethod$2 = getMethod$4;
2175
2176
  var getSubstitution = getSubstitution$1;
2176
2177
  var regExpExec = regexpExecAbstract;
2177
- var wellKnownSymbol$4 = wellKnownSymbol$e;
2178
+ var wellKnownSymbol$9 = wellKnownSymbol$j;
2178
2179
 
2179
- var REPLACE = wellKnownSymbol$4('replace');
2180
+ var REPLACE = wellKnownSymbol$9('replace');
2180
2181
  var max = Math.max;
2181
2182
  var min = Math.min;
2182
- var concat = uncurryThis$7([].concat);
2183
- var push$1 = uncurryThis$7([].push);
2184
- var stringIndexOf$2 = uncurryThis$7(''.indexOf);
2185
- var stringSlice$2 = uncurryThis$7(''.slice);
2183
+ var concat = uncurryThis$a([].concat);
2184
+ var push$1 = uncurryThis$a([].push);
2185
+ var stringIndexOf$2 = uncurryThis$a(''.indexOf);
2186
+ var stringSlice$2 = uncurryThis$a(''.slice);
2186
2187
 
2187
2188
  var maybeToString = function (it) {
2188
2189
  return it === undefined ? it : String(it);
@@ -2203,7 +2204,7 @@ var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
2203
2204
  return false;
2204
2205
  })();
2205
2206
 
2206
- var REPLACE_SUPPORTS_NAMED_GROUPS = !fails$6(function () {
2207
+ var REPLACE_SUPPORTS_NAMED_GROUPS = !fails$9(function () {
2207
2208
  var re = /./;
2208
2209
  re.exec = function () {
2209
2210
  var result = [];
@@ -2223,15 +2224,15 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
2223
2224
  // https://tc39.es/ecma262/#sec-string.prototype.replace
2224
2225
  function replace(searchValue, replaceValue) {
2225
2226
  var O = requireObjectCoercible$1(this);
2226
- var replacer = isNullOrUndefined(searchValue) ? undefined : getMethod(searchValue, REPLACE);
2227
+ var replacer = isNullOrUndefined$2(searchValue) ? undefined : getMethod$2(searchValue, REPLACE);
2227
2228
  return replacer
2228
- ? call$2(replacer, searchValue, O, replaceValue)
2229
- : call$2(nativeReplace, toString$5(O), searchValue, replaceValue);
2229
+ ? call$8(replacer, searchValue, O, replaceValue)
2230
+ : call$8(nativeReplace, toString$5(O), searchValue, replaceValue);
2230
2231
  },
2231
2232
  // `RegExp.prototype[@@replace]` method
2232
2233
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
2233
2234
  function (string, replaceValue) {
2234
- var rx = anObject$1(this);
2235
+ var rx = anObject$6(this);
2235
2236
  var S = toString$5(string);
2236
2237
 
2237
2238
  if (
@@ -2243,7 +2244,7 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
2243
2244
  if (res.done) return res.value;
2244
2245
  }
2245
2246
 
2246
- var functionalReplace = isCallable$4(replaceValue);
2247
+ var functionalReplace = isCallable$9(replaceValue);
2247
2248
  if (!functionalReplace) replaceValue = toString$5(replaceValue);
2248
2249
 
2249
2250
  var global = rx.global;
@@ -2285,7 +2286,7 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
2285
2286
  if (functionalReplace) {
2286
2287
  var replacerArgs = concat([matched], captures, position, S);
2287
2288
  if (namedCaptures !== undefined) push$1(replacerArgs, namedCaptures);
2288
- replacement = toString$5(apply$2(replaceValue, undefined, replacerArgs));
2289
+ replacement = toString$5(apply$3(replaceValue, undefined, replacerArgs));
2289
2290
  } else {
2290
2291
  replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
2291
2292
  }
@@ -2730,25 +2731,28 @@ const Visible = styled.div(_t2$3 || (_t2$3 = _$6`
2730
2731
  `), p => p.visible ? 'initial' : 'none');
2731
2732
 
2732
2733
  const ADD_REGISTER_DATA_ACTION = 'jsonforms/register/data/add';
2734
+ const ADD_NO_ANONYMOUS_ACTION = 'jsonforms/register/no_anonymous';
2735
+ const ADD_DATALIST_ACTION = 'jsonforms/register/add_datalist_action';
2736
+ const ADD_REGISTER_DATA_ERROR = 'jsonforms/register/add_register_data_error';
2733
2737
 
2734
- var classof$3 = classofRaw$1;
2738
+ var classof$6 = classofRaw$2;
2735
2739
 
2736
2740
  // `IsArray` abstract operation
2737
2741
  // https://tc39.es/ecma262/#sec-isarray
2738
2742
  // eslint-disable-next-line es/no-array-isarray -- safe
2739
2743
  var isArray$2 = Array.isArray || function isArray(argument) {
2740
- return classof$3(argument) === 'Array';
2744
+ return classof$6(argument) === 'Array';
2741
2745
  };
2742
2746
 
2743
- var DESCRIPTORS$5 = descriptors;
2747
+ var DESCRIPTORS$6 = descriptors;
2744
2748
  var isArray$1 = isArray$2;
2745
2749
 
2746
- var $TypeError$3 = TypeError;
2750
+ var $TypeError$a = TypeError;
2747
2751
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2748
- var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2752
+ var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
2749
2753
 
2750
2754
  // Safari < 13 does not throw an error in this case
2751
- var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS$5 && !function () {
2755
+ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS$6 && !function () {
2752
2756
  // makes no sense without proper strict mode support
2753
2757
  if (this !== undefined) return true;
2754
2758
  try {
@@ -2760,29 +2764,29 @@ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS$5 && !function () {
2760
2764
  }();
2761
2765
 
2762
2766
  var arraySetLength = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
2763
- if (isArray$1(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
2764
- throw new $TypeError$3('Cannot set read only .length');
2767
+ if (isArray$1(O) && !getOwnPropertyDescriptor$1(O, 'length').writable) {
2768
+ throw new $TypeError$a('Cannot set read only .length');
2765
2769
  } return O.length = length;
2766
2770
  } : function (O, length) {
2767
2771
  return O.length = length;
2768
2772
  };
2769
2773
 
2770
- var $TypeError$2 = TypeError;
2774
+ var $TypeError$9 = TypeError;
2771
2775
  var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
2772
2776
 
2773
2777
  var doesNotExceedSafeInteger$1 = function (it) {
2774
- if (it > MAX_SAFE_INTEGER) throw $TypeError$2('Maximum allowed index exceeded');
2778
+ if (it > MAX_SAFE_INTEGER) throw $TypeError$9('Maximum allowed index exceeded');
2775
2779
  return it;
2776
2780
  };
2777
2781
 
2778
- var $$5 = _export;
2779
- var toObject = toObject$6;
2780
- var lengthOfArrayLike = lengthOfArrayLike$3;
2782
+ var $$c = _export;
2783
+ var toObject$1 = toObject$7;
2784
+ var lengthOfArrayLike$2 = lengthOfArrayLike$5;
2781
2785
  var setArrayLength = arraySetLength;
2782
2786
  var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
2783
- var fails$5 = fails$n;
2787
+ var fails$8 = fails$q;
2784
2788
 
2785
- var INCORRECT_TO_LENGTH = fails$5(function () {
2789
+ var INCORRECT_TO_LENGTH = fails$8(function () {
2786
2790
  return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
2787
2791
  });
2788
2792
 
@@ -2797,15 +2801,15 @@ var properErrorOnNonWritableLength = function () {
2797
2801
  }
2798
2802
  };
2799
2803
 
2800
- var FORCED$1 = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
2804
+ var FORCED$2 = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
2801
2805
 
2802
2806
  // `Array.prototype.push` method
2803
2807
  // https://tc39.es/ecma262/#sec-array.prototype.push
2804
- $$5({ target: 'Array', proto: true, arity: 1, forced: FORCED$1 }, {
2808
+ $$c({ target: 'Array', proto: true, arity: 1, forced: FORCED$2 }, {
2805
2809
  // eslint-disable-next-line no-unused-vars -- required for `.length`
2806
2810
  push: function push(item) {
2807
- var O = toObject(this);
2808
- var len = lengthOfArrayLike(O);
2811
+ var O = toObject$1(this);
2812
+ var len = lengthOfArrayLike$2(O);
2809
2813
  var argCount = arguments.length;
2810
2814
  doesNotExceedSafeInteger(len + argCount);
2811
2815
  for (var i = 0; i < argCount; i++) {
@@ -2817,116 +2821,342 @@ $$5({ target: 'Array', proto: true, arity: 1, forced: FORCED$1 }, {
2817
2821
  }
2818
2822
  });
2819
2823
 
2820
- function registerReducer(registerData, action) {
2824
+ function registerReducer(state, action) {
2821
2825
  switch (action.type) {
2826
+ case ADD_REGISTER_DATA_ERROR:
2827
+ {
2828
+ const errors = action.payload;
2829
+ return Object.assign(Object.assign({}, state), {
2830
+ errors: Object.assign(Object.assign({}, state.errors), errors)
2831
+ });
2832
+ }
2822
2833
  case ADD_REGISTER_DATA_ACTION:
2823
2834
  {
2835
+ const {
2836
+ registerData
2837
+ } = state;
2824
2838
  registerData.push(action.payload);
2825
- return [...registerData];
2839
+ return Object.assign(Object.assign({}, state), {
2840
+ registerData: registerData
2841
+ });
2842
+ }
2843
+ case ADD_NO_ANONYMOUS_ACTION:
2844
+ {
2845
+ return Object.assign(Object.assign({}, state), {
2846
+ nonAnonymous: action.payload.nonAnonymous || []
2847
+ });
2848
+ }
2849
+ case ADD_DATALIST_ACTION:
2850
+ {
2851
+ return Object.assign(Object.assign({}, state), {
2852
+ nonExistent: action.payload.nonExistent || []
2853
+ });
2826
2854
  }
2827
2855
  }
2828
- return registerData;
2856
+ return state;
2829
2857
  }
2830
2858
 
2831
- /******************************************************************************
2832
- Copyright (c) Microsoft Corporation.
2833
-
2834
- Permission to use, copy, modify, and/or distribute this software for any
2835
- purpose with or without fee is hereby granted.
2836
-
2837
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
2838
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
2839
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
2840
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
2841
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
2842
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
2843
- PERFORMANCE OF THIS SOFTWARE.
2844
- ***************************************************************************** */
2845
-
2846
- function __rest(s, e) {
2847
- var t = {};
2848
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
2849
- t[p] = s[p];
2850
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
2851
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
2852
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
2853
- t[p[i]] = s[p[i]];
2854
- }
2855
- return t;
2856
- }
2857
-
2858
- function __awaiter(thisArg, _arguments, P, generator) {
2859
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
2860
- return new (P || (P = Promise))(function (resolve, reject) {
2861
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
2862
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
2863
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
2864
- step((generator = generator.apply(thisArg, _arguments || [])).next());
2865
- });
2866
- }
2867
-
2868
- typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
2869
- var e = new Error(message);
2870
- return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
2871
- };
2859
+ var $$b = _export;
2860
+ var $includes = arrayIncludes.includes;
2861
+ var fails$7 = fails$q;
2862
+ var addToUnscopables = addToUnscopables$3;
2872
2863
 
2873
- var isCallable$3 = isCallable$l;
2874
- var isObject$2 = isObject$b;
2875
- var setPrototypeOf$1 = objectSetPrototypeOf;
2864
+ // FF99+ bug
2865
+ var BROKEN_ON_SPARSE = fails$7(function () {
2866
+ // eslint-disable-next-line es/no-array-prototype-includes -- detection
2867
+ return !Array(1).includes();
2868
+ });
2876
2869
 
2877
- // makes subclassing work correct for wrapped built-ins
2878
- var inheritIfRequired$2 = function ($this, dummy, Wrapper) {
2879
- var NewTarget, NewTargetPrototype;
2880
- if (
2881
- // it can work only with native `setPrototypeOf`
2882
- setPrototypeOf$1 &&
2883
- // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
2884
- isCallable$3(NewTarget = dummy.constructor) &&
2885
- NewTarget !== Wrapper &&
2886
- isObject$2(NewTargetPrototype = NewTarget.prototype) &&
2887
- NewTargetPrototype !== Wrapper.prototype
2888
- ) setPrototypeOf$1($this, NewTargetPrototype);
2889
- return $this;
2890
- };
2870
+ // `Array.prototype.includes` method
2871
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
2872
+ $$b({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
2873
+ includes: function includes(el /* , fromIndex = 0 */) {
2874
+ return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
2875
+ }
2876
+ });
2891
2877
 
2892
- var isObject$1 = isObject$b;
2893
- var classof$2 = classofRaw$1;
2894
- var wellKnownSymbol$3 = wellKnownSymbol$e;
2878
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
2879
+ addToUnscopables('includes');
2895
2880
 
2896
- var MATCH$2 = wellKnownSymbol$3('match');
2881
+ var uncurryThis$9 = functionUncurryThis;
2897
2882
 
2898
- // `IsRegExp` abstract operation
2899
- // https://tc39.es/ecma262/#sec-isregexp
2900
- var isRegexp = function (it) {
2901
- var isRegExp;
2902
- return isObject$1(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classof$2(it) === 'RegExp');
2903
- };
2883
+ var arraySlice$2 = uncurryThis$9([].slice);
2904
2884
 
2905
- var call$1 = functionCall;
2906
- var hasOwn$3 = hasOwnProperty_1;
2907
- var isPrototypeOf$3 = objectIsPrototypeOf;
2908
- var regExpFlags = regexpFlags$1;
2885
+ var uncurryThis$8 = functionUncurryThis;
2886
+ var isArray = isArray$2;
2887
+ var isCallable$8 = isCallable$q;
2888
+ var classof$5 = classofRaw$2;
2889
+ var toString$4 = toString$a;
2909
2890
 
2910
- var RegExpPrototype$3 = RegExp.prototype;
2891
+ var push = uncurryThis$8([].push);
2911
2892
 
2912
- var regexpGetFlags = function (R) {
2913
- var flags = R.flags;
2914
- return flags === undefined && !('flags' in RegExpPrototype$3) && !hasOwn$3(R, 'flags') && isPrototypeOf$3(RegExpPrototype$3, R)
2915
- ? call$1(regExpFlags, R) : flags;
2893
+ var getJsonReplacerFunction = function (replacer) {
2894
+ if (isCallable$8(replacer)) return replacer;
2895
+ if (!isArray(replacer)) return;
2896
+ var rawLength = replacer.length;
2897
+ var keys = [];
2898
+ for (var i = 0; i < rawLength; i++) {
2899
+ var element = replacer[i];
2900
+ if (typeof element == 'string') push(keys, element);
2901
+ else if (typeof element == 'number' || classof$5(element) === 'Number' || classof$5(element) === 'String') push(keys, toString$4(element));
2902
+ }
2903
+ var keysLength = keys.length;
2904
+ var root = true;
2905
+ return function (key, value) {
2906
+ if (root) {
2907
+ root = false;
2908
+ return value;
2909
+ }
2910
+ if (isArray(this)) return value;
2911
+ for (var j = 0; j < keysLength; j++) if (keys[j] === key) return value;
2912
+ };
2916
2913
  };
2917
2914
 
2918
- var defineProperty$1 = objectDefineProperty.f;
2919
-
2920
- var proxyAccessor$2 = function (Target, Source, key) {
2921
- key in Target || defineProperty$1(Target, key, {
2922
- configurable: true,
2923
- get: function () { return Source[key]; },
2924
- set: function (it) { Source[key] = it; }
2925
- });
2926
- };
2915
+ var $$a = _export;
2916
+ var getBuiltIn$5 = getBuiltIn$9;
2917
+ var apply$2 = functionApply;
2918
+ var call$7 = functionCall;
2919
+ var uncurryThis$7 = functionUncurryThis;
2920
+ var fails$6 = fails$q;
2921
+ var isCallable$7 = isCallable$q;
2922
+ var isSymbol = isSymbol$3;
2923
+ var arraySlice$1 = arraySlice$2;
2924
+ var getReplacerFunction = getJsonReplacerFunction;
2925
+ var NATIVE_SYMBOL$1 = symbolConstructorDetection;
2927
2926
 
2928
- var makeBuiltIn = makeBuiltIn$3.exports;
2929
- var defineProperty = objectDefineProperty;
2927
+ var $String = String;
2928
+ var $stringify = getBuiltIn$5('JSON', 'stringify');
2929
+ var exec$2 = uncurryThis$7(/./.exec);
2930
+ var charAt$1 = uncurryThis$7(''.charAt);
2931
+ var charCodeAt = uncurryThis$7(''.charCodeAt);
2932
+ var replace$3 = uncurryThis$7(''.replace);
2933
+ var numberToString = uncurryThis$7(1.0.toString);
2934
+
2935
+ var tester = /[\uD800-\uDFFF]/g;
2936
+ var low = /^[\uD800-\uDBFF]$/;
2937
+ var hi = /^[\uDC00-\uDFFF]$/;
2938
+
2939
+ var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL$1 || fails$6(function () {
2940
+ var symbol = getBuiltIn$5('Symbol')('stringify detection');
2941
+ // MS Edge converts symbol values to JSON as {}
2942
+ return $stringify([symbol]) !== '[null]'
2943
+ // WebKit converts symbol values to JSON as null
2944
+ || $stringify({ a: symbol }) !== '{}'
2945
+ // V8 throws on boxed symbols
2946
+ || $stringify(Object(symbol)) !== '{}';
2947
+ });
2948
+
2949
+ // https://github.com/tc39/proposal-well-formed-stringify
2950
+ var ILL_FORMED_UNICODE = fails$6(function () {
2951
+ return $stringify('\uDF06\uD834') !== '"\\udf06\\ud834"'
2952
+ || $stringify('\uDEAD') !== '"\\udead"';
2953
+ });
2954
+
2955
+ var stringifyWithSymbolsFix = function (it, replacer) {
2956
+ var args = arraySlice$1(arguments);
2957
+ var $replacer = getReplacerFunction(replacer);
2958
+ if (!isCallable$7($replacer) && (it === undefined || isSymbol(it))) return; // IE8 returns string on undefined
2959
+ args[1] = function (key, value) {
2960
+ // some old implementations (like WebKit) could pass numbers as keys
2961
+ if (isCallable$7($replacer)) value = call$7($replacer, this, $String(key), value);
2962
+ if (!isSymbol(value)) return value;
2963
+ };
2964
+ return apply$2($stringify, null, args);
2965
+ };
2966
+
2967
+ var fixIllFormed = function (match, offset, string) {
2968
+ var prev = charAt$1(string, offset - 1);
2969
+ var next = charAt$1(string, offset + 1);
2970
+ if ((exec$2(low, match) && !exec$2(hi, next)) || (exec$2(hi, match) && !exec$2(low, prev))) {
2971
+ return '\\u' + numberToString(charCodeAt(match, 0), 16);
2972
+ } return match;
2973
+ };
2974
+
2975
+ if ($stringify) {
2976
+ // `JSON.stringify` method
2977
+ // https://tc39.es/ecma262/#sec-json.stringify
2978
+ $$a({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
2979
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
2980
+ stringify: function stringify(it, replacer, space) {
2981
+ var args = arraySlice$1(arguments);
2982
+ var result = apply$2(WRONG_SYMBOLS_CONVERSION ? stringifyWithSymbolsFix : $stringify, null, args);
2983
+ return ILL_FORMED_UNICODE && typeof result == 'string' ? replace$3(result, tester, fixIllFormed) : result;
2984
+ }
2985
+ });
2986
+ }
2987
+
2988
+ var call$6 = functionCall;
2989
+ var hasOwn$4 = hasOwnProperty_1;
2990
+ var isPrototypeOf$5 = objectIsPrototypeOf;
2991
+ var regExpFlags = regexpFlags$1;
2992
+
2993
+ var RegExpPrototype$3 = RegExp.prototype;
2994
+
2995
+ var regexpGetFlags = function (R) {
2996
+ var flags = R.flags;
2997
+ return flags === undefined && !('flags' in RegExpPrototype$3) && !hasOwn$4(R, 'flags') && isPrototypeOf$5(RegExpPrototype$3, R)
2998
+ ? call$6(regExpFlags, R) : flags;
2999
+ };
3000
+
3001
+ var PROPER_FUNCTION_NAME = functionName.PROPER;
3002
+ var defineBuiltIn$3 = defineBuiltIn$8;
3003
+ var anObject$5 = anObject$e;
3004
+ var $toString = toString$a;
3005
+ var fails$5 = fails$q;
3006
+ var getRegExpFlags$1 = regexpGetFlags;
3007
+
3008
+ var TO_STRING = 'toString';
3009
+ var RegExpPrototype$2 = RegExp.prototype;
3010
+ var nativeToString = RegExpPrototype$2[TO_STRING];
3011
+
3012
+ var NOT_GENERIC = fails$5(function () { return nativeToString.call({ source: 'a', flags: 'b' }) !== '/a/b'; });
3013
+ // FF44- RegExp#toString has a wrong name
3014
+ var INCORRECT_NAME = PROPER_FUNCTION_NAME && nativeToString.name !== TO_STRING;
3015
+
3016
+ // `RegExp.prototype.toString` method
3017
+ // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
3018
+ if (NOT_GENERIC || INCORRECT_NAME) {
3019
+ defineBuiltIn$3(RegExpPrototype$2, TO_STRING, function toString() {
3020
+ var R = anObject$5(this);
3021
+ var pattern = $toString(R.source);
3022
+ var flags = $toString(getRegExpFlags$1(R));
3023
+ return '/' + pattern + '/' + flags;
3024
+ }, { unsafe: true });
3025
+ }
3026
+
3027
+ var isObject$4 = isObject$d;
3028
+ var classof$4 = classofRaw$2;
3029
+ var wellKnownSymbol$8 = wellKnownSymbol$j;
3030
+
3031
+ var MATCH$2 = wellKnownSymbol$8('match');
3032
+
3033
+ // `IsRegExp` abstract operation
3034
+ // https://tc39.es/ecma262/#sec-isregexp
3035
+ var isRegexp = function (it) {
3036
+ var isRegExp;
3037
+ return isObject$4(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classof$4(it) === 'RegExp');
3038
+ };
3039
+
3040
+ var isRegExp$1 = isRegexp;
3041
+
3042
+ var $TypeError$8 = TypeError;
3043
+
3044
+ var notARegexp = function (it) {
3045
+ if (isRegExp$1(it)) {
3046
+ throw new $TypeError$8("The method doesn't accept regular expressions");
3047
+ } return it;
3048
+ };
3049
+
3050
+ var wellKnownSymbol$7 = wellKnownSymbol$j;
3051
+
3052
+ var MATCH$1 = wellKnownSymbol$7('match');
3053
+
3054
+ var correctIsRegexpLogic = function (METHOD_NAME) {
3055
+ var regexp = /./;
3056
+ try {
3057
+ '/./'[METHOD_NAME](regexp);
3058
+ } catch (error1) {
3059
+ try {
3060
+ regexp[MATCH$1] = false;
3061
+ return '/./'[METHOD_NAME](regexp);
3062
+ } catch (error2) { /* empty */ }
3063
+ } return false;
3064
+ };
3065
+
3066
+ var $$9 = _export;
3067
+ var uncurryThis$6 = functionUncurryThis;
3068
+ var notARegExp = notARegexp;
3069
+ var requireObjectCoercible = requireObjectCoercible$7;
3070
+ var toString$3 = toString$a;
3071
+ var correctIsRegExpLogic = correctIsRegexpLogic;
3072
+
3073
+ var stringIndexOf$1 = uncurryThis$6(''.indexOf);
3074
+
3075
+ // `String.prototype.includes` method
3076
+ // https://tc39.es/ecma262/#sec-string.prototype.includes
3077
+ $$9({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {
3078
+ includes: function includes(searchString /* , position = 0 */) {
3079
+ return !!~stringIndexOf$1(
3080
+ toString$3(requireObjectCoercible(this)),
3081
+ toString$3(notARegExp(searchString)),
3082
+ arguments.length > 1 ? arguments[1] : undefined
3083
+ );
3084
+ }
3085
+ });
3086
+
3087
+ /******************************************************************************
3088
+ Copyright (c) Microsoft Corporation.
3089
+
3090
+ Permission to use, copy, modify, and/or distribute this software for any
3091
+ purpose with or without fee is hereby granted.
3092
+
3093
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
3094
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
3095
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
3096
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
3097
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
3098
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
3099
+ PERFORMANCE OF THIS SOFTWARE.
3100
+ ***************************************************************************** */
3101
+
3102
+ function __rest(s, e) {
3103
+ var t = {};
3104
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
3105
+ t[p] = s[p];
3106
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
3107
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
3108
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
3109
+ t[p[i]] = s[p[i]];
3110
+ }
3111
+ return t;
3112
+ }
3113
+
3114
+ function __awaiter(thisArg, _arguments, P, generator) {
3115
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3116
+ return new (P || (P = Promise))(function (resolve, reject) {
3117
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
3118
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
3119
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
3120
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
3121
+ });
3122
+ }
3123
+
3124
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
3125
+ var e = new Error(message);
3126
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
3127
+ };
3128
+
3129
+ var isCallable$6 = isCallable$q;
3130
+ var isObject$3 = isObject$d;
3131
+ var setPrototypeOf$2 = objectSetPrototypeOf;
3132
+
3133
+ // makes subclassing work correct for wrapped built-ins
3134
+ var inheritIfRequired$2 = function ($this, dummy, Wrapper) {
3135
+ var NewTarget, NewTargetPrototype;
3136
+ if (
3137
+ // it can work only with native `setPrototypeOf`
3138
+ setPrototypeOf$2 &&
3139
+ // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
3140
+ isCallable$6(NewTarget = dummy.constructor) &&
3141
+ NewTarget !== Wrapper &&
3142
+ isObject$3(NewTargetPrototype = NewTarget.prototype) &&
3143
+ NewTargetPrototype !== Wrapper.prototype
3144
+ ) setPrototypeOf$2($this, NewTargetPrototype);
3145
+ return $this;
3146
+ };
3147
+
3148
+ var defineProperty$1 = objectDefineProperty.f;
3149
+
3150
+ var proxyAccessor$2 = function (Target, Source, key) {
3151
+ key in Target || defineProperty$1(Target, key, {
3152
+ configurable: true,
3153
+ get: function () { return Source[key]; },
3154
+ set: function (it) { Source[key] = it; }
3155
+ });
3156
+ };
3157
+
3158
+ var makeBuiltIn = makeBuiltIn$3.exports;
3159
+ var defineProperty = objectDefineProperty;
2930
3160
 
2931
3161
  var defineBuiltInAccessor$3 = function (target, name, descriptor) {
2932
3162
  if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
@@ -2934,56 +3164,56 @@ var defineBuiltInAccessor$3 = function (target, name, descriptor) {
2934
3164
  return defineProperty.f(target, name, descriptor);
2935
3165
  };
2936
3166
 
2937
- var getBuiltIn$2 = getBuiltIn$6;
3167
+ var getBuiltIn$4 = getBuiltIn$9;
2938
3168
  var defineBuiltInAccessor$2 = defineBuiltInAccessor$3;
2939
- var wellKnownSymbol$2 = wellKnownSymbol$e;
2940
- var DESCRIPTORS$4 = descriptors;
3169
+ var wellKnownSymbol$6 = wellKnownSymbol$j;
3170
+ var DESCRIPTORS$5 = descriptors;
2941
3171
 
2942
- var SPECIES = wellKnownSymbol$2('species');
3172
+ var SPECIES$2 = wellKnownSymbol$6('species');
2943
3173
 
2944
- var setSpecies$1 = function (CONSTRUCTOR_NAME) {
2945
- var Constructor = getBuiltIn$2(CONSTRUCTOR_NAME);
3174
+ var setSpecies$2 = function (CONSTRUCTOR_NAME) {
3175
+ var Constructor = getBuiltIn$4(CONSTRUCTOR_NAME);
2946
3176
 
2947
- if (DESCRIPTORS$4 && Constructor && !Constructor[SPECIES]) {
2948
- defineBuiltInAccessor$2(Constructor, SPECIES, {
3177
+ if (DESCRIPTORS$5 && Constructor && !Constructor[SPECIES$2]) {
3178
+ defineBuiltInAccessor$2(Constructor, SPECIES$2, {
2949
3179
  configurable: true,
2950
3180
  get: function () { return this; }
2951
3181
  });
2952
3182
  }
2953
3183
  };
2954
3184
 
2955
- var DESCRIPTORS$3 = descriptors;
2956
- var global$3 = global$h;
2957
- var uncurryThis$6 = functionUncurryThis;
2958
- var isForced = isForced_1;
3185
+ var DESCRIPTORS$4 = descriptors;
3186
+ var global$a = global$o;
3187
+ var uncurryThis$5 = functionUncurryThis;
3188
+ var isForced$1 = isForced_1;
2959
3189
  var inheritIfRequired$1 = inheritIfRequired$2;
2960
3190
  var createNonEnumerableProperty$3 = createNonEnumerableProperty$9;
2961
3191
  var create = objectCreate;
2962
3192
  var getOwnPropertyNames = objectGetOwnPropertyNames.f;
2963
- var isPrototypeOf$2 = objectIsPrototypeOf;
2964
- var isRegExp$1 = isRegexp;
2965
- var toString$4 = toString$a;
2966
- var getRegExpFlags$1 = regexpGetFlags;
3193
+ var isPrototypeOf$4 = objectIsPrototypeOf;
3194
+ var isRegExp = isRegexp;
3195
+ var toString$2 = toString$a;
3196
+ var getRegExpFlags = regexpGetFlags;
2967
3197
  var stickyHelpers = regexpStickyHelpers;
2968
3198
  var proxyAccessor$1 = proxyAccessor$2;
2969
- var defineBuiltIn$1 = defineBuiltIn$6;
2970
- var fails$4 = fails$n;
2971
- var hasOwn$2 = hasOwnProperty_1;
3199
+ var defineBuiltIn$2 = defineBuiltIn$8;
3200
+ var fails$4 = fails$q;
3201
+ var hasOwn$3 = hasOwnProperty_1;
2972
3202
  var enforceInternalState = internalState.enforce;
2973
- var setSpecies = setSpecies$1;
2974
- var wellKnownSymbol$1 = wellKnownSymbol$e;
3203
+ var setSpecies$1 = setSpecies$2;
3204
+ var wellKnownSymbol$5 = wellKnownSymbol$j;
2975
3205
  var UNSUPPORTED_DOT_ALL$1 = regexpUnsupportedDotAll;
2976
3206
  var UNSUPPORTED_NCG = regexpUnsupportedNcg;
2977
3207
 
2978
- var MATCH$1 = wellKnownSymbol$1('match');
2979
- var NativeRegExp = global$3.RegExp;
2980
- var RegExpPrototype$2 = NativeRegExp.prototype;
2981
- var SyntaxError = global$3.SyntaxError;
2982
- var exec$1 = uncurryThis$6(RegExpPrototype$2.exec);
2983
- var charAt$1 = uncurryThis$6(''.charAt);
2984
- var replace$3 = uncurryThis$6(''.replace);
2985
- var stringIndexOf$1 = uncurryThis$6(''.indexOf);
2986
- var stringSlice$1 = uncurryThis$6(''.slice);
3208
+ var MATCH = wellKnownSymbol$5('match');
3209
+ var NativeRegExp = global$a.RegExp;
3210
+ var RegExpPrototype$1 = NativeRegExp.prototype;
3211
+ var SyntaxError = global$a.SyntaxError;
3212
+ var exec$1 = uncurryThis$5(RegExpPrototype$1.exec);
3213
+ var charAt = uncurryThis$5(''.charAt);
3214
+ var replace$2 = uncurryThis$5(''.replace);
3215
+ var stringIndexOf = uncurryThis$5(''.indexOf);
3216
+ var stringSlice$1 = uncurryThis$5(''.slice);
2987
3217
  // TODO: Use only proper RegExpIdentifierName
2988
3218
  var IS_NCG = /^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/;
2989
3219
  var re1 = /a/g;
@@ -2995,9 +3225,9 @@ var CORRECT_NEW = new NativeRegExp(re1) !== re1;
2995
3225
  var MISSED_STICKY = stickyHelpers.MISSED_STICKY;
2996
3226
  var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
2997
3227
 
2998
- var BASE_FORCED = DESCRIPTORS$3 &&
3228
+ var BASE_FORCED = DESCRIPTORS$4 &&
2999
3229
  (!CORRECT_NEW || MISSED_STICKY || UNSUPPORTED_DOT_ALL$1 || UNSUPPORTED_NCG || fails$4(function () {
3000
- re2[MATCH$1] = false;
3230
+ re2[MATCH] = false;
3001
3231
  // RegExp constructor can alter flags and IsRegExp works correct with @@match
3002
3232
  return NativeRegExp(re1) !== re1 || NativeRegExp(re2) === re2 || String(NativeRegExp(re1, 'i')) !== '/a/i';
3003
3233
  }));
@@ -3009,9 +3239,9 @@ var handleDotAll = function (string) {
3009
3239
  var brackets = false;
3010
3240
  var chr;
3011
3241
  for (; index <= length; index++) {
3012
- chr = charAt$1(string, index);
3242
+ chr = charAt(string, index);
3013
3243
  if (chr === '\\') {
3014
- result += chr + charAt$1(string, ++index);
3244
+ result += chr + charAt(string, ++index);
3015
3245
  continue;
3016
3246
  }
3017
3247
  if (!brackets && chr === '.') {
@@ -3038,9 +3268,9 @@ var handleNCG = function (string) {
3038
3268
  var groupname = '';
3039
3269
  var chr;
3040
3270
  for (; index <= length; index++) {
3041
- chr = charAt$1(string, index);
3271
+ chr = charAt(string, index);
3042
3272
  if (chr === '\\') {
3043
- chr += charAt$1(string, ++index);
3273
+ chr += charAt(string, ++index);
3044
3274
  } else if (chr === ']') {
3045
3275
  brackets = false;
3046
3276
  } else if (!brackets) switch (true) {
@@ -3056,7 +3286,7 @@ var handleNCG = function (string) {
3056
3286
  groupid++;
3057
3287
  continue;
3058
3288
  case chr === '>' && ncg:
3059
- if (groupname === '' || hasOwn$2(names, groupname)) {
3289
+ if (groupname === '' || hasOwn$3(names, groupname)) {
3060
3290
  throw new SyntaxError('Invalid capture group name');
3061
3291
  }
3062
3292
  names[groupname] = true;
@@ -3072,10 +3302,10 @@ var handleNCG = function (string) {
3072
3302
 
3073
3303
  // `RegExp` constructor
3074
3304
  // https://tc39.es/ecma262/#sec-regexp-constructor
3075
- if (isForced('RegExp', BASE_FORCED)) {
3305
+ if (isForced$1('RegExp', BASE_FORCED)) {
3076
3306
  var RegExpWrapper = function RegExp(pattern, flags) {
3077
- var thisIsRegExp = isPrototypeOf$2(RegExpPrototype$2, this);
3078
- var patternIsRegExp = isRegExp$1(pattern);
3307
+ var thisIsRegExp = isPrototypeOf$4(RegExpPrototype$1, this);
3308
+ var patternIsRegExp = isRegExp(pattern);
3079
3309
  var flagsAreUndefined = flags === undefined;
3080
3310
  var groups = [];
3081
3311
  var rawPattern = pattern;
@@ -3085,25 +3315,25 @@ if (isForced('RegExp', BASE_FORCED)) {
3085
3315
  return pattern;
3086
3316
  }
3087
3317
 
3088
- if (patternIsRegExp || isPrototypeOf$2(RegExpPrototype$2, pattern)) {
3318
+ if (patternIsRegExp || isPrototypeOf$4(RegExpPrototype$1, pattern)) {
3089
3319
  pattern = pattern.source;
3090
- if (flagsAreUndefined) flags = getRegExpFlags$1(rawPattern);
3320
+ if (flagsAreUndefined) flags = getRegExpFlags(rawPattern);
3091
3321
  }
3092
3322
 
3093
- pattern = pattern === undefined ? '' : toString$4(pattern);
3094
- flags = flags === undefined ? '' : toString$4(flags);
3323
+ pattern = pattern === undefined ? '' : toString$2(pattern);
3324
+ flags = flags === undefined ? '' : toString$2(flags);
3095
3325
  rawPattern = pattern;
3096
3326
 
3097
3327
  if (UNSUPPORTED_DOT_ALL$1 && 'dotAll' in re1) {
3098
- dotAll = !!flags && stringIndexOf$1(flags, 's') > -1;
3099
- if (dotAll) flags = replace$3(flags, /s/g, '');
3328
+ dotAll = !!flags && stringIndexOf(flags, 's') > -1;
3329
+ if (dotAll) flags = replace$2(flags, /s/g, '');
3100
3330
  }
3101
3331
 
3102
3332
  rawFlags = flags;
3103
3333
 
3104
3334
  if (MISSED_STICKY && 'sticky' in re1) {
3105
- sticky = !!flags && stringIndexOf$1(flags, 'y') > -1;
3106
- if (sticky && UNSUPPORTED_Y) flags = replace$3(flags, /y/g, '');
3335
+ sticky = !!flags && stringIndexOf(flags, 'y') > -1;
3336
+ if (sticky && UNSUPPORTED_Y) flags = replace$2(flags, /y/g, '');
3107
3337
  }
3108
3338
 
3109
3339
  if (UNSUPPORTED_NCG) {
@@ -3112,7 +3342,7 @@ if (isForced('RegExp', BASE_FORCED)) {
3112
3342
  groups = handled[1];
3113
3343
  }
3114
3344
 
3115
- result = inheritIfRequired$1(NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype$2, RegExpWrapper);
3345
+ result = inheritIfRequired$1(NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype$1, RegExpWrapper);
3116
3346
 
3117
3347
  if (dotAll || sticky || groups.length) {
3118
3348
  state = enforceInternalState(result);
@@ -3136,66 +3366,40 @@ if (isForced('RegExp', BASE_FORCED)) {
3136
3366
  proxyAccessor$1(RegExpWrapper, NativeRegExp, keys[index++]);
3137
3367
  }
3138
3368
 
3139
- RegExpPrototype$2.constructor = RegExpWrapper;
3140
- RegExpWrapper.prototype = RegExpPrototype$2;
3141
- defineBuiltIn$1(global$3, 'RegExp', RegExpWrapper, { constructor: true });
3369
+ RegExpPrototype$1.constructor = RegExpWrapper;
3370
+ RegExpWrapper.prototype = RegExpPrototype$1;
3371
+ defineBuiltIn$2(global$a, 'RegExp', RegExpWrapper, { constructor: true });
3142
3372
  }
3143
3373
 
3144
3374
  // https://tc39.es/ecma262/#sec-get-regexp-@@species
3145
- setSpecies('RegExp');
3375
+ setSpecies$1('RegExp');
3146
3376
 
3147
- var DESCRIPTORS$2 = descriptors;
3377
+ var DESCRIPTORS$3 = descriptors;
3148
3378
  var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
3149
- var classof$1 = classofRaw$1;
3379
+ var classof$3 = classofRaw$2;
3150
3380
  var defineBuiltInAccessor$1 = defineBuiltInAccessor$3;
3151
3381
  var getInternalState = internalState.get;
3152
3382
 
3153
- var RegExpPrototype$1 = RegExp.prototype;
3154
- var $TypeError$1 = TypeError;
3383
+ var RegExpPrototype = RegExp.prototype;
3384
+ var $TypeError$7 = TypeError;
3155
3385
 
3156
3386
  // `RegExp.prototype.dotAll` getter
3157
3387
  // https://tc39.es/ecma262/#sec-get-regexp.prototype.dotall
3158
- if (DESCRIPTORS$2 && UNSUPPORTED_DOT_ALL) {
3159
- defineBuiltInAccessor$1(RegExpPrototype$1, 'dotAll', {
3388
+ if (DESCRIPTORS$3 && UNSUPPORTED_DOT_ALL) {
3389
+ defineBuiltInAccessor$1(RegExpPrototype, 'dotAll', {
3160
3390
  configurable: true,
3161
3391
  get: function dotAll() {
3162
- if (this === RegExpPrototype$1) return;
3392
+ if (this === RegExpPrototype) return;
3163
3393
  // We can't use InternalStateModule.getterFor because
3164
3394
  // we don't add metadata for regexps created by a literal.
3165
- if (classof$1(this) === 'RegExp') {
3395
+ if (classof$3(this) === 'RegExp') {
3166
3396
  return !!getInternalState(this).dotAll;
3167
3397
  }
3168
- throw new $TypeError$1('Incompatible receiver, RegExp required');
3398
+ throw new $TypeError$7('Incompatible receiver, RegExp required');
3169
3399
  }
3170
3400
  });
3171
3401
  }
3172
3402
 
3173
- var PROPER_FUNCTION_NAME = functionName.PROPER;
3174
- var defineBuiltIn = defineBuiltIn$6;
3175
- var anObject = anObject$9;
3176
- var $toString = toString$a;
3177
- var fails$3 = fails$n;
3178
- var getRegExpFlags = regexpGetFlags;
3179
-
3180
- var TO_STRING = 'toString';
3181
- var RegExpPrototype = RegExp.prototype;
3182
- var nativeToString = RegExpPrototype[TO_STRING];
3183
-
3184
- var NOT_GENERIC = fails$3(function () { return nativeToString.call({ source: 'a', flags: 'b' }) !== '/a/b'; });
3185
- // FF44- RegExp#toString has a wrong name
3186
- var INCORRECT_NAME = PROPER_FUNCTION_NAME && nativeToString.name !== TO_STRING;
3187
-
3188
- // `RegExp.prototype.toString` method
3189
- // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
3190
- if (NOT_GENERIC || INCORRECT_NAME) {
3191
- defineBuiltIn(RegExpPrototype, TO_STRING, function toString() {
3192
- var R = anObject(this);
3193
- var pattern = $toString(R.source);
3194
- var flags = $toString(getRegExpFlags(R));
3195
- return '/' + pattern + '/' + flags;
3196
- }, { unsafe: true });
3197
- }
3198
-
3199
3403
  const fetchRegister = props => __awaiter(void 0, void 0, void 0, function* () {
3200
3404
  let headers = {};
3201
3405
  const {
@@ -3221,7 +3425,9 @@ const fetchRegister = props => __awaiter(void 0, void 0, void 0, function* () {
3221
3425
  }
3222
3426
  return responseData;
3223
3427
  } catch (err) {
3428
+ const error = err;
3224
3429
  console.warn(`Error in fetch enum register data from remote: ${err}`);
3430
+ return error.message;
3225
3431
  }
3226
3432
  }
3227
3433
  return undefined;
@@ -3242,42 +3448,100 @@ const JsonFormRegisterProvider = ({
3242
3448
  defaultRegisters
3243
3449
  }) => {
3244
3450
  const registerCtx = useContext(JsonFormsRegisterContext);
3245
- const [registers, dispatch] = useReducer(registerReducer, []);
3451
+ const [registers, dispatch] = useReducer(registerReducer, {
3452
+ registerData: [],
3453
+ nonAnonymous: [],
3454
+ nonExistent: [],
3455
+ errors: {}
3456
+ });
3246
3457
  const context = useMemo(() => {
3247
3458
  return {
3248
3459
  isProvided: true,
3249
3460
  registerDispatch: dispatch,
3250
3461
  selectRegisterData: criteria => {
3251
- var _a, _b;
3462
+ var _a, _b, _c, _d;
3252
3463
  if (criteria === null || criteria === void 0 ? void 0 : criteria.url) {
3253
- return ((_a = registers === null || registers === void 0 ? void 0 : registers.find(r => r.url === criteria.url)) === null || _a === void 0 ? void 0 : _a.data) || [];
3464
+ return ((_b = (_a = registers.registerData) === null || _a === void 0 ? void 0 : _a.find(r => r.url === criteria.url)) === null || _b === void 0 ? void 0 : _b.data) || [];
3254
3465
  }
3255
3466
  if (criteria === null || criteria === void 0 ? void 0 : criteria.urn) {
3256
- return ((_b = registers === null || registers === void 0 ? void 0 : registers.find(r => r.urn === criteria.urn)) === null || _b === void 0 ? void 0 : _b.data) || [];
3467
+ return ((_d = (_c = registers.registerData) === null || _c === void 0 ? void 0 : _c.find(r => r.urn === criteria.urn)) === null || _d === void 0 ? void 0 : _d.data) || [];
3257
3468
  }
3258
3469
  return [];
3259
3470
  },
3471
+ fetchErrors: criteria => {
3472
+ var _a;
3473
+ if (criteria === null || criteria === void 0 ? void 0 : criteria.url) {
3474
+ const matchFound = registers === null || registers === void 0 ? void 0 : registers.registerData.some(listItem => {
3475
+ var _a;
3476
+ if ((listItem === null || listItem === void 0 ? void 0 : listItem.url) && ((_a = criteria === null || criteria === void 0 ? void 0 : criteria.url) === null || _a === void 0 ? void 0 : _a.toString().includes(listItem === null || listItem === void 0 ? void 0 : listItem.url))) {
3477
+ return true;
3478
+ }
3479
+ return false;
3480
+ });
3481
+ return matchFound ? '' : `${((_a = registers.errors[criteria === null || criteria === void 0 ? void 0 : criteria.url]) === null || _a === void 0 ? void 0 : _a.message) || ''}`;
3482
+ } else if (criteria === null || criteria === void 0 ? void 0 : criteria.urn) {
3483
+ if (registers === null || registers === void 0 ? void 0 : registers.nonExistent) {
3484
+ const matchFound = registers === null || registers === void 0 ? void 0 : registers.nonExistent.some(listItem => {
3485
+ var _a;
3486
+ if ((_a = criteria === null || criteria === void 0 ? void 0 : criteria.urn) === null || _a === void 0 ? void 0 : _a.toString().includes(listItem)) {
3487
+ return true;
3488
+ }
3489
+ return false;
3490
+ });
3491
+ if (!matchFound) {
3492
+ return 'The element does not exist';
3493
+ }
3494
+ }
3495
+ if (registers === null || registers === void 0 ? void 0 : registers.nonAnonymous) {
3496
+ const matchFound = registers === null || registers === void 0 ? void 0 : registers.nonAnonymous.some(nonAnon => {
3497
+ var _a;
3498
+ if ((_a = criteria === null || criteria === void 0 ? void 0 : criteria.urn) === null || _a === void 0 ? void 0 : _a.toString().includes(nonAnon)) {
3499
+ return true;
3500
+ }
3501
+ return false;
3502
+ });
3503
+ return matchFound ? 'The element does not allow anonymous reading' : '';
3504
+ }
3505
+ }
3506
+ return '';
3507
+ },
3260
3508
  fetchRegisterByUrl: registerConfig => __awaiter(void 0, void 0, void 0, function* () {
3509
+ var _a;
3261
3510
  // Prevent re-freshing remote data
3262
- if (registers === null || registers === void 0 ? void 0 : registers.find(r => r.url === (registerConfig === null || registerConfig === void 0 ? void 0 : registerConfig.url))) {
3511
+ if ((_a = registers.registerData) === null || _a === void 0 ? void 0 : _a.find(r => r.url === (registerConfig === null || registerConfig === void 0 ? void 0 : registerConfig.url))) {
3263
3512
  return;
3264
3513
  }
3265
3514
  const data = yield fetchRegister(registerConfig);
3266
3515
  // TODO: check the data type
3267
- if (data) {
3516
+ if (Array.isArray(data)) {
3268
3517
  dispatch({
3269
3518
  type: ADD_REGISTER_DATA_ACTION,
3270
3519
  payload: Object.assign(Object.assign({}, registerConfig), {
3271
3520
  data
3272
3521
  })
3273
3522
  });
3523
+ } else {
3524
+ const url = registerConfig.url || 'error';
3525
+ const errors = {
3526
+ [url]: {
3527
+ message: data || '',
3528
+ url: url
3529
+ }
3530
+ };
3531
+ if (JSON.stringify(registers.errors[url]) !== JSON.stringify(errors[url])) {
3532
+ dispatch({
3533
+ type: ADD_REGISTER_DATA_ERROR,
3534
+ payload: errors
3535
+ });
3536
+ }
3274
3537
  }
3275
3538
  })
3276
3539
  };
3277
3540
  }, [registers]);
3278
3541
  useEffect(() => {
3542
+ var _a, _b, _c;
3279
3543
  if (defaultRegisters) {
3280
- defaultRegisters === null || defaultRegisters === void 0 ? void 0 : defaultRegisters.forEach(register => {
3544
+ (_a = defaultRegisters === null || defaultRegisters === void 0 ? void 0 : defaultRegisters.registerData) === null || _a === void 0 ? void 0 : _a.forEach(register => {
3281
3545
  if ((register === null || register === void 0 ? void 0 : register.data) !== undefined) {
3282
3546
  // Register comes with data from remote
3283
3547
  dispatch({
@@ -3287,7 +3551,7 @@ const JsonFormRegisterProvider = ({
3287
3551
  } else {
3288
3552
  (() => __awaiter(void 0, void 0, void 0, function* () {
3289
3553
  const data = yield fetchRegister(register);
3290
- if (data) {
3554
+ if (Array.isArray(data)) {
3291
3555
  dispatch({
3292
3556
  type: ADD_REGISTER_DATA_ACTION,
3293
3557
  payload: Object.assign(Object.assign({}, register), {
@@ -3298,6 +3562,22 @@ const JsonFormRegisterProvider = ({
3298
3562
  }))();
3299
3563
  }
3300
3564
  });
3565
+ if (((_b = defaultRegisters === null || defaultRegisters === void 0 ? void 0 : defaultRegisters.nonAnonymous) === null || _b === void 0 ? void 0 : _b.length) > 0) {
3566
+ dispatch({
3567
+ type: ADD_NO_ANONYMOUS_ACTION,
3568
+ payload: {
3569
+ nonAnonymous: defaultRegisters === null || defaultRegisters === void 0 ? void 0 : defaultRegisters.nonAnonymous
3570
+ }
3571
+ });
3572
+ }
3573
+ if (((_c = defaultRegisters === null || defaultRegisters === void 0 ? void 0 : defaultRegisters.dataList) === null || _c === void 0 ? void 0 : _c.length) > 0) {
3574
+ dispatch({
3575
+ type: ADD_DATALIST_ACTION,
3576
+ payload: {
3577
+ nonExistent: defaultRegisters === null || defaultRegisters === void 0 ? void 0 : defaultRegisters.dataList
3578
+ }
3579
+ });
3580
+ }
3301
3581
  }
3302
3582
  }, [dispatch, defaultRegisters]);
3303
3583
  /* The client might use the context outside of the Jsonform to provide custom register data */
@@ -3373,29 +3653,29 @@ const GoAInputBaseControl = props => {
3373
3653
  });
3374
3654
  };
3375
3655
 
3376
- var $$4 = _export;
3377
- var DESCRIPTORS$1 = descriptors;
3378
- var global$2 = global$h;
3379
- var uncurryThis$5 = functionUncurryThis;
3380
- var hasOwn$1 = hasOwnProperty_1;
3381
- var isCallable$2 = isCallable$l;
3382
- var isPrototypeOf$1 = objectIsPrototypeOf;
3383
- var toString$3 = toString$a;
3656
+ var $$8 = _export;
3657
+ var DESCRIPTORS$2 = descriptors;
3658
+ var global$9 = global$o;
3659
+ var uncurryThis$4 = functionUncurryThis;
3660
+ var hasOwn$2 = hasOwnProperty_1;
3661
+ var isCallable$5 = isCallable$q;
3662
+ var isPrototypeOf$3 = objectIsPrototypeOf;
3663
+ var toString$1 = toString$a;
3384
3664
  var defineBuiltInAccessor = defineBuiltInAccessor$3;
3385
3665
  var copyConstructorProperties$1 = copyConstructorProperties$3;
3386
3666
 
3387
- var NativeSymbol = global$2.Symbol;
3667
+ var NativeSymbol = global$9.Symbol;
3388
3668
  var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
3389
3669
 
3390
- if (DESCRIPTORS$1 && isCallable$2(NativeSymbol) && (!('description' in SymbolPrototype) ||
3670
+ if (DESCRIPTORS$2 && isCallable$5(NativeSymbol) && (!('description' in SymbolPrototype) ||
3391
3671
  // Safari 12 bug
3392
3672
  NativeSymbol().description !== undefined
3393
3673
  )) {
3394
3674
  var EmptyStringDescriptionStore = {};
3395
3675
  // wrap Symbol constructor for correct work with undefined description
3396
3676
  var SymbolWrapper = function Symbol() {
3397
- var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString$3(arguments[0]);
3398
- var result = isPrototypeOf$1(SymbolPrototype, this)
3677
+ var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString$1(arguments[0]);
3678
+ var result = isPrototypeOf$3(SymbolPrototype, this)
3399
3679
  ? new NativeSymbol(description)
3400
3680
  // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
3401
3681
  : description === undefined ? NativeSymbol() : NativeSymbol(description);
@@ -3407,25 +3687,25 @@ if (DESCRIPTORS$1 && isCallable$2(NativeSymbol) && (!('description' in SymbolPro
3407
3687
  SymbolWrapper.prototype = SymbolPrototype;
3408
3688
  SymbolPrototype.constructor = SymbolWrapper;
3409
3689
 
3410
- var NATIVE_SYMBOL$1 = String(NativeSymbol('description detection')) === 'Symbol(description detection)';
3411
- var thisSymbolValue = uncurryThis$5(SymbolPrototype.valueOf);
3412
- var symbolDescriptiveString = uncurryThis$5(SymbolPrototype.toString);
3690
+ var NATIVE_SYMBOL = String(NativeSymbol('description detection')) === 'Symbol(description detection)';
3691
+ var thisSymbolValue = uncurryThis$4(SymbolPrototype.valueOf);
3692
+ var symbolDescriptiveString = uncurryThis$4(SymbolPrototype.toString);
3413
3693
  var regexp = /^Symbol\((.*)\)[^)]+$/;
3414
- var replace$2 = uncurryThis$5(''.replace);
3415
- var stringSlice = uncurryThis$5(''.slice);
3694
+ var replace$1 = uncurryThis$4(''.replace);
3695
+ var stringSlice = uncurryThis$4(''.slice);
3416
3696
 
3417
3697
  defineBuiltInAccessor(SymbolPrototype, 'description', {
3418
3698
  configurable: true,
3419
3699
  get: function description() {
3420
3700
  var symbol = thisSymbolValue(this);
3421
- if (hasOwn$1(EmptyStringDescriptionStore, symbol)) return '';
3701
+ if (hasOwn$2(EmptyStringDescriptionStore, symbol)) return '';
3422
3702
  var string = symbolDescriptiveString(symbol);
3423
- var desc = NATIVE_SYMBOL$1 ? stringSlice(string, 7, -1) : replace$2(string, regexp, '$1');
3703
+ var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace$1(string, regexp, '$1');
3424
3704
  return desc === '' ? undefined : desc;
3425
3705
  }
3426
3706
  });
3427
3707
 
3428
- $$4({ global: true, constructor: true, forced: true }, {
3708
+ $$8({ global: true, constructor: true, forced: true }, {
3429
3709
  Symbol: SymbolWrapper
3430
3710
  });
3431
3711
  }
@@ -3682,113 +3962,6 @@ const GoADateControl = props => jsx(GoAInputBaseControl, Object.assign({}, props
3682
3962
  const GoADateControlTester = rankWith(4, isDateControl);
3683
3963
  const GoAInputDateControl = withJsonFormsControlProps(GoADateControl);
3684
3964
 
3685
- var uncurryThis$4 = functionUncurryThis;
3686
-
3687
- var arraySlice$1 = uncurryThis$4([].slice);
3688
-
3689
- var uncurryThis$3 = functionUncurryThis;
3690
- var isArray = isArray$2;
3691
- var isCallable$1 = isCallable$l;
3692
- var classof = classofRaw$1;
3693
- var toString$2 = toString$a;
3694
-
3695
- var push = uncurryThis$3([].push);
3696
-
3697
- var getJsonReplacerFunction = function (replacer) {
3698
- if (isCallable$1(replacer)) return replacer;
3699
- if (!isArray(replacer)) return;
3700
- var rawLength = replacer.length;
3701
- var keys = [];
3702
- for (var i = 0; i < rawLength; i++) {
3703
- var element = replacer[i];
3704
- if (typeof element == 'string') push(keys, element);
3705
- else if (typeof element == 'number' || classof(element) === 'Number' || classof(element) === 'String') push(keys, toString$2(element));
3706
- }
3707
- var keysLength = keys.length;
3708
- var root = true;
3709
- return function (key, value) {
3710
- if (root) {
3711
- root = false;
3712
- return value;
3713
- }
3714
- if (isArray(this)) return value;
3715
- for (var j = 0; j < keysLength; j++) if (keys[j] === key) return value;
3716
- };
3717
- };
3718
-
3719
- var $$3 = _export;
3720
- var getBuiltIn$1 = getBuiltIn$6;
3721
- var apply$1 = functionApply;
3722
- var call = functionCall;
3723
- var uncurryThis$2 = functionUncurryThis;
3724
- var fails$2 = fails$n;
3725
- var isCallable = isCallable$l;
3726
- var isSymbol = isSymbol$3;
3727
- var arraySlice = arraySlice$1;
3728
- var getReplacerFunction = getJsonReplacerFunction;
3729
- var NATIVE_SYMBOL = symbolConstructorDetection;
3730
-
3731
- var $String = String;
3732
- var $stringify = getBuiltIn$1('JSON', 'stringify');
3733
- var exec = uncurryThis$2(/./.exec);
3734
- var charAt = uncurryThis$2(''.charAt);
3735
- var charCodeAt = uncurryThis$2(''.charCodeAt);
3736
- var replace$1 = uncurryThis$2(''.replace);
3737
- var numberToString = uncurryThis$2(1.0.toString);
3738
-
3739
- var tester = /[\uD800-\uDFFF]/g;
3740
- var low = /^[\uD800-\uDBFF]$/;
3741
- var hi = /^[\uDC00-\uDFFF]$/;
3742
-
3743
- var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL || fails$2(function () {
3744
- var symbol = getBuiltIn$1('Symbol')('stringify detection');
3745
- // MS Edge converts symbol values to JSON as {}
3746
- return $stringify([symbol]) !== '[null]'
3747
- // WebKit converts symbol values to JSON as null
3748
- || $stringify({ a: symbol }) !== '{}'
3749
- // V8 throws on boxed symbols
3750
- || $stringify(Object(symbol)) !== '{}';
3751
- });
3752
-
3753
- // https://github.com/tc39/proposal-well-formed-stringify
3754
- var ILL_FORMED_UNICODE = fails$2(function () {
3755
- return $stringify('\uDF06\uD834') !== '"\\udf06\\ud834"'
3756
- || $stringify('\uDEAD') !== '"\\udead"';
3757
- });
3758
-
3759
- var stringifyWithSymbolsFix = function (it, replacer) {
3760
- var args = arraySlice(arguments);
3761
- var $replacer = getReplacerFunction(replacer);
3762
- if (!isCallable($replacer) && (it === undefined || isSymbol(it))) return; // IE8 returns string on undefined
3763
- args[1] = function (key, value) {
3764
- // some old implementations (like WebKit) could pass numbers as keys
3765
- if (isCallable($replacer)) value = call($replacer, this, $String(key), value);
3766
- if (!isSymbol(value)) return value;
3767
- };
3768
- return apply$1($stringify, null, args);
3769
- };
3770
-
3771
- var fixIllFormed = function (match, offset, string) {
3772
- var prev = charAt(string, offset - 1);
3773
- var next = charAt(string, offset + 1);
3774
- if ((exec(low, match) && !exec(hi, next)) || (exec(hi, match) && !exec(low, prev))) {
3775
- return '\\u' + numberToString(charCodeAt(match, 0), 16);
3776
- } return match;
3777
- };
3778
-
3779
- if ($stringify) {
3780
- // `JSON.stringify` method
3781
- // https://tc39.es/ecma262/#sec-json.stringify
3782
- $$3({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
3783
- // eslint-disable-next-line no-unused-vars -- required for `.length`
3784
- stringify: function stringify(it, replacer, space) {
3785
- var args = arraySlice(arguments);
3786
- var result = apply$1(WRONG_SYMBOLS_CONVERSION ? stringifyWithSymbolsFix : $stringify, null, args);
3787
- return ILL_FORMED_UNICODE && typeof result == 'string' ? replace$1(result, tester, fixIllFormed) : result;
3788
- }
3789
- });
3790
- }
3791
-
3792
3965
  const GoANumberInput = props => {
3793
3966
  var _a, _b, _c, _d, _e, _f, _g;
3794
3967
  // eslint-disable-next-line
@@ -4063,8 +4236,10 @@ const EnumSelect = props => {
4063
4236
  const registerConfig = fetchRegisterConfigFromOptions((_b = (_a = props.uischema) === null || _a === void 0 ? void 0 : _a.options) === null || _b === void 0 ? void 0 : _b.register);
4064
4237
  // eslint-disable-next-line react-hooks/exhaustive-deps
4065
4238
  let registerData = [];
4239
+ let error = '';
4066
4240
  if (registerConfig) {
4067
4241
  registerData = registerCtx === null || registerCtx === void 0 ? void 0 : registerCtx.selectRegisterData(registerConfig);
4242
+ error = (registerCtx === null || registerCtx === void 0 ? void 0 : registerCtx.fetchErrors(registerConfig)) || '';
4068
4243
  }
4069
4244
  const autocompletion = ((_d = (_c = props.uischema) === null || _c === void 0 ? void 0 : _c.options) === null || _d === void 0 ? void 0 : _d.autocomplete) === true;
4070
4245
  const appliedUiSchemaOptions = merge({}, config, props.uischema.options);
@@ -4096,25 +4271,29 @@ const EnumSelect = props => {
4096
4271
  registerCtx === null || registerCtx === void 0 ? void 0 : registerCtx.fetchRegisterByUrl(registerConfig);
4097
4272
  }
4098
4273
  }, [registerCtx, registerConfig]);
4099
- return jsx(GoADropdown, Object.assign({
4100
- name: `${label}`,
4101
- value: data,
4102
- disabled: !enabled,
4103
- relative: true,
4104
- filterable: autocompletion,
4105
- testId: `${id || label}-jsonform`
4106
- }, appliedUiSchemaOptions, {
4107
- onChange: (name, value) => {
4108
- handleChange(path, value);
4109
- }
4110
- }, (_e = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _e === void 0 ? void 0 : _e.componentProps, {
4111
- children: mergedOptions === null || mergedOptions === void 0 ? void 0 : mergedOptions.map(item => {
4112
- return jsx(GoADropdownItem, {
4113
- value: `${item.value}`,
4114
- label: `${item.label}`
4115
- }, `json-form-dropdown-${item.value}`);
4116
- })
4117
- }), `${id}-jsonform-key`);
4274
+ return jsx(GoAFormItem, {
4275
+ error: error,
4276
+ label: "",
4277
+ children: jsx(GoADropdown, Object.assign({
4278
+ name: `${label}`,
4279
+ value: data,
4280
+ disabled: !enabled,
4281
+ relative: true,
4282
+ filterable: autocompletion,
4283
+ testId: `${id || label}-jsonform`
4284
+ }, appliedUiSchemaOptions, {
4285
+ onChange: (name, value) => {
4286
+ handleChange(path, value);
4287
+ }
4288
+ }, (_e = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _e === void 0 ? void 0 : _e.componentProps, {
4289
+ children: mergedOptions === null || mergedOptions === void 0 ? void 0 : mergedOptions.map(item => {
4290
+ return jsx(GoADropdownItem, {
4291
+ value: `${item.value}`,
4292
+ label: `${item.label}`
4293
+ }, `json-form-dropdown-${item.value}`);
4294
+ })
4295
+ }), `${id}-jsonform-key`)
4296
+ });
4118
4297
  };
4119
4298
  const enumControl = props => {
4120
4299
  return jsx(GoAInputBaseControl, Object.assign({}, props, {
@@ -4272,75 +4451,6 @@ const BooleanRadioControl = props => jsx(GoAInputBaseControl, Object.assign({},
4272
4451
  const GoABooleanRadioControlTester = rankWith(3, and(isBooleanControl, optionIs('radio', true)));
4273
4452
  const GoABooleanRadioControl = withJsonFormsControlProps(BooleanRadioControl);
4274
4453
 
4275
- var $$2 = _export;
4276
- var $includes = arrayIncludes.includes;
4277
- var fails$1 = fails$n;
4278
- var addToUnscopables = addToUnscopables$3;
4279
-
4280
- // FF99+ bug
4281
- var BROKEN_ON_SPARSE = fails$1(function () {
4282
- // eslint-disable-next-line es/no-array-prototype-includes -- detection
4283
- return !Array(1).includes();
4284
- });
4285
-
4286
- // `Array.prototype.includes` method
4287
- // https://tc39.es/ecma262/#sec-array.prototype.includes
4288
- $$2({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
4289
- includes: function includes(el /* , fromIndex = 0 */) {
4290
- return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
4291
- }
4292
- });
4293
-
4294
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
4295
- addToUnscopables('includes');
4296
-
4297
- var isRegExp = isRegexp;
4298
-
4299
- var $TypeError = TypeError;
4300
-
4301
- var notARegexp = function (it) {
4302
- if (isRegExp(it)) {
4303
- throw new $TypeError("The method doesn't accept regular expressions");
4304
- } return it;
4305
- };
4306
-
4307
- var wellKnownSymbol = wellKnownSymbol$e;
4308
-
4309
- var MATCH = wellKnownSymbol('match');
4310
-
4311
- var correctIsRegexpLogic = function (METHOD_NAME) {
4312
- var regexp = /./;
4313
- try {
4314
- '/./'[METHOD_NAME](regexp);
4315
- } catch (error1) {
4316
- try {
4317
- regexp[MATCH] = false;
4318
- return '/./'[METHOD_NAME](regexp);
4319
- } catch (error2) { /* empty */ }
4320
- } return false;
4321
- };
4322
-
4323
- var $$1 = _export;
4324
- var uncurryThis$1 = functionUncurryThis;
4325
- var notARegExp = notARegexp;
4326
- var requireObjectCoercible = requireObjectCoercible$7;
4327
- var toString$1 = toString$a;
4328
- var correctIsRegExpLogic = correctIsRegexpLogic;
4329
-
4330
- var stringIndexOf = uncurryThis$1(''.indexOf);
4331
-
4332
- // `String.prototype.includes` method
4333
- // https://tc39.es/ecma262/#sec-string.prototype.includes
4334
- $$1({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {
4335
- includes: function includes(searchString /* , position = 0 */) {
4336
- return !!~stringIndexOf(
4337
- toString$1(requireObjectCoercible(this)),
4338
- toString$1(notARegExp(searchString)),
4339
- arguments.length > 1 ? arguments[1] : undefined
4340
- );
4341
- }
4342
- });
4343
-
4344
4454
  let _$5 = t => t,
4345
4455
  _t$5;
4346
4456
  const Checkboxes = ({
@@ -4552,21 +4662,21 @@ var normalizeStringArgument$1 = function (argument, $default) {
4552
4662
  return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
4553
4663
  };
4554
4664
 
4555
- var isObject = isObject$b;
4665
+ var isObject$2 = isObject$d;
4556
4666
  var createNonEnumerableProperty$2 = createNonEnumerableProperty$9;
4557
4667
 
4558
4668
  // `InstallErrorCause` abstract operation
4559
4669
  // https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
4560
4670
  var installErrorCause$1 = function (O, options) {
4561
- if (isObject(options) && 'cause' in options) {
4671
+ if (isObject$2(options) && 'cause' in options) {
4562
4672
  createNonEnumerableProperty$2(O, 'cause', options.cause);
4563
4673
  }
4564
4674
  };
4565
4675
 
4566
- var uncurryThis = functionUncurryThis;
4676
+ var uncurryThis$3 = functionUncurryThis;
4567
4677
 
4568
4678
  var $Error = Error;
4569
- var replace = uncurryThis(''.replace);
4679
+ var replace = uncurryThis$3(''.replace);
4570
4680
 
4571
4681
  var TEST = (function (arg) { return String(new $Error(arg).stack); })('zxcasd');
4572
4682
  // eslint-disable-next-line redos/no-vulnerable -- safe
@@ -4579,10 +4689,10 @@ var errorStackClear = function (stack, dropEntries) {
4579
4689
  } return stack;
4580
4690
  };
4581
4691
 
4582
- var fails = fails$n;
4692
+ var fails$3 = fails$q;
4583
4693
  var createPropertyDescriptor = createPropertyDescriptor$4;
4584
4694
 
4585
- var errorStackInstallable = !fails(function () {
4695
+ var errorStackInstallable = !fails$3(function () {
4586
4696
  var error = new Error('a');
4587
4697
  if (!('stack' in error)) return true;
4588
4698
  // eslint-disable-next-line es/no-object-defineproperty -- safe
@@ -4604,43 +4714,43 @@ var errorStackInstall = function (error, C, stack, dropEntries) {
4604
4714
  }
4605
4715
  };
4606
4716
 
4607
- var getBuiltIn = getBuiltIn$6;
4608
- var hasOwn = hasOwnProperty_1;
4717
+ var getBuiltIn$3 = getBuiltIn$9;
4718
+ var hasOwn$1 = hasOwnProperty_1;
4609
4719
  var createNonEnumerableProperty = createNonEnumerableProperty$9;
4610
- var isPrototypeOf = objectIsPrototypeOf;
4611
- var setPrototypeOf = objectSetPrototypeOf;
4720
+ var isPrototypeOf$2 = objectIsPrototypeOf;
4721
+ var setPrototypeOf$1 = objectSetPrototypeOf;
4612
4722
  var copyConstructorProperties = copyConstructorProperties$3;
4613
4723
  var proxyAccessor = proxyAccessor$2;
4614
4724
  var inheritIfRequired = inheritIfRequired$2;
4615
4725
  var normalizeStringArgument = normalizeStringArgument$1;
4616
4726
  var installErrorCause = installErrorCause$1;
4617
4727
  var installErrorStack = errorStackInstall;
4618
- var DESCRIPTORS = descriptors;
4728
+ var DESCRIPTORS$1 = descriptors;
4619
4729
 
4620
4730
  var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
4621
4731
  var STACK_TRACE_LIMIT = 'stackTraceLimit';
4622
4732
  var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
4623
4733
  var path = FULL_NAME.split('.');
4624
4734
  var ERROR_NAME = path[path.length - 1];
4625
- var OriginalError = getBuiltIn.apply(null, path);
4735
+ var OriginalError = getBuiltIn$3.apply(null, path);
4626
4736
 
4627
4737
  if (!OriginalError) return;
4628
4738
 
4629
4739
  var OriginalErrorPrototype = OriginalError.prototype;
4630
4740
 
4631
4741
  // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
4632
- if (hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
4742
+ if (hasOwn$1(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
4633
4743
 
4634
4744
  if (!FORCED) return OriginalError;
4635
4745
 
4636
- var BaseError = getBuiltIn('Error');
4746
+ var BaseError = getBuiltIn$3('Error');
4637
4747
 
4638
4748
  var WrappedError = wrapper(function (a, b) {
4639
4749
  var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
4640
4750
  var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
4641
4751
  if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
4642
4752
  installErrorStack(result, WrappedError, result.stack, 2);
4643
- if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
4753
+ if (this && isPrototypeOf$2(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
4644
4754
  if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
4645
4755
  return result;
4646
4756
  });
@@ -4648,9 +4758,9 @@ var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_A
4648
4758
  WrappedError.prototype = OriginalErrorPrototype;
4649
4759
 
4650
4760
  if (ERROR_NAME !== 'Error') {
4651
- if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
4761
+ if (setPrototypeOf$1) setPrototypeOf$1(WrappedError, BaseError);
4652
4762
  else copyConstructorProperties(WrappedError, BaseError, { name: true });
4653
- } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {
4763
+ } else if (DESCRIPTORS$1 && STACK_TRACE_LIMIT in OriginalError) {
4654
4764
  proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
4655
4765
  proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
4656
4766
  }
@@ -4669,61 +4779,61 @@ var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_A
4669
4779
  };
4670
4780
 
4671
4781
  /* eslint-disable no-unused-vars -- required for functions `.length` */
4672
- var $ = _export;
4673
- var global$1 = global$h;
4674
- var apply = functionApply;
4782
+ var $$7 = _export;
4783
+ var global$8 = global$o;
4784
+ var apply$1 = functionApply;
4675
4785
  var wrapErrorConstructorWithCause = wrapErrorConstructorWithCause$1;
4676
4786
 
4677
4787
  var WEB_ASSEMBLY = 'WebAssembly';
4678
- var WebAssembly = global$1[WEB_ASSEMBLY];
4788
+ var WebAssembly = global$8[WEB_ASSEMBLY];
4679
4789
 
4680
4790
  // eslint-disable-next-line es/no-error-cause -- feature detection
4681
- var FORCED = new Error('e', { cause: 7 }).cause !== 7;
4791
+ var FORCED$1 = new Error('e', { cause: 7 }).cause !== 7;
4682
4792
 
4683
4793
  var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4684
4794
  var O = {};
4685
- O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
4686
- $({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
4795
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED$1);
4796
+ $$7({ global: true, constructor: true, arity: 1, forced: FORCED$1 }, O);
4687
4797
  };
4688
4798
 
4689
4799
  var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4690
4800
  if (WebAssembly && WebAssembly[ERROR_NAME]) {
4691
4801
  var O = {};
4692
- O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
4693
- $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
4802
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED$1);
4803
+ $$7({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED$1 }, O);
4694
4804
  }
4695
4805
  };
4696
4806
 
4697
4807
  // https://tc39.es/ecma262/#sec-nativeerror
4698
4808
  exportGlobalErrorCauseWrapper('Error', function (init) {
4699
- return function Error(message) { return apply(init, this, arguments); };
4809
+ return function Error(message) { return apply$1(init, this, arguments); };
4700
4810
  });
4701
4811
  exportGlobalErrorCauseWrapper('EvalError', function (init) {
4702
- return function EvalError(message) { return apply(init, this, arguments); };
4812
+ return function EvalError(message) { return apply$1(init, this, arguments); };
4703
4813
  });
4704
4814
  exportGlobalErrorCauseWrapper('RangeError', function (init) {
4705
- return function RangeError(message) { return apply(init, this, arguments); };
4815
+ return function RangeError(message) { return apply$1(init, this, arguments); };
4706
4816
  });
4707
4817
  exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
4708
- return function ReferenceError(message) { return apply(init, this, arguments); };
4818
+ return function ReferenceError(message) { return apply$1(init, this, arguments); };
4709
4819
  });
4710
4820
  exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
4711
- return function SyntaxError(message) { return apply(init, this, arguments); };
4821
+ return function SyntaxError(message) { return apply$1(init, this, arguments); };
4712
4822
  });
4713
4823
  exportGlobalErrorCauseWrapper('TypeError', function (init) {
4714
- return function TypeError(message) { return apply(init, this, arguments); };
4824
+ return function TypeError(message) { return apply$1(init, this, arguments); };
4715
4825
  });
4716
4826
  exportGlobalErrorCauseWrapper('URIError', function (init) {
4717
- return function URIError(message) { return apply(init, this, arguments); };
4827
+ return function URIError(message) { return apply$1(init, this, arguments); };
4718
4828
  });
4719
4829
  exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
4720
- return function CompileError(message) { return apply(init, this, arguments); };
4830
+ return function CompileError(message) { return apply$1(init, this, arguments); };
4721
4831
  });
4722
4832
  exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
4723
- return function LinkError(message) { return apply(init, this, arguments); };
4833
+ return function LinkError(message) { return apply$1(init, this, arguments); };
4724
4834
  });
4725
4835
  exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
4726
- return function RuntimeError(message) { return apply(init, this, arguments); };
4836
+ return function RuntimeError(message) { return apply$1(init, this, arguments); };
4727
4837
  });
4728
4838
 
4729
4839
  class ContextProviderClass {
@@ -6686,7 +6796,7 @@ const HelpContents = ({
6686
6796
  elements,
6687
6797
  isParent: _isParent = false
6688
6798
  }) => jsx("div", {
6689
- children: elements === null || elements === void 0 ? void 0 : elements.map(element => {
6799
+ children: elements === null || elements === void 0 ? void 0 : elements.map((element, index) => {
6690
6800
  return jsx(HelpContentComponent, {
6691
6801
  uischema: element,
6692
6802
  label: element.label,
@@ -6700,7 +6810,7 @@ const HelpContents = ({
6700
6810
  id: '',
6701
6811
  schema: {},
6702
6812
  isParent: _isParent
6703
- });
6813
+ }, `${element.label}-help-content-${index}`);
6704
6814
  })
6705
6815
  });
6706
6816
  const HelpContentTester = rankWith(1, uiTypeIs('HelpContent'));
@@ -6874,17 +6984,1215 @@ const GoAErrorControlTester = rankWith(1000, (uischema, schema, context) => {
6874
6984
  });
6875
6985
  var GoAErrorControl = withJsonFormsControlProps(ErrorControl);
6876
6986
 
6877
- const createDefaultAjv = () => {
6987
+ const createDefaultAjv = (...schemas) => {
6878
6988
  const ajv = new Ajv({
6879
6989
  allErrors: true,
6880
6990
  verbose: true,
6881
6991
  strict: 'log'
6882
6992
  });
6993
+ ajv.addSchema(schemas);
6883
6994
  ajv.addFormat('file-urn', /^urn:ads:platform:file-service:v[0-9]:\/files\/[a-zA-Z0-9.-]*$/);
6884
6995
  addFormats(ajv);
6885
6996
  return ajv;
6886
6997
  };
6887
6998
 
6999
+ var aCallable$6 = aCallable$9;
7000
+ var toObject = toObject$7;
7001
+ var IndexedObject = indexedObject;
7002
+ var lengthOfArrayLike$1 = lengthOfArrayLike$5;
7003
+
7004
+ var $TypeError$6 = TypeError;
7005
+
7006
+ var REDUCE_EMPTY = 'Reduce of empty array with no initial value';
7007
+
7008
+ // `Array.prototype.{ reduce, reduceRight }` methods implementation
7009
+ var createMethod = function (IS_RIGHT) {
7010
+ return function (that, callbackfn, argumentsLength, memo) {
7011
+ var O = toObject(that);
7012
+ var self = IndexedObject(O);
7013
+ var length = lengthOfArrayLike$1(O);
7014
+ aCallable$6(callbackfn);
7015
+ if (length === 0 && argumentsLength < 2) throw new $TypeError$6(REDUCE_EMPTY);
7016
+ var index = IS_RIGHT ? length - 1 : 0;
7017
+ var i = IS_RIGHT ? -1 : 1;
7018
+ if (argumentsLength < 2) while (true) {
7019
+ if (index in self) {
7020
+ memo = self[index];
7021
+ index += i;
7022
+ break;
7023
+ }
7024
+ index += i;
7025
+ if (IS_RIGHT ? index < 0 : length <= index) {
7026
+ throw new $TypeError$6(REDUCE_EMPTY);
7027
+ }
7028
+ }
7029
+ for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {
7030
+ memo = callbackfn(memo, self[index], index, O);
7031
+ }
7032
+ return memo;
7033
+ };
7034
+ };
7035
+
7036
+ var arrayReduce = {
7037
+ // `Array.prototype.reduce` method
7038
+ // https://tc39.es/ecma262/#sec-array.prototype.reduce
7039
+ left: createMethod(false),
7040
+ // `Array.prototype.reduceRight` method
7041
+ // https://tc39.es/ecma262/#sec-array.prototype.reduceright
7042
+ right: createMethod(true)
7043
+ };
7044
+
7045
+ var fails$2 = fails$q;
7046
+
7047
+ var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
7048
+ var method = [][METHOD_NAME];
7049
+ return !!method && fails$2(function () {
7050
+ // eslint-disable-next-line no-useless-call -- required for testing
7051
+ method.call(null, argument || function () { return 1; }, 1);
7052
+ });
7053
+ };
7054
+
7055
+ var global$7 = global$o;
7056
+ var classof$2 = classofRaw$2;
7057
+
7058
+ var engineIsNode = classof$2(global$7.process) === 'process';
7059
+
7060
+ var $$6 = _export;
7061
+ var $reduce = arrayReduce.left;
7062
+ var arrayMethodIsStrict = arrayMethodIsStrict$1;
7063
+ var CHROME_VERSION = engineV8Version;
7064
+ var IS_NODE$4 = engineIsNode;
7065
+
7066
+ // Chrome 80-82 has a critical bug
7067
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
7068
+ var CHROME_BUG = !IS_NODE$4 && CHROME_VERSION > 79 && CHROME_VERSION < 83;
7069
+ var FORCED = CHROME_BUG || !arrayMethodIsStrict('reduce');
7070
+
7071
+ // `Array.prototype.reduce` method
7072
+ // https://tc39.es/ecma262/#sec-array.prototype.reduce
7073
+ $$6({ target: 'Array', proto: true, forced: FORCED }, {
7074
+ reduce: function reduce(callbackfn /* , initialValue */) {
7075
+ var length = arguments.length;
7076
+ return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined);
7077
+ }
7078
+ });
7079
+
7080
+ var isPrototypeOf$1 = objectIsPrototypeOf;
7081
+
7082
+ var $TypeError$5 = TypeError;
7083
+
7084
+ var anInstance$1 = function (it, Prototype) {
7085
+ if (isPrototypeOf$1(Prototype, it)) return it;
7086
+ throw new $TypeError$5('Incorrect invocation');
7087
+ };
7088
+
7089
+ var uncurryThis$2 = functionUncurryThis;
7090
+ var fails$1 = fails$q;
7091
+ var isCallable$4 = isCallable$q;
7092
+ var classof$1 = classof$9;
7093
+ var getBuiltIn$2 = getBuiltIn$9;
7094
+ var inspectSource$1 = inspectSource$3;
7095
+
7096
+ var noop = function () { /* empty */ };
7097
+ var construct = getBuiltIn$2('Reflect', 'construct');
7098
+ var constructorRegExp = /^\s*(?:class|function)\b/;
7099
+ var exec = uncurryThis$2(constructorRegExp.exec);
7100
+ var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
7101
+
7102
+ var isConstructorModern = function isConstructor(argument) {
7103
+ if (!isCallable$4(argument)) return false;
7104
+ try {
7105
+ construct(noop, [], argument);
7106
+ return true;
7107
+ } catch (error) {
7108
+ return false;
7109
+ }
7110
+ };
7111
+
7112
+ var isConstructorLegacy = function isConstructor(argument) {
7113
+ if (!isCallable$4(argument)) return false;
7114
+ switch (classof$1(argument)) {
7115
+ case 'AsyncFunction':
7116
+ case 'GeneratorFunction':
7117
+ case 'AsyncGeneratorFunction': return false;
7118
+ }
7119
+ try {
7120
+ // we can't check .prototype since constructors produced by .bind haven't it
7121
+ // `Function#toString` throws on some built-it function in some legacy engines
7122
+ // (for example, `DOMQuad` and similar in FF41-)
7123
+ return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource$1(argument));
7124
+ } catch (error) {
7125
+ return true;
7126
+ }
7127
+ };
7128
+
7129
+ isConstructorLegacy.sham = true;
7130
+
7131
+ // `IsConstructor` abstract operation
7132
+ // https://tc39.es/ecma262/#sec-isconstructor
7133
+ var isConstructor$1 = !construct || fails$1(function () {
7134
+ var called;
7135
+ return isConstructorModern(isConstructorModern.call)
7136
+ || !isConstructorModern(Object)
7137
+ || !isConstructorModern(function () { called = true; })
7138
+ || called;
7139
+ }) ? isConstructorLegacy : isConstructorModern;
7140
+
7141
+ var isConstructor = isConstructor$1;
7142
+ var tryToString$2 = tryToString$4;
7143
+
7144
+ var $TypeError$4 = TypeError;
7145
+
7146
+ // `Assert: IsConstructor(argument) is true`
7147
+ var aConstructor$1 = function (argument) {
7148
+ if (isConstructor(argument)) return argument;
7149
+ throw new $TypeError$4(tryToString$2(argument) + ' is not a constructor');
7150
+ };
7151
+
7152
+ var anObject$4 = anObject$e;
7153
+ var aConstructor = aConstructor$1;
7154
+ var isNullOrUndefined$1 = isNullOrUndefined$5;
7155
+ var wellKnownSymbol$4 = wellKnownSymbol$j;
7156
+
7157
+ var SPECIES$1 = wellKnownSymbol$4('species');
7158
+
7159
+ // `SpeciesConstructor` abstract operation
7160
+ // https://tc39.es/ecma262/#sec-speciesconstructor
7161
+ var speciesConstructor$1 = function (O, defaultConstructor) {
7162
+ var C = anObject$4(O).constructor;
7163
+ var S;
7164
+ return C === undefined || isNullOrUndefined$1(S = anObject$4(C)[SPECIES$1]) ? defaultConstructor : aConstructor(S);
7165
+ };
7166
+
7167
+ var classofRaw = classofRaw$2;
7168
+ var uncurryThis$1 = functionUncurryThis;
7169
+
7170
+ var functionUncurryThisClause = function (fn) {
7171
+ // Nashorn bug:
7172
+ // https://github.com/zloirock/core-js/issues/1128
7173
+ // https://github.com/zloirock/core-js/issues/1130
7174
+ if (classofRaw(fn) === 'Function') return uncurryThis$1(fn);
7175
+ };
7176
+
7177
+ var uncurryThis = functionUncurryThisClause;
7178
+ var aCallable$5 = aCallable$9;
7179
+ var NATIVE_BIND = functionBindNative;
7180
+
7181
+ var bind$4 = uncurryThis(uncurryThis.bind);
7182
+
7183
+ // optional / simple context binding
7184
+ var functionBindContext = function (fn, that) {
7185
+ aCallable$5(fn);
7186
+ return that === undefined ? fn : NATIVE_BIND ? bind$4(fn, that) : function (/* ...args */) {
7187
+ return fn.apply(that, arguments);
7188
+ };
7189
+ };
7190
+
7191
+ var $TypeError$3 = TypeError;
7192
+
7193
+ var validateArgumentsLength$1 = function (passed, required) {
7194
+ if (passed < required) throw new $TypeError$3('Not enough arguments');
7195
+ return passed;
7196
+ };
7197
+
7198
+ var userAgent$2 = engineUserAgent;
7199
+
7200
+ // eslint-disable-next-line redos/no-vulnerable -- safe
7201
+ var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
7202
+
7203
+ var global$6 = global$o;
7204
+ var apply = functionApply;
7205
+ var bind$3 = functionBindContext;
7206
+ var isCallable$3 = isCallable$q;
7207
+ var hasOwn = hasOwnProperty_1;
7208
+ var fails = fails$q;
7209
+ var html = html$2;
7210
+ var arraySlice = arraySlice$2;
7211
+ var createElement = documentCreateElement$2;
7212
+ var validateArgumentsLength = validateArgumentsLength$1;
7213
+ var IS_IOS$1 = engineIsIos;
7214
+ var IS_NODE$3 = engineIsNode;
7215
+
7216
+ var set = global$6.setImmediate;
7217
+ var clear = global$6.clearImmediate;
7218
+ var process$2 = global$6.process;
7219
+ var Dispatch = global$6.Dispatch;
7220
+ var Function$1 = global$6.Function;
7221
+ var MessageChannel = global$6.MessageChannel;
7222
+ var String$1 = global$6.String;
7223
+ var counter = 0;
7224
+ var queue$2 = {};
7225
+ var ONREADYSTATECHANGE = 'onreadystatechange';
7226
+ var $location, defer, channel, port;
7227
+
7228
+ fails(function () {
7229
+ // Deno throws a ReferenceError on `location` access without `--location` flag
7230
+ $location = global$6.location;
7231
+ });
7232
+
7233
+ var run = function (id) {
7234
+ if (hasOwn(queue$2, id)) {
7235
+ var fn = queue$2[id];
7236
+ delete queue$2[id];
7237
+ fn();
7238
+ }
7239
+ };
7240
+
7241
+ var runner = function (id) {
7242
+ return function () {
7243
+ run(id);
7244
+ };
7245
+ };
7246
+
7247
+ var eventListener = function (event) {
7248
+ run(event.data);
7249
+ };
7250
+
7251
+ var globalPostMessageDefer = function (id) {
7252
+ // old engines have not location.origin
7253
+ global$6.postMessage(String$1(id), $location.protocol + '//' + $location.host);
7254
+ };
7255
+
7256
+ // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
7257
+ if (!set || !clear) {
7258
+ set = function setImmediate(handler) {
7259
+ validateArgumentsLength(arguments.length, 1);
7260
+ var fn = isCallable$3(handler) ? handler : Function$1(handler);
7261
+ var args = arraySlice(arguments, 1);
7262
+ queue$2[++counter] = function () {
7263
+ apply(fn, undefined, args);
7264
+ };
7265
+ defer(counter);
7266
+ return counter;
7267
+ };
7268
+ clear = function clearImmediate(id) {
7269
+ delete queue$2[id];
7270
+ };
7271
+ // Node.js 0.8-
7272
+ if (IS_NODE$3) {
7273
+ defer = function (id) {
7274
+ process$2.nextTick(runner(id));
7275
+ };
7276
+ // Sphere (JS game engine) Dispatch API
7277
+ } else if (Dispatch && Dispatch.now) {
7278
+ defer = function (id) {
7279
+ Dispatch.now(runner(id));
7280
+ };
7281
+ // Browsers with MessageChannel, includes WebWorkers
7282
+ // except iOS - https://github.com/zloirock/core-js/issues/624
7283
+ } else if (MessageChannel && !IS_IOS$1) {
7284
+ channel = new MessageChannel();
7285
+ port = channel.port2;
7286
+ channel.port1.onmessage = eventListener;
7287
+ defer = bind$3(port.postMessage, port);
7288
+ // Browsers with postMessage, skip WebWorkers
7289
+ // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
7290
+ } else if (
7291
+ global$6.addEventListener &&
7292
+ isCallable$3(global$6.postMessage) &&
7293
+ !global$6.importScripts &&
7294
+ $location && $location.protocol !== 'file:' &&
7295
+ !fails(globalPostMessageDefer)
7296
+ ) {
7297
+ defer = globalPostMessageDefer;
7298
+ global$6.addEventListener('message', eventListener, false);
7299
+ // IE8-
7300
+ } else if (ONREADYSTATECHANGE in createElement('script')) {
7301
+ defer = function (id) {
7302
+ html.appendChild(createElement('script'))[ONREADYSTATECHANGE] = function () {
7303
+ html.removeChild(this);
7304
+ run(id);
7305
+ };
7306
+ };
7307
+ // Rest old browsers
7308
+ } else {
7309
+ defer = function (id) {
7310
+ setTimeout(runner(id), 0);
7311
+ };
7312
+ }
7313
+ }
7314
+
7315
+ var task$1 = {
7316
+ set: set,
7317
+ clear: clear
7318
+ };
7319
+
7320
+ var global$5 = global$o;
7321
+ var DESCRIPTORS = descriptors;
7322
+
7323
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
7324
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
7325
+
7326
+ // Avoid NodeJS experimental warning
7327
+ var safeGetBuiltIn$1 = function (name) {
7328
+ if (!DESCRIPTORS) return global$5[name];
7329
+ var descriptor = getOwnPropertyDescriptor(global$5, name);
7330
+ return descriptor && descriptor.value;
7331
+ };
7332
+
7333
+ var Queue$2 = function () {
7334
+ this.head = null;
7335
+ this.tail = null;
7336
+ };
7337
+
7338
+ Queue$2.prototype = {
7339
+ add: function (item) {
7340
+ var entry = { item: item, next: null };
7341
+ var tail = this.tail;
7342
+ if (tail) tail.next = entry;
7343
+ else this.head = entry;
7344
+ this.tail = entry;
7345
+ },
7346
+ get: function () {
7347
+ var entry = this.head;
7348
+ if (entry) {
7349
+ var next = this.head = entry.next;
7350
+ if (next === null) this.tail = null;
7351
+ return entry.item;
7352
+ }
7353
+ }
7354
+ };
7355
+
7356
+ var queue$1 = Queue$2;
7357
+
7358
+ var userAgent$1 = engineUserAgent;
7359
+
7360
+ var engineIsIosPebble = /ipad|iphone|ipod/i.test(userAgent$1) && typeof Pebble != 'undefined';
7361
+
7362
+ var userAgent = engineUserAgent;
7363
+
7364
+ var engineIsWebosWebkit = /web0s(?!.*chrome)/i.test(userAgent);
7365
+
7366
+ var global$4 = global$o;
7367
+ var safeGetBuiltIn = safeGetBuiltIn$1;
7368
+ var bind$2 = functionBindContext;
7369
+ var macrotask = task$1.set;
7370
+ var Queue$1 = queue$1;
7371
+ var IS_IOS = engineIsIos;
7372
+ var IS_IOS_PEBBLE = engineIsIosPebble;
7373
+ var IS_WEBOS_WEBKIT = engineIsWebosWebkit;
7374
+ var IS_NODE$2 = engineIsNode;
7375
+
7376
+ var MutationObserver = global$4.MutationObserver || global$4.WebKitMutationObserver;
7377
+ var document$2 = global$4.document;
7378
+ var process$1 = global$4.process;
7379
+ var Promise$1 = global$4.Promise;
7380
+ var microtask$1 = safeGetBuiltIn('queueMicrotask');
7381
+ var notify$1, toggle, node, promise, then;
7382
+
7383
+ // modern engines have queueMicrotask method
7384
+ if (!microtask$1) {
7385
+ var queue = new Queue$1();
7386
+
7387
+ var flush = function () {
7388
+ var parent, fn;
7389
+ if (IS_NODE$2 && (parent = process$1.domain)) parent.exit();
7390
+ while (fn = queue.get()) try {
7391
+ fn();
7392
+ } catch (error) {
7393
+ if (queue.head) notify$1();
7394
+ throw error;
7395
+ }
7396
+ if (parent) parent.enter();
7397
+ };
7398
+
7399
+ // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339
7400
+ // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898
7401
+ if (!IS_IOS && !IS_NODE$2 && !IS_WEBOS_WEBKIT && MutationObserver && document$2) {
7402
+ toggle = true;
7403
+ node = document$2.createTextNode('');
7404
+ new MutationObserver(flush).observe(node, { characterData: true });
7405
+ notify$1 = function () {
7406
+ node.data = toggle = !toggle;
7407
+ };
7408
+ // environments with maybe non-completely correct, but existent Promise
7409
+ } else if (!IS_IOS_PEBBLE && Promise$1 && Promise$1.resolve) {
7410
+ // Promise.resolve without an argument throws an error in LG WebOS 2
7411
+ promise = Promise$1.resolve(undefined);
7412
+ // workaround of WebKit ~ iOS Safari 10.1 bug
7413
+ promise.constructor = Promise$1;
7414
+ then = bind$2(promise.then, promise);
7415
+ notify$1 = function () {
7416
+ then(flush);
7417
+ };
7418
+ // Node.js without promises
7419
+ } else if (IS_NODE$2) {
7420
+ notify$1 = function () {
7421
+ process$1.nextTick(flush);
7422
+ };
7423
+ // for other environments - macrotask based on:
7424
+ // - setImmediate
7425
+ // - MessageChannel
7426
+ // - window.postMessage
7427
+ // - onreadystatechange
7428
+ // - setTimeout
7429
+ } else {
7430
+ // `webpack` dev server bug on IE global methods - use bind(fn, global)
7431
+ macrotask = bind$2(macrotask, global$4);
7432
+ notify$1 = function () {
7433
+ macrotask(flush);
7434
+ };
7435
+ }
7436
+
7437
+ microtask$1 = function (fn) {
7438
+ if (!queue.head) notify$1();
7439
+ queue.add(fn);
7440
+ };
7441
+ }
7442
+
7443
+ var microtask_1 = microtask$1;
7444
+
7445
+ var hostReportErrors$1 = function (a, b) {
7446
+ try {
7447
+ // eslint-disable-next-line no-console -- safe
7448
+ arguments.length === 1 ? console.error(a) : console.error(a, b);
7449
+ } catch (error) { /* empty */ }
7450
+ };
7451
+
7452
+ var perform$3 = function (exec) {
7453
+ try {
7454
+ return { error: false, value: exec() };
7455
+ } catch (error) {
7456
+ return { error: true, value: error };
7457
+ }
7458
+ };
7459
+
7460
+ var global$3 = global$o;
7461
+
7462
+ var promiseNativeConstructor = global$3.Promise;
7463
+
7464
+ /* global Deno -- Deno case */
7465
+ var engineIsDeno = typeof Deno == 'object' && Deno && typeof Deno.version == 'object';
7466
+
7467
+ var IS_DENO$1 = engineIsDeno;
7468
+ var IS_NODE$1 = engineIsNode;
7469
+
7470
+ var engineIsBrowser = !IS_DENO$1 && !IS_NODE$1
7471
+ && typeof window == 'object'
7472
+ && typeof document == 'object';
7473
+
7474
+ var global$2 = global$o;
7475
+ var NativePromiseConstructor$3 = promiseNativeConstructor;
7476
+ var isCallable$2 = isCallable$q;
7477
+ var isForced = isForced_1;
7478
+ var inspectSource = inspectSource$3;
7479
+ var wellKnownSymbol$3 = wellKnownSymbol$j;
7480
+ var IS_BROWSER = engineIsBrowser;
7481
+ var IS_DENO = engineIsDeno;
7482
+ var V8_VERSION = engineV8Version;
7483
+
7484
+ NativePromiseConstructor$3 && NativePromiseConstructor$3.prototype;
7485
+ var SPECIES = wellKnownSymbol$3('species');
7486
+ var SUBCLASSING = false;
7487
+ var NATIVE_PROMISE_REJECTION_EVENT$1 = isCallable$2(global$2.PromiseRejectionEvent);
7488
+
7489
+ var FORCED_PROMISE_CONSTRUCTOR$5 = isForced('Promise', function () {
7490
+ var PROMISE_CONSTRUCTOR_SOURCE = inspectSource(NativePromiseConstructor$3);
7491
+ var GLOBAL_CORE_JS_PROMISE = PROMISE_CONSTRUCTOR_SOURCE !== String(NativePromiseConstructor$3);
7492
+ // V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables
7493
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=830565
7494
+ // We can't detect it synchronously, so just check versions
7495
+ if (!GLOBAL_CORE_JS_PROMISE && V8_VERSION === 66) return true;
7496
+ // We can't use @@species feature detection in V8 since it causes
7497
+ // deoptimization and performance degradation
7498
+ // https://github.com/zloirock/core-js/issues/679
7499
+ if (!V8_VERSION || V8_VERSION < 51 || !/native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) {
7500
+ // Detect correctness of subclassing with @@species support
7501
+ var promise = new NativePromiseConstructor$3(function (resolve) { resolve(1); });
7502
+ var FakePromise = function (exec) {
7503
+ exec(function () { /* empty */ }, function () { /* empty */ });
7504
+ };
7505
+ var constructor = promise.constructor = {};
7506
+ constructor[SPECIES] = FakePromise;
7507
+ SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
7508
+ if (!SUBCLASSING) return true;
7509
+ // Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
7510
+ } return !GLOBAL_CORE_JS_PROMISE && (IS_BROWSER || IS_DENO) && !NATIVE_PROMISE_REJECTION_EVENT$1;
7511
+ });
7512
+
7513
+ var promiseConstructorDetection = {
7514
+ CONSTRUCTOR: FORCED_PROMISE_CONSTRUCTOR$5,
7515
+ REJECTION_EVENT: NATIVE_PROMISE_REJECTION_EVENT$1,
7516
+ SUBCLASSING: SUBCLASSING
7517
+ };
7518
+
7519
+ var newPromiseCapability$2 = {};
7520
+
7521
+ var aCallable$4 = aCallable$9;
7522
+
7523
+ var $TypeError$2 = TypeError;
7524
+
7525
+ var PromiseCapability = function (C) {
7526
+ var resolve, reject;
7527
+ this.promise = new C(function ($$resolve, $$reject) {
7528
+ if (resolve !== undefined || reject !== undefined) throw new $TypeError$2('Bad Promise constructor');
7529
+ resolve = $$resolve;
7530
+ reject = $$reject;
7531
+ });
7532
+ this.resolve = aCallable$4(resolve);
7533
+ this.reject = aCallable$4(reject);
7534
+ };
7535
+
7536
+ // `NewPromiseCapability` abstract operation
7537
+ // https://tc39.es/ecma262/#sec-newpromisecapability
7538
+ newPromiseCapability$2.f = function (C) {
7539
+ return new PromiseCapability(C);
7540
+ };
7541
+
7542
+ var $$5 = _export;
7543
+ var IS_NODE = engineIsNode;
7544
+ var global$1 = global$o;
7545
+ var call$5 = functionCall;
7546
+ var defineBuiltIn$1 = defineBuiltIn$8;
7547
+ var setPrototypeOf = objectSetPrototypeOf;
7548
+ var setToStringTag = setToStringTag$4;
7549
+ var setSpecies = setSpecies$2;
7550
+ var aCallable$3 = aCallable$9;
7551
+ var isCallable$1 = isCallable$q;
7552
+ var isObject$1 = isObject$d;
7553
+ var anInstance = anInstance$1;
7554
+ var speciesConstructor = speciesConstructor$1;
7555
+ var task = task$1.set;
7556
+ var microtask = microtask_1;
7557
+ var hostReportErrors = hostReportErrors$1;
7558
+ var perform$2 = perform$3;
7559
+ var Queue = queue$1;
7560
+ var InternalStateModule = internalState;
7561
+ var NativePromiseConstructor$2 = promiseNativeConstructor;
7562
+ var PromiseConstructorDetection = promiseConstructorDetection;
7563
+ var newPromiseCapabilityModule$3 = newPromiseCapability$2;
7564
+
7565
+ var PROMISE = 'Promise';
7566
+ var FORCED_PROMISE_CONSTRUCTOR$4 = PromiseConstructorDetection.CONSTRUCTOR;
7567
+ var NATIVE_PROMISE_REJECTION_EVENT = PromiseConstructorDetection.REJECTION_EVENT;
7568
+ var NATIVE_PROMISE_SUBCLASSING = PromiseConstructorDetection.SUBCLASSING;
7569
+ var getInternalPromiseState = InternalStateModule.getterFor(PROMISE);
7570
+ var setInternalState = InternalStateModule.set;
7571
+ var NativePromisePrototype$1 = NativePromiseConstructor$2 && NativePromiseConstructor$2.prototype;
7572
+ var PromiseConstructor = NativePromiseConstructor$2;
7573
+ var PromisePrototype = NativePromisePrototype$1;
7574
+ var TypeError$1 = global$1.TypeError;
7575
+ var document$1 = global$1.document;
7576
+ var process = global$1.process;
7577
+ var newPromiseCapability$1 = newPromiseCapabilityModule$3.f;
7578
+ var newGenericPromiseCapability = newPromiseCapability$1;
7579
+
7580
+ var DISPATCH_EVENT = !!(document$1 && document$1.createEvent && global$1.dispatchEvent);
7581
+ var UNHANDLED_REJECTION = 'unhandledrejection';
7582
+ var REJECTION_HANDLED = 'rejectionhandled';
7583
+ var PENDING = 0;
7584
+ var FULFILLED = 1;
7585
+ var REJECTED = 2;
7586
+ var HANDLED = 1;
7587
+ var UNHANDLED = 2;
7588
+
7589
+ var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
7590
+
7591
+ // helpers
7592
+ var isThenable = function (it) {
7593
+ var then;
7594
+ return isObject$1(it) && isCallable$1(then = it.then) ? then : false;
7595
+ };
7596
+
7597
+ var callReaction = function (reaction, state) {
7598
+ var value = state.value;
7599
+ var ok = state.state === FULFILLED;
7600
+ var handler = ok ? reaction.ok : reaction.fail;
7601
+ var resolve = reaction.resolve;
7602
+ var reject = reaction.reject;
7603
+ var domain = reaction.domain;
7604
+ var result, then, exited;
7605
+ try {
7606
+ if (handler) {
7607
+ if (!ok) {
7608
+ if (state.rejection === UNHANDLED) onHandleUnhandled(state);
7609
+ state.rejection = HANDLED;
7610
+ }
7611
+ if (handler === true) result = value;
7612
+ else {
7613
+ if (domain) domain.enter();
7614
+ result = handler(value); // can throw
7615
+ if (domain) {
7616
+ domain.exit();
7617
+ exited = true;
7618
+ }
7619
+ }
7620
+ if (result === reaction.promise) {
7621
+ reject(new TypeError$1('Promise-chain cycle'));
7622
+ } else if (then = isThenable(result)) {
7623
+ call$5(then, result, resolve, reject);
7624
+ } else resolve(result);
7625
+ } else reject(value);
7626
+ } catch (error) {
7627
+ if (domain && !exited) domain.exit();
7628
+ reject(error);
7629
+ }
7630
+ };
7631
+
7632
+ var notify = function (state, isReject) {
7633
+ if (state.notified) return;
7634
+ state.notified = true;
7635
+ microtask(function () {
7636
+ var reactions = state.reactions;
7637
+ var reaction;
7638
+ while (reaction = reactions.get()) {
7639
+ callReaction(reaction, state);
7640
+ }
7641
+ state.notified = false;
7642
+ if (isReject && !state.rejection) onUnhandled(state);
7643
+ });
7644
+ };
7645
+
7646
+ var dispatchEvent = function (name, promise, reason) {
7647
+ var event, handler;
7648
+ if (DISPATCH_EVENT) {
7649
+ event = document$1.createEvent('Event');
7650
+ event.promise = promise;
7651
+ event.reason = reason;
7652
+ event.initEvent(name, false, true);
7653
+ global$1.dispatchEvent(event);
7654
+ } else event = { promise: promise, reason: reason };
7655
+ if (!NATIVE_PROMISE_REJECTION_EVENT && (handler = global$1['on' + name])) handler(event);
7656
+ else if (name === UNHANDLED_REJECTION) hostReportErrors('Unhandled promise rejection', reason);
7657
+ };
7658
+
7659
+ var onUnhandled = function (state) {
7660
+ call$5(task, global$1, function () {
7661
+ var promise = state.facade;
7662
+ var value = state.value;
7663
+ var IS_UNHANDLED = isUnhandled(state);
7664
+ var result;
7665
+ if (IS_UNHANDLED) {
7666
+ result = perform$2(function () {
7667
+ if (IS_NODE) {
7668
+ process.emit('unhandledRejection', value, promise);
7669
+ } else dispatchEvent(UNHANDLED_REJECTION, promise, value);
7670
+ });
7671
+ // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should
7672
+ state.rejection = IS_NODE || isUnhandled(state) ? UNHANDLED : HANDLED;
7673
+ if (result.error) throw result.value;
7674
+ }
7675
+ });
7676
+ };
7677
+
7678
+ var isUnhandled = function (state) {
7679
+ return state.rejection !== HANDLED && !state.parent;
7680
+ };
7681
+
7682
+ var onHandleUnhandled = function (state) {
7683
+ call$5(task, global$1, function () {
7684
+ var promise = state.facade;
7685
+ if (IS_NODE) {
7686
+ process.emit('rejectionHandled', promise);
7687
+ } else dispatchEvent(REJECTION_HANDLED, promise, state.value);
7688
+ });
7689
+ };
7690
+
7691
+ var bind$1 = function (fn, state, unwrap) {
7692
+ return function (value) {
7693
+ fn(state, value, unwrap);
7694
+ };
7695
+ };
7696
+
7697
+ var internalReject = function (state, value, unwrap) {
7698
+ if (state.done) return;
7699
+ state.done = true;
7700
+ if (unwrap) state = unwrap;
7701
+ state.value = value;
7702
+ state.state = REJECTED;
7703
+ notify(state, true);
7704
+ };
7705
+
7706
+ var internalResolve = function (state, value, unwrap) {
7707
+ if (state.done) return;
7708
+ state.done = true;
7709
+ if (unwrap) state = unwrap;
7710
+ try {
7711
+ if (state.facade === value) throw new TypeError$1("Promise can't be resolved itself");
7712
+ var then = isThenable(value);
7713
+ if (then) {
7714
+ microtask(function () {
7715
+ var wrapper = { done: false };
7716
+ try {
7717
+ call$5(then, value,
7718
+ bind$1(internalResolve, wrapper, state),
7719
+ bind$1(internalReject, wrapper, state)
7720
+ );
7721
+ } catch (error) {
7722
+ internalReject(wrapper, error, state);
7723
+ }
7724
+ });
7725
+ } else {
7726
+ state.value = value;
7727
+ state.state = FULFILLED;
7728
+ notify(state, false);
7729
+ }
7730
+ } catch (error) {
7731
+ internalReject({ done: false }, error, state);
7732
+ }
7733
+ };
7734
+
7735
+ // constructor polyfill
7736
+ if (FORCED_PROMISE_CONSTRUCTOR$4) {
7737
+ // 25.4.3.1 Promise(executor)
7738
+ PromiseConstructor = function Promise(executor) {
7739
+ anInstance(this, PromisePrototype);
7740
+ aCallable$3(executor);
7741
+ call$5(Internal, this);
7742
+ var state = getInternalPromiseState(this);
7743
+ try {
7744
+ executor(bind$1(internalResolve, state), bind$1(internalReject, state));
7745
+ } catch (error) {
7746
+ internalReject(state, error);
7747
+ }
7748
+ };
7749
+
7750
+ PromisePrototype = PromiseConstructor.prototype;
7751
+
7752
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
7753
+ Internal = function Promise(executor) {
7754
+ setInternalState(this, {
7755
+ type: PROMISE,
7756
+ done: false,
7757
+ notified: false,
7758
+ parent: false,
7759
+ reactions: new Queue(),
7760
+ rejection: false,
7761
+ state: PENDING,
7762
+ value: undefined
7763
+ });
7764
+ };
7765
+
7766
+ // `Promise.prototype.then` method
7767
+ // https://tc39.es/ecma262/#sec-promise.prototype.then
7768
+ Internal.prototype = defineBuiltIn$1(PromisePrototype, 'then', function then(onFulfilled, onRejected) {
7769
+ var state = getInternalPromiseState(this);
7770
+ var reaction = newPromiseCapability$1(speciesConstructor(this, PromiseConstructor));
7771
+ state.parent = true;
7772
+ reaction.ok = isCallable$1(onFulfilled) ? onFulfilled : true;
7773
+ reaction.fail = isCallable$1(onRejected) && onRejected;
7774
+ reaction.domain = IS_NODE ? process.domain : undefined;
7775
+ if (state.state === PENDING) state.reactions.add(reaction);
7776
+ else microtask(function () {
7777
+ callReaction(reaction, state);
7778
+ });
7779
+ return reaction.promise;
7780
+ });
7781
+
7782
+ OwnPromiseCapability = function () {
7783
+ var promise = new Internal();
7784
+ var state = getInternalPromiseState(promise);
7785
+ this.promise = promise;
7786
+ this.resolve = bind$1(internalResolve, state);
7787
+ this.reject = bind$1(internalReject, state);
7788
+ };
7789
+
7790
+ newPromiseCapabilityModule$3.f = newPromiseCapability$1 = function (C) {
7791
+ return C === PromiseConstructor || C === PromiseWrapper
7792
+ ? new OwnPromiseCapability(C)
7793
+ : newGenericPromiseCapability(C);
7794
+ };
7795
+
7796
+ if (isCallable$1(NativePromiseConstructor$2) && NativePromisePrototype$1 !== Object.prototype) {
7797
+ nativeThen = NativePromisePrototype$1.then;
7798
+
7799
+ if (!NATIVE_PROMISE_SUBCLASSING) {
7800
+ // make `Promise#then` return a polyfilled `Promise` for native promise-based APIs
7801
+ defineBuiltIn$1(NativePromisePrototype$1, 'then', function then(onFulfilled, onRejected) {
7802
+ var that = this;
7803
+ return new PromiseConstructor(function (resolve, reject) {
7804
+ call$5(nativeThen, that, resolve, reject);
7805
+ }).then(onFulfilled, onRejected);
7806
+ // https://github.com/zloirock/core-js/issues/640
7807
+ }, { unsafe: true });
7808
+ }
7809
+
7810
+ // make `.constructor === Promise` work for native promise-based APIs
7811
+ try {
7812
+ delete NativePromisePrototype$1.constructor;
7813
+ } catch (error) { /* empty */ }
7814
+
7815
+ // make `instanceof Promise` work for native promise-based APIs
7816
+ if (setPrototypeOf) {
7817
+ setPrototypeOf(NativePromisePrototype$1, PromisePrototype);
7818
+ }
7819
+ }
7820
+ }
7821
+
7822
+ $$5({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTRUCTOR$4 }, {
7823
+ Promise: PromiseConstructor
7824
+ });
7825
+
7826
+ setToStringTag(PromiseConstructor, PROMISE, false);
7827
+ setSpecies(PROMISE);
7828
+
7829
+ var wellKnownSymbol$2 = wellKnownSymbol$j;
7830
+ var Iterators$1 = iterators;
7831
+
7832
+ var ITERATOR$2 = wellKnownSymbol$2('iterator');
7833
+ var ArrayPrototype = Array.prototype;
7834
+
7835
+ // check on default Array iterator
7836
+ var isArrayIteratorMethod$1 = function (it) {
7837
+ return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$2] === it);
7838
+ };
7839
+
7840
+ var classof = classof$9;
7841
+ var getMethod$1 = getMethod$4;
7842
+ var isNullOrUndefined = isNullOrUndefined$5;
7843
+ var Iterators = iterators;
7844
+ var wellKnownSymbol$1 = wellKnownSymbol$j;
7845
+
7846
+ var ITERATOR$1 = wellKnownSymbol$1('iterator');
7847
+
7848
+ var getIteratorMethod$2 = function (it) {
7849
+ if (!isNullOrUndefined(it)) return getMethod$1(it, ITERATOR$1)
7850
+ || getMethod$1(it, '@@iterator')
7851
+ || Iterators[classof(it)];
7852
+ };
7853
+
7854
+ var call$4 = functionCall;
7855
+ var aCallable$2 = aCallable$9;
7856
+ var anObject$3 = anObject$e;
7857
+ var tryToString$1 = tryToString$4;
7858
+ var getIteratorMethod$1 = getIteratorMethod$2;
7859
+
7860
+ var $TypeError$1 = TypeError;
7861
+
7862
+ var getIterator$1 = function (argument, usingIterator) {
7863
+ var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
7864
+ if (aCallable$2(iteratorMethod)) return anObject$3(call$4(iteratorMethod, argument));
7865
+ throw new $TypeError$1(tryToString$1(argument) + ' is not iterable');
7866
+ };
7867
+
7868
+ var call$3 = functionCall;
7869
+ var anObject$2 = anObject$e;
7870
+ var getMethod = getMethod$4;
7871
+
7872
+ var iteratorClose$1 = function (iterator, kind, value) {
7873
+ var innerResult, innerError;
7874
+ anObject$2(iterator);
7875
+ try {
7876
+ innerResult = getMethod(iterator, 'return');
7877
+ if (!innerResult) {
7878
+ if (kind === 'throw') throw value;
7879
+ return value;
7880
+ }
7881
+ innerResult = call$3(innerResult, iterator);
7882
+ } catch (error) {
7883
+ innerError = true;
7884
+ innerResult = error;
7885
+ }
7886
+ if (kind === 'throw') throw value;
7887
+ if (innerError) throw innerResult;
7888
+ anObject$2(innerResult);
7889
+ return value;
7890
+ };
7891
+
7892
+ var bind = functionBindContext;
7893
+ var call$2 = functionCall;
7894
+ var anObject$1 = anObject$e;
7895
+ var tryToString = tryToString$4;
7896
+ var isArrayIteratorMethod = isArrayIteratorMethod$1;
7897
+ var lengthOfArrayLike = lengthOfArrayLike$5;
7898
+ var isPrototypeOf = objectIsPrototypeOf;
7899
+ var getIterator = getIterator$1;
7900
+ var getIteratorMethod = getIteratorMethod$2;
7901
+ var iteratorClose = iteratorClose$1;
7902
+
7903
+ var $TypeError = TypeError;
7904
+
7905
+ var Result = function (stopped, result) {
7906
+ this.stopped = stopped;
7907
+ this.result = result;
7908
+ };
7909
+
7910
+ var ResultPrototype = Result.prototype;
7911
+
7912
+ var iterate$2 = function (iterable, unboundFunction, options) {
7913
+ var that = options && options.that;
7914
+ var AS_ENTRIES = !!(options && options.AS_ENTRIES);
7915
+ var IS_RECORD = !!(options && options.IS_RECORD);
7916
+ var IS_ITERATOR = !!(options && options.IS_ITERATOR);
7917
+ var INTERRUPTED = !!(options && options.INTERRUPTED);
7918
+ var fn = bind(unboundFunction, that);
7919
+ var iterator, iterFn, index, length, result, next, step;
7920
+
7921
+ var stop = function (condition) {
7922
+ if (iterator) iteratorClose(iterator, 'normal', condition);
7923
+ return new Result(true, condition);
7924
+ };
7925
+
7926
+ var callFn = function (value) {
7927
+ if (AS_ENTRIES) {
7928
+ anObject$1(value);
7929
+ return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
7930
+ } return INTERRUPTED ? fn(value, stop) : fn(value);
7931
+ };
7932
+
7933
+ if (IS_RECORD) {
7934
+ iterator = iterable.iterator;
7935
+ } else if (IS_ITERATOR) {
7936
+ iterator = iterable;
7937
+ } else {
7938
+ iterFn = getIteratorMethod(iterable);
7939
+ if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
7940
+ // optimisation for array iterators
7941
+ if (isArrayIteratorMethod(iterFn)) {
7942
+ for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
7943
+ result = callFn(iterable[index]);
7944
+ if (result && isPrototypeOf(ResultPrototype, result)) return result;
7945
+ } return new Result(false);
7946
+ }
7947
+ iterator = getIterator(iterable, iterFn);
7948
+ }
7949
+
7950
+ next = IS_RECORD ? iterable.next : iterator.next;
7951
+ while (!(step = call$2(next, iterator)).done) {
7952
+ try {
7953
+ result = callFn(step.value);
7954
+ } catch (error) {
7955
+ iteratorClose(iterator, 'throw', error);
7956
+ }
7957
+ if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
7958
+ } return new Result(false);
7959
+ };
7960
+
7961
+ var wellKnownSymbol = wellKnownSymbol$j;
7962
+
7963
+ var ITERATOR = wellKnownSymbol('iterator');
7964
+ var SAFE_CLOSING = false;
7965
+
7966
+ try {
7967
+ var called = 0;
7968
+ var iteratorWithReturn = {
7969
+ next: function () {
7970
+ return { done: !!called++ };
7971
+ },
7972
+ 'return': function () {
7973
+ SAFE_CLOSING = true;
7974
+ }
7975
+ };
7976
+ iteratorWithReturn[ITERATOR] = function () {
7977
+ return this;
7978
+ };
7979
+ // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
7980
+ Array.from(iteratorWithReturn, function () { throw 2; });
7981
+ } catch (error) { /* empty */ }
7982
+
7983
+ var checkCorrectnessOfIteration$1 = function (exec, SKIP_CLOSING) {
7984
+ try {
7985
+ if (!SKIP_CLOSING && !SAFE_CLOSING) return false;
7986
+ } catch (error) { return false; } // workaround of old WebKit + `eval` bug
7987
+ var ITERATION_SUPPORT = false;
7988
+ try {
7989
+ var object = {};
7990
+ object[ITERATOR] = function () {
7991
+ return {
7992
+ next: function () {
7993
+ return { done: ITERATION_SUPPORT = true };
7994
+ }
7995
+ };
7996
+ };
7997
+ exec(object);
7998
+ } catch (error) { /* empty */ }
7999
+ return ITERATION_SUPPORT;
8000
+ };
8001
+
8002
+ var NativePromiseConstructor$1 = promiseNativeConstructor;
8003
+ var checkCorrectnessOfIteration = checkCorrectnessOfIteration$1;
8004
+ var FORCED_PROMISE_CONSTRUCTOR$3 = promiseConstructorDetection.CONSTRUCTOR;
8005
+
8006
+ var promiseStaticsIncorrectIteration = FORCED_PROMISE_CONSTRUCTOR$3 || !checkCorrectnessOfIteration(function (iterable) {
8007
+ NativePromiseConstructor$1.all(iterable).then(undefined, function () { /* empty */ });
8008
+ });
8009
+
8010
+ var $$4 = _export;
8011
+ var call$1 = functionCall;
8012
+ var aCallable$1 = aCallable$9;
8013
+ var newPromiseCapabilityModule$2 = newPromiseCapability$2;
8014
+ var perform$1 = perform$3;
8015
+ var iterate$1 = iterate$2;
8016
+ var PROMISE_STATICS_INCORRECT_ITERATION$1 = promiseStaticsIncorrectIteration;
8017
+
8018
+ // `Promise.all` method
8019
+ // https://tc39.es/ecma262/#sec-promise.all
8020
+ $$4({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION$1 }, {
8021
+ all: function all(iterable) {
8022
+ var C = this;
8023
+ var capability = newPromiseCapabilityModule$2.f(C);
8024
+ var resolve = capability.resolve;
8025
+ var reject = capability.reject;
8026
+ var result = perform$1(function () {
8027
+ var $promiseResolve = aCallable$1(C.resolve);
8028
+ var values = [];
8029
+ var counter = 0;
8030
+ var remaining = 1;
8031
+ iterate$1(iterable, function (promise) {
8032
+ var index = counter++;
8033
+ var alreadyCalled = false;
8034
+ remaining++;
8035
+ call$1($promiseResolve, C, promise).then(function (value) {
8036
+ if (alreadyCalled) return;
8037
+ alreadyCalled = true;
8038
+ values[index] = value;
8039
+ --remaining || resolve(values);
8040
+ }, reject);
8041
+ });
8042
+ --remaining || resolve(values);
8043
+ });
8044
+ if (result.error) reject(result.value);
8045
+ return capability.promise;
8046
+ }
8047
+ });
8048
+
8049
+ var $$3 = _export;
8050
+ var FORCED_PROMISE_CONSTRUCTOR$2 = promiseConstructorDetection.CONSTRUCTOR;
8051
+ var NativePromiseConstructor = promiseNativeConstructor;
8052
+ var getBuiltIn$1 = getBuiltIn$9;
8053
+ var isCallable = isCallable$q;
8054
+ var defineBuiltIn = defineBuiltIn$8;
8055
+
8056
+ var NativePromisePrototype = NativePromiseConstructor && NativePromiseConstructor.prototype;
8057
+
8058
+ // `Promise.prototype.catch` method
8059
+ // https://tc39.es/ecma262/#sec-promise.prototype.catch
8060
+ $$3({ target: 'Promise', proto: true, forced: FORCED_PROMISE_CONSTRUCTOR$2, real: true }, {
8061
+ 'catch': function (onRejected) {
8062
+ return this.then(undefined, onRejected);
8063
+ }
8064
+ });
8065
+
8066
+ // makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then`
8067
+ if (isCallable(NativePromiseConstructor)) {
8068
+ var method = getBuiltIn$1('Promise').prototype['catch'];
8069
+ if (NativePromisePrototype['catch'] !== method) {
8070
+ defineBuiltIn(NativePromisePrototype, 'catch', method, { unsafe: true });
8071
+ }
8072
+ }
8073
+
8074
+ var $$2 = _export;
8075
+ var call = functionCall;
8076
+ var aCallable = aCallable$9;
8077
+ var newPromiseCapabilityModule$1 = newPromiseCapability$2;
8078
+ var perform = perform$3;
8079
+ var iterate = iterate$2;
8080
+ var PROMISE_STATICS_INCORRECT_ITERATION = promiseStaticsIncorrectIteration;
8081
+
8082
+ // `Promise.race` method
8083
+ // https://tc39.es/ecma262/#sec-promise.race
8084
+ $$2({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }, {
8085
+ race: function race(iterable) {
8086
+ var C = this;
8087
+ var capability = newPromiseCapabilityModule$1.f(C);
8088
+ var reject = capability.reject;
8089
+ var result = perform(function () {
8090
+ var $promiseResolve = aCallable(C.resolve);
8091
+ iterate(iterable, function (promise) {
8092
+ call($promiseResolve, C, promise).then(capability.resolve, reject);
8093
+ });
8094
+ });
8095
+ if (result.error) reject(result.value);
8096
+ return capability.promise;
8097
+ }
8098
+ });
8099
+
8100
+ var $$1 = _export;
8101
+ var newPromiseCapabilityModule = newPromiseCapability$2;
8102
+ var FORCED_PROMISE_CONSTRUCTOR$1 = promiseConstructorDetection.CONSTRUCTOR;
8103
+
8104
+ // `Promise.reject` method
8105
+ // https://tc39.es/ecma262/#sec-promise.reject
8106
+ $$1({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
8107
+ reject: function reject(r) {
8108
+ var capability = newPromiseCapabilityModule.f(this);
8109
+ var capabilityReject = capability.reject;
8110
+ capabilityReject(r);
8111
+ return capability.promise;
8112
+ }
8113
+ });
8114
+
8115
+ var anObject = anObject$e;
8116
+ var isObject = isObject$d;
8117
+ var newPromiseCapability = newPromiseCapability$2;
8118
+
8119
+ var promiseResolve$1 = function (C, x) {
8120
+ anObject(C);
8121
+ if (isObject(x) && x.constructor === C) return x;
8122
+ var promiseCapability = newPromiseCapability.f(C);
8123
+ var resolve = promiseCapability.resolve;
8124
+ resolve(x);
8125
+ return promiseCapability.promise;
8126
+ };
8127
+
8128
+ var $ = _export;
8129
+ var getBuiltIn = getBuiltIn$9;
8130
+ var FORCED_PROMISE_CONSTRUCTOR = promiseConstructorDetection.CONSTRUCTOR;
8131
+ var promiseResolve = promiseResolve$1;
8132
+
8133
+ getBuiltIn('Promise');
8134
+
8135
+ // `Promise.resolve` method
8136
+ // https://tc39.es/ecma262/#sec-promise.resolve
8137
+ $({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
8138
+ resolve: function resolve(x) {
8139
+ return promiseResolve(this, x);
8140
+ }
8141
+ });
8142
+
8143
+ let dereference;
8144
+ function resolveRefs(schema, ...refSchemas) {
8145
+ return __awaiter(this, void 0, void 0, function* () {
8146
+ var _a;
8147
+ if (!dereference) {
8148
+ dereference = (_a = yield import('@apidevtools/json-schema-ref-parser')) === null || _a === void 0 ? void 0 : _a.dereference;
8149
+ if (!dereference) {
8150
+ throw new Error('@apidevtools/json-schema-ref-parser is required for use of resolveRefs().');
8151
+ }
8152
+ }
8153
+ const available = refSchemas.reduce((schemas, refSchema) => {
8154
+ const id = refSchema.$id || refSchema.id;
8155
+ if (id) {
8156
+ schemas[id] = refSchema;
8157
+ }
8158
+ return schemas;
8159
+ }, {});
8160
+ // Clone since dereference will in place modify the input schema.
8161
+ const source = _$8.cloneDeep(schema);
8162
+ const result = yield dereference(source, {
8163
+ continueOnError: false,
8164
+ resolve: {
8165
+ http: false,
8166
+ file: false,
8167
+ static: {
8168
+ order: 1,
8169
+ canRead: /^https?:/,
8170
+ read: function ({
8171
+ url
8172
+ }) {
8173
+ const resolved = available[url];
8174
+ if (!resolved) {
8175
+ throw new Error(`Failed to resolve schema for: ${url}`);
8176
+ }
8177
+ return resolved;
8178
+ }
8179
+ }
8180
+ }
8181
+ });
8182
+ return result;
8183
+ });
8184
+ }
8185
+ function tryResolveRefs(schema, ...refSchemas) {
8186
+ return __awaiter(this, void 0, void 0, function* () {
8187
+ try {
8188
+ const result = yield resolveRefs(schema, ...refSchemas);
8189
+ return [result];
8190
+ } catch (err) {
8191
+ return [schema, err];
8192
+ }
8193
+ });
8194
+ }
8195
+
6888
8196
  const GoABaseRenderers = [
6889
8197
  // controls
6890
8198
  {
@@ -7022,4 +8330,4 @@ const GoARenderers = [...GoABaseRenderers, {
7022
8330
  }];
7023
8331
  const GoACells = [...InputCells];
7024
8332
 
7025
- export { ADD_REGISTER_DATA_ACTION, ContextProviderC, ContextProviderClass, ContextProviderFactory, GoABaseRenderers, GoABaseReviewRenderers, GoACells, GoARenderers, GoAReviewRenderers, JsonFormContext, JsonFormRegisterProvider, JsonFormsRegisterContext, createDefaultAjv, registerReducer };
8333
+ export { ADD_DATALIST_ACTION, ADD_NO_ANONYMOUS_ACTION, ADD_REGISTER_DATA_ACTION, ADD_REGISTER_DATA_ERROR, ContextProviderC, ContextProviderClass, ContextProviderFactory, GoABaseRenderers, GoABaseReviewRenderers, GoACells, GoARenderers, GoAReviewRenderers, JsonFormContext, JsonFormRegisterProvider, JsonFormsRegisterContext, createDefaultAjv, registerReducer, resolveRefs, tryResolveRefs };