@trackunit/react-core-hooks 0.0.42 → 0.0.45

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.js CHANGED
@@ -1,6 +1,8 @@
1
1
  import { jsx } from 'react/jsx-runtime';
2
+ import { useFlags } from 'launchdarkly-react-client-sdk';
2
3
  import * as React from 'react';
3
4
  import { useContext, createContext } from 'react';
5
+ import { AssetRuntime, CustomFieldRuntime, RestRuntime } from '@trackunit/iris-app-runtime-core';
4
6
 
5
7
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
6
8
 
@@ -9,7 +11,7 @@ var check = function (it) {
9
11
  };
10
12
 
11
13
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
12
- var global$l =
14
+ var global$o =
13
15
  // eslint-disable-next-line es-x/no-global-this -- safe
14
16
  check(typeof globalThis == 'object' && globalThis) ||
15
17
  check(typeof window == 'object' && window) ||
@@ -19,9 +21,7 @@ var global$l =
19
21
  // eslint-disable-next-line no-new-func -- fallback
20
22
  (function () { return this; })() || Function('return this')();
21
23
 
22
- var objectGetOwnPropertyDescriptor = {};
23
-
24
- var fails$8 = function (exec) {
24
+ var fails$a = function (exec) {
25
25
  try {
26
26
  return !!exec();
27
27
  } catch (error) {
@@ -29,17 +29,9 @@ var fails$8 = function (exec) {
29
29
  }
30
30
  };
31
31
 
32
- var fails$7 = fails$8;
33
-
34
- // Detect IE8's incomplete defineProperty implementation
35
- var descriptors = !fails$7(function () {
36
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
37
- return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
38
- });
39
-
40
- var fails$6 = fails$8;
32
+ var fails$9 = fails$a;
41
33
 
42
- var functionBindNative = !fails$6(function () {
34
+ var functionBindNative = !fails$9(function () {
43
35
  // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
44
36
  var test = (function () { /* empty */ }).bind();
45
37
  // eslint-disable-next-line no-prototype-builtins -- safe
@@ -48,86 +40,53 @@ var functionBindNative = !fails$6(function () {
48
40
 
49
41
  var NATIVE_BIND$1 = functionBindNative;
50
42
 
51
- var call$5 = Function.prototype.call;
52
-
53
- var functionCall = NATIVE_BIND$1 ? call$5.bind(call$5) : function () {
54
- return call$5.apply(call$5, arguments);
55
- };
56
-
57
- var objectPropertyIsEnumerable = {};
58
-
59
- var $propertyIsEnumerable = {}.propertyIsEnumerable;
60
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
61
- var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
62
-
63
- // Nashorn ~ JDK8 bug
64
- var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
65
-
66
- // `Object.prototype.propertyIsEnumerable` method implementation
67
- // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
68
- objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
69
- var descriptor = getOwnPropertyDescriptor$1(this, V);
70
- return !!descriptor && descriptor.enumerable;
71
- } : $propertyIsEnumerable;
72
-
73
- var createPropertyDescriptor$2 = function (bitmap, value) {
74
- return {
75
- enumerable: !(bitmap & 1),
76
- configurable: !(bitmap & 2),
77
- writable: !(bitmap & 4),
78
- value: value
79
- };
80
- };
81
-
82
- var NATIVE_BIND = functionBindNative;
83
-
84
43
  var FunctionPrototype$1 = Function.prototype;
85
44
  var bind = FunctionPrototype$1.bind;
86
- var call$4 = FunctionPrototype$1.call;
87
- var uncurryThis$a = NATIVE_BIND && bind.bind(call$4, call$4);
45
+ var call$6 = FunctionPrototype$1.call;
46
+ var uncurryThis$b = NATIVE_BIND$1 && bind.bind(call$6, call$6);
88
47
 
89
- var functionUncurryThis = NATIVE_BIND ? function (fn) {
90
- return fn && uncurryThis$a(fn);
48
+ var functionUncurryThis = NATIVE_BIND$1 ? function (fn) {
49
+ return fn && uncurryThis$b(fn);
91
50
  } : function (fn) {
92
51
  return fn && function () {
93
- return call$4.apply(fn, arguments);
52
+ return call$6.apply(fn, arguments);
94
53
  };
95
54
  };
96
55
 
97
- var uncurryThis$9 = functionUncurryThis;
56
+ var uncurryThis$a = functionUncurryThis;
98
57
 
99
- var toString$1 = uncurryThis$9({}.toString);
100
- var stringSlice = uncurryThis$9(''.slice);
58
+ var toString$1 = uncurryThis$a({}.toString);
59
+ var stringSlice = uncurryThis$a(''.slice);
101
60
 
102
61
  var classofRaw = function (it) {
103
62
  return stringSlice(toString$1(it), 8, -1);
104
63
  };
105
64
 
106
- var global$k = global$l;
107
- var uncurryThis$8 = functionUncurryThis;
108
- var fails$5 = fails$8;
65
+ var global$n = global$o;
66
+ var uncurryThis$9 = functionUncurryThis;
67
+ var fails$8 = fails$a;
109
68
  var classof = classofRaw;
110
69
 
111
- var Object$3 = global$k.Object;
112
- var split = uncurryThis$8(''.split);
70
+ var Object$4 = global$n.Object;
71
+ var split = uncurryThis$9(''.split);
113
72
 
114
73
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
115
- var indexedObject = fails$5(function () {
74
+ var indexedObject = fails$8(function () {
116
75
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
117
76
  // eslint-disable-next-line no-prototype-builtins -- safe
118
- return !Object$3('z').propertyIsEnumerable(0);
77
+ return !Object$4('z').propertyIsEnumerable(0);
119
78
  }) ? function (it) {
120
- return classof(it) == 'String' ? split(it, '') : Object$3(it);
121
- } : Object$3;
79
+ return classof(it) == 'String' ? split(it, '') : Object$4(it);
80
+ } : Object$4;
122
81
 
123
- var global$j = global$l;
82
+ var global$m = global$o;
124
83
 
125
- var TypeError$6 = global$j.TypeError;
84
+ var TypeError$7 = global$m.TypeError;
126
85
 
127
86
  // `RequireObjectCoercible` abstract operation
128
87
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
129
88
  var requireObjectCoercible$2 = function (it) {
130
- if (it == undefined) throw TypeError$6("Can't call method on " + it);
89
+ if (it == undefined) throw TypeError$7("Can't call method on " + it);
131
90
  return it;
132
91
  };
133
92
 
@@ -135,42 +94,100 @@ var requireObjectCoercible$2 = function (it) {
135
94
  var IndexedObject$1 = indexedObject;
136
95
  var requireObjectCoercible$1 = requireObjectCoercible$2;
137
96
 
138
- var toIndexedObject$3 = function (it) {
97
+ var toIndexedObject$5 = function (it) {
139
98
  return IndexedObject$1(requireObjectCoercible$1(it));
140
99
  };
141
100
 
142
- // `IsCallable` abstract operation
143
- // https://tc39.es/ecma262/#sec-iscallable
144
- var isCallable$9 = function (argument) {
145
- return typeof argument == 'function';
146
- };
101
+ var shared$3 = {exports: {}};
147
102
 
148
- var isCallable$8 = isCallable$9;
103
+ var global$l = global$o;
149
104
 
150
- var isObject$5 = function (it) {
151
- return typeof it == 'object' ? it !== null : isCallable$8(it);
105
+ // eslint-disable-next-line es-x/no-object-defineproperty -- safe
106
+ var defineProperty$3 = Object.defineProperty;
107
+
108
+ var setGlobal$3 = function (key, value) {
109
+ try {
110
+ defineProperty$3(global$l, key, { value: value, configurable: true, writable: true });
111
+ } catch (error) {
112
+ global$l[key] = value;
113
+ } return value;
152
114
  };
153
115
 
154
- var global$i = global$l;
155
- var isCallable$7 = isCallable$9;
116
+ var global$k = global$o;
117
+ var setGlobal$2 = setGlobal$3;
156
118
 
157
- var aFunction = function (argument) {
158
- return isCallable$7(argument) ? argument : undefined;
119
+ var SHARED = '__core-js_shared__';
120
+ var store$3 = global$k[SHARED] || setGlobal$2(SHARED, {});
121
+
122
+ var sharedStore = store$3;
123
+
124
+ var store$2 = sharedStore;
125
+
126
+ (shared$3.exports = function (key, value) {
127
+ return store$2[key] || (store$2[key] = value !== undefined ? value : {});
128
+ })('versions', []).push({
129
+ version: '3.22.0',
130
+ mode: 'global',
131
+ copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
132
+ license: 'https://github.com/zloirock/core-js/blob/v3.22.0/LICENSE',
133
+ source: 'https://github.com/zloirock/core-js'
134
+ });
135
+
136
+ var global$j = global$o;
137
+ var requireObjectCoercible = requireObjectCoercible$2;
138
+
139
+ var Object$3 = global$j.Object;
140
+
141
+ // `ToObject` abstract operation
142
+ // https://tc39.es/ecma262/#sec-toobject
143
+ var toObject$3 = function (argument) {
144
+ return Object$3(requireObjectCoercible(argument));
159
145
  };
160
146
 
161
- var getBuiltIn$3 = function (namespace, method) {
162
- return arguments.length < 2 ? aFunction(global$i[namespace]) : global$i[namespace] && global$i[namespace][method];
147
+ var uncurryThis$8 = functionUncurryThis;
148
+ var toObject$2 = toObject$3;
149
+
150
+ var hasOwnProperty = uncurryThis$8({}.hasOwnProperty);
151
+
152
+ // `HasOwnProperty` abstract operation
153
+ // https://tc39.es/ecma262/#sec-hasownproperty
154
+ // eslint-disable-next-line es-x/no-object-hasown -- safe
155
+ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
156
+ return hasOwnProperty(toObject$2(it), key);
163
157
  };
164
158
 
165
159
  var uncurryThis$7 = functionUncurryThis;
166
160
 
167
- var objectIsPrototypeOf = uncurryThis$7({}.isPrototypeOf);
161
+ var id = 0;
162
+ var postfix = Math.random();
163
+ var toString = uncurryThis$7(1.0.toString);
168
164
 
169
- var getBuiltIn$2 = getBuiltIn$3;
165
+ var uid$2 = function (key) {
166
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
167
+ };
170
168
 
171
- var engineUserAgent = getBuiltIn$2('navigator', 'userAgent') || '';
169
+ // `IsCallable` abstract operation
170
+ // https://tc39.es/ecma262/#sec-iscallable
171
+ var isCallable$d = function (argument) {
172
+ return typeof argument == 'function';
173
+ };
174
+
175
+ var global$i = global$o;
176
+ var isCallable$c = isCallable$d;
177
+
178
+ var aFunction = function (argument) {
179
+ return isCallable$c(argument) ? argument : undefined;
180
+ };
172
181
 
173
- var global$h = global$l;
182
+ var getBuiltIn$4 = function (namespace, method) {
183
+ return arguments.length < 2 ? aFunction(global$i[namespace]) : global$i[namespace] && global$i[namespace][method];
184
+ };
185
+
186
+ var getBuiltIn$3 = getBuiltIn$4;
187
+
188
+ var engineUserAgent = getBuiltIn$3('navigator', 'userAgent') || '';
189
+
190
+ var global$h = global$o;
174
191
  var userAgent = engineUserAgent;
175
192
 
176
193
  var process = global$h.process;
@@ -201,10 +218,10 @@ var engineV8Version = version;
201
218
  /* eslint-disable es-x/no-symbol -- required for testing */
202
219
 
203
220
  var V8_VERSION = engineV8Version;
204
- var fails$4 = fails$8;
221
+ var fails$7 = fails$a;
205
222
 
206
223
  // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
207
- var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$4(function () {
224
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$7(function () {
208
225
  var symbol = Symbol();
209
226
  // Chrome 38 Symbol has incorrect toString conversion
210
227
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -221,185 +238,195 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
221
238
  && !Symbol.sham
222
239
  && typeof Symbol.iterator == 'symbol';
223
240
 
224
- var global$g = global$l;
225
- var getBuiltIn$1 = getBuiltIn$3;
226
- var isCallable$6 = isCallable$9;
227
- var isPrototypeOf = objectIsPrototypeOf;
241
+ var global$g = global$o;
242
+ var shared$2 = shared$3.exports;
243
+ var hasOwn$8 = hasOwnProperty_1;
244
+ var uid$1 = uid$2;
245
+ var NATIVE_SYMBOL = nativeSymbol;
228
246
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
229
247
 
230
- var Object$2 = global$g.Object;
248
+ var WellKnownSymbolsStore = shared$2('wks');
249
+ var Symbol$1 = global$g.Symbol;
250
+ var symbolFor = Symbol$1 && Symbol$1['for'];
251
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID$1 ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
231
252
 
232
- var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
233
- return typeof it == 'symbol';
234
- } : function (it) {
235
- var $Symbol = getBuiltIn$1('Symbol');
236
- return isCallable$6($Symbol) && isPrototypeOf($Symbol.prototype, Object$2(it));
253
+ var wellKnownSymbol$6 = function (name) {
254
+ if (!hasOwn$8(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
255
+ var description = 'Symbol.' + name;
256
+ if (NATIVE_SYMBOL && hasOwn$8(Symbol$1, name)) {
257
+ WellKnownSymbolsStore[name] = Symbol$1[name];
258
+ } else if (USE_SYMBOL_AS_UID$1 && symbolFor) {
259
+ WellKnownSymbolsStore[name] = symbolFor(description);
260
+ } else {
261
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
262
+ }
263
+ } return WellKnownSymbolsStore[name];
237
264
  };
238
265
 
239
- var global$f = global$l;
240
-
241
- var String$2 = global$f.String;
266
+ var isCallable$b = isCallable$d;
242
267
 
243
- var tryToString$1 = function (argument) {
244
- try {
245
- return String$2(argument);
246
- } catch (error) {
247
- return 'Object';
248
- }
268
+ var isObject$5 = function (it) {
269
+ return typeof it == 'object' ? it !== null : isCallable$b(it);
249
270
  };
250
271
 
251
- var global$e = global$l;
252
- var isCallable$5 = isCallable$9;
253
- var tryToString = tryToString$1;
272
+ var global$f = global$o;
273
+ var isObject$4 = isObject$5;
254
274
 
255
- var TypeError$5 = global$e.TypeError;
275
+ var String$3 = global$f.String;
276
+ var TypeError$6 = global$f.TypeError;
256
277
 
257
- // `Assert: IsCallable(argument) is true`
258
- var aCallable$1 = function (argument) {
259
- if (isCallable$5(argument)) return argument;
260
- throw TypeError$5(tryToString(argument) + ' is not a function');
278
+ // `Assert: Type(argument) is Object`
279
+ var anObject$5 = function (argument) {
280
+ if (isObject$4(argument)) return argument;
281
+ throw TypeError$6(String$3(argument) + ' is not an object');
261
282
  };
262
283
 
263
- var aCallable = aCallable$1;
284
+ var objectDefineProperties = {};
264
285
 
265
- // `GetMethod` abstract operation
266
- // https://tc39.es/ecma262/#sec-getmethod
267
- var getMethod$1 = function (V, P) {
268
- var func = V[P];
269
- return func == null ? undefined : aCallable(func);
270
- };
286
+ var fails$6 = fails$a;
271
287
 
272
- var global$d = global$l;
273
- var call$3 = functionCall;
274
- var isCallable$4 = isCallable$9;
275
- var isObject$4 = isObject$5;
288
+ // Detect IE8's incomplete defineProperty implementation
289
+ var descriptors = !fails$6(function () {
290
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
291
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
292
+ });
276
293
 
277
- var TypeError$4 = global$d.TypeError;
294
+ var DESCRIPTORS$8 = descriptors;
295
+ var fails$5 = fails$a;
278
296
 
279
- // `OrdinaryToPrimitive` abstract operation
280
- // https://tc39.es/ecma262/#sec-ordinarytoprimitive
281
- var ordinaryToPrimitive$1 = function (input, pref) {
282
- var fn, val;
283
- if (pref === 'string' && isCallable$4(fn = input.toString) && !isObject$4(val = call$3(fn, input))) return val;
284
- if (isCallable$4(fn = input.valueOf) && !isObject$4(val = call$3(fn, input))) return val;
285
- if (pref !== 'string' && isCallable$4(fn = input.toString) && !isObject$4(val = call$3(fn, input))) return val;
286
- throw TypeError$4("Can't convert object to primitive value");
287
- };
297
+ // V8 ~ Chrome 36-
298
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
299
+ var v8PrototypeDefineBug = DESCRIPTORS$8 && fails$5(function () {
300
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
301
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
302
+ value: 42,
303
+ writable: false
304
+ }).prototype != 42;
305
+ });
288
306
 
289
- var shared$3 = {exports: {}};
307
+ var objectDefineProperty = {};
290
308
 
291
- var global$c = global$l;
309
+ var global$e = global$o;
310
+ var isObject$3 = isObject$5;
292
311
 
293
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
294
- var defineProperty$1 = Object.defineProperty;
312
+ var document$1 = global$e.document;
313
+ // typeof document.createElement is 'object' in old IE
314
+ var EXISTS$1 = isObject$3(document$1) && isObject$3(document$1.createElement);
295
315
 
296
- var setGlobal$3 = function (key, value) {
297
- try {
298
- defineProperty$1(global$c, key, { value: value, configurable: true, writable: true });
299
- } catch (error) {
300
- global$c[key] = value;
301
- } return value;
316
+ var documentCreateElement$2 = function (it) {
317
+ return EXISTS$1 ? document$1.createElement(it) : {};
302
318
  };
303
319
 
304
- var global$b = global$l;
305
- var setGlobal$2 = setGlobal$3;
320
+ var DESCRIPTORS$7 = descriptors;
321
+ var fails$4 = fails$a;
322
+ var createElement = documentCreateElement$2;
306
323
 
307
- var SHARED = '__core-js_shared__';
308
- var store$3 = global$b[SHARED] || setGlobal$2(SHARED, {});
324
+ // Thanks to IE8 for its funny defineProperty
325
+ var ie8DomDefine = !DESCRIPTORS$7 && !fails$4(function () {
326
+ // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
327
+ return Object.defineProperty(createElement('div'), 'a', {
328
+ get: function () { return 7; }
329
+ }).a != 7;
330
+ });
309
331
 
310
- var sharedStore = store$3;
332
+ var NATIVE_BIND = functionBindNative;
311
333
 
312
- var store$2 = sharedStore;
334
+ var call$5 = Function.prototype.call;
313
335
 
314
- (shared$3.exports = function (key, value) {
315
- return store$2[key] || (store$2[key] = value !== undefined ? value : {});
316
- })('versions', []).push({
317
- version: '3.22.0',
318
- mode: 'global',
319
- copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
320
- license: 'https://github.com/zloirock/core-js/blob/v3.22.0/LICENSE',
321
- source: 'https://github.com/zloirock/core-js'
322
- });
336
+ var functionCall = NATIVE_BIND ? call$5.bind(call$5) : function () {
337
+ return call$5.apply(call$5, arguments);
338
+ };
323
339
 
324
- var global$a = global$l;
325
- var requireObjectCoercible = requireObjectCoercible$2;
340
+ var uncurryThis$6 = functionUncurryThis;
326
341
 
327
- var Object$1 = global$a.Object;
342
+ var objectIsPrototypeOf = uncurryThis$6({}.isPrototypeOf);
328
343
 
329
- // `ToObject` abstract operation
330
- // https://tc39.es/ecma262/#sec-toobject
331
- var toObject$2 = function (argument) {
332
- return Object$1(requireObjectCoercible(argument));
344
+ var global$d = global$o;
345
+ var getBuiltIn$2 = getBuiltIn$4;
346
+ var isCallable$a = isCallable$d;
347
+ var isPrototypeOf = objectIsPrototypeOf;
348
+ var USE_SYMBOL_AS_UID = useSymbolAsUid;
349
+
350
+ var Object$2 = global$d.Object;
351
+
352
+ var isSymbol$2 = USE_SYMBOL_AS_UID ? function (it) {
353
+ return typeof it == 'symbol';
354
+ } : function (it) {
355
+ var $Symbol = getBuiltIn$2('Symbol');
356
+ return isCallable$a($Symbol) && isPrototypeOf($Symbol.prototype, Object$2(it));
333
357
  };
334
358
 
335
- var uncurryThis$6 = functionUncurryThis;
336
- var toObject$1 = toObject$2;
359
+ var global$c = global$o;
337
360
 
338
- var hasOwnProperty = uncurryThis$6({}.hasOwnProperty);
361
+ var String$2 = global$c.String;
339
362
 
340
- // `HasOwnProperty` abstract operation
341
- // https://tc39.es/ecma262/#sec-hasownproperty
342
- // eslint-disable-next-line es-x/no-object-hasown -- safe
343
- var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
344
- return hasOwnProperty(toObject$1(it), key);
363
+ var tryToString$1 = function (argument) {
364
+ try {
365
+ return String$2(argument);
366
+ } catch (error) {
367
+ return 'Object';
368
+ }
345
369
  };
346
370
 
347
- var uncurryThis$5 = functionUncurryThis;
371
+ var global$b = global$o;
372
+ var isCallable$9 = isCallable$d;
373
+ var tryToString = tryToString$1;
348
374
 
349
- var id = 0;
350
- var postfix = Math.random();
351
- var toString = uncurryThis$5(1.0.toString);
375
+ var TypeError$5 = global$b.TypeError;
352
376
 
353
- var uid$2 = function (key) {
354
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
377
+ // `Assert: IsCallable(argument) is true`
378
+ var aCallable$1 = function (argument) {
379
+ if (isCallable$9(argument)) return argument;
380
+ throw TypeError$5(tryToString(argument) + ' is not a function');
355
381
  };
356
382
 
357
- var global$9 = global$l;
358
- var shared$2 = shared$3.exports;
359
- var hasOwn$6 = hasOwnProperty_1;
360
- var uid$1 = uid$2;
361
- var NATIVE_SYMBOL = nativeSymbol;
362
- var USE_SYMBOL_AS_UID = useSymbolAsUid;
383
+ var aCallable = aCallable$1;
363
384
 
364
- var WellKnownSymbolsStore = shared$2('wks');
365
- var Symbol$1 = global$9.Symbol;
366
- var symbolFor = Symbol$1 && Symbol$1['for'];
367
- var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
385
+ // `GetMethod` abstract operation
386
+ // https://tc39.es/ecma262/#sec-getmethod
387
+ var getMethod$1 = function (V, P) {
388
+ var func = V[P];
389
+ return func == null ? undefined : aCallable(func);
390
+ };
368
391
 
369
- var wellKnownSymbol$1 = function (name) {
370
- if (!hasOwn$6(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
371
- var description = 'Symbol.' + name;
372
- if (NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)) {
373
- WellKnownSymbolsStore[name] = Symbol$1[name];
374
- } else if (USE_SYMBOL_AS_UID && symbolFor) {
375
- WellKnownSymbolsStore[name] = symbolFor(description);
376
- } else {
377
- WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
378
- }
379
- } return WellKnownSymbolsStore[name];
392
+ var global$a = global$o;
393
+ var call$4 = functionCall;
394
+ var isCallable$8 = isCallable$d;
395
+ var isObject$2 = isObject$5;
396
+
397
+ var TypeError$4 = global$a.TypeError;
398
+
399
+ // `OrdinaryToPrimitive` abstract operation
400
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
401
+ var ordinaryToPrimitive$1 = function (input, pref) {
402
+ var fn, val;
403
+ if (pref === 'string' && isCallable$8(fn = input.toString) && !isObject$2(val = call$4(fn, input))) return val;
404
+ if (isCallable$8(fn = input.valueOf) && !isObject$2(val = call$4(fn, input))) return val;
405
+ if (pref !== 'string' && isCallable$8(fn = input.toString) && !isObject$2(val = call$4(fn, input))) return val;
406
+ throw TypeError$4("Can't convert object to primitive value");
380
407
  };
381
408
 
382
- var global$8 = global$l;
383
- var call$2 = functionCall;
384
- var isObject$3 = isObject$5;
409
+ var global$9 = global$o;
410
+ var call$3 = functionCall;
411
+ var isObject$1 = isObject$5;
385
412
  var isSymbol$1 = isSymbol$2;
386
413
  var getMethod = getMethod$1;
387
414
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
388
- var wellKnownSymbol = wellKnownSymbol$1;
415
+ var wellKnownSymbol$5 = wellKnownSymbol$6;
389
416
 
390
- var TypeError$3 = global$8.TypeError;
391
- var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
417
+ var TypeError$3 = global$9.TypeError;
418
+ var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
392
419
 
393
420
  // `ToPrimitive` abstract operation
394
421
  // https://tc39.es/ecma262/#sec-toprimitive
395
422
  var toPrimitive$1 = function (input, pref) {
396
- if (!isObject$3(input) || isSymbol$1(input)) return input;
423
+ if (!isObject$1(input) || isSymbol$1(input)) return input;
397
424
  var exoticToPrim = getMethod(input, TO_PRIMITIVE);
398
425
  var result;
399
426
  if (exoticToPrim) {
400
427
  if (pref === undefined) pref = 'default';
401
- result = call$2(exoticToPrim, input, pref);
402
- if (!isObject$3(result) || isSymbol$1(result)) return result;
428
+ result = call$3(exoticToPrim, input, pref);
429
+ if (!isObject$1(result) || isSymbol$1(result)) return result;
403
430
  throw TypeError$3("Can't convert object to primitive value");
404
431
  }
405
432
  if (pref === undefined) pref = 'number';
@@ -416,103 +443,30 @@ var toPropertyKey$2 = function (argument) {
416
443
  return isSymbol(key) ? key : key + '';
417
444
  };
418
445
 
419
- var global$7 = global$l;
420
- var isObject$2 = isObject$5;
421
-
422
- var document = global$7.document;
423
- // typeof document.createElement is 'object' in old IE
424
- var EXISTS$1 = isObject$2(document) && isObject$2(document.createElement);
425
-
426
- var documentCreateElement = function (it) {
427
- return EXISTS$1 ? document.createElement(it) : {};
428
- };
429
-
446
+ var global$8 = global$o;
430
447
  var DESCRIPTORS$6 = descriptors;
431
- var fails$3 = fails$8;
432
- var createElement = documentCreateElement;
433
-
434
- // Thanks to IE8 for its funny defineProperty
435
- var ie8DomDefine = !DESCRIPTORS$6 && !fails$3(function () {
436
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
437
- return Object.defineProperty(createElement('div'), 'a', {
438
- get: function () { return 7; }
439
- }).a != 7;
440
- });
441
-
442
- var DESCRIPTORS$5 = descriptors;
443
- var call$1 = functionCall;
444
- var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
445
- var createPropertyDescriptor$1 = createPropertyDescriptor$2;
446
- var toIndexedObject$2 = toIndexedObject$3;
447
- var toPropertyKey$1 = toPropertyKey$2;
448
- var hasOwn$5 = hasOwnProperty_1;
449
448
  var IE8_DOM_DEFINE$1 = ie8DomDefine;
449
+ var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
450
+ var anObject$4 = anObject$5;
451
+ var toPropertyKey$1 = toPropertyKey$2;
450
452
 
451
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
452
- var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
453
-
454
- // `Object.getOwnPropertyDescriptor` method
455
- // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
456
- objectGetOwnPropertyDescriptor.f = DESCRIPTORS$5 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
457
- O = toIndexedObject$2(O);
458
- P = toPropertyKey$1(P);
459
- if (IE8_DOM_DEFINE$1) try {
460
- return $getOwnPropertyDescriptor$1(O, P);
461
- } catch (error) { /* empty */ }
462
- if (hasOwn$5(O, P)) return createPropertyDescriptor$1(!call$1(propertyIsEnumerableModule$1.f, O, P), O[P]);
463
- };
464
-
465
- var objectDefineProperty = {};
466
-
467
- var DESCRIPTORS$4 = descriptors;
468
- var fails$2 = fails$8;
469
-
470
- // V8 ~ Chrome 36-
471
- // https://bugs.chromium.org/p/v8/issues/detail?id=3334
472
- var v8PrototypeDefineBug = DESCRIPTORS$4 && fails$2(function () {
473
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
474
- return Object.defineProperty(function () { /* empty */ }, 'prototype', {
475
- value: 42,
476
- writable: false
477
- }).prototype != 42;
478
- });
479
-
480
- var global$6 = global$l;
481
- var isObject$1 = isObject$5;
482
-
483
- var String$1 = global$6.String;
484
- var TypeError$2 = global$6.TypeError;
485
-
486
- // `Assert: Type(argument) is Object`
487
- var anObject$2 = function (argument) {
488
- if (isObject$1(argument)) return argument;
489
- throw TypeError$2(String$1(argument) + ' is not an object');
490
- };
491
-
492
- var global$5 = global$l;
493
- var DESCRIPTORS$3 = descriptors;
494
- var IE8_DOM_DEFINE = ie8DomDefine;
495
- var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
496
- var anObject$1 = anObject$2;
497
- var toPropertyKey = toPropertyKey$2;
498
-
499
- var TypeError$1 = global$5.TypeError;
453
+ var TypeError$2 = global$8.TypeError;
500
454
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
501
455
  var $defineProperty = Object.defineProperty;
502
456
  // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
503
- var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
457
+ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
504
458
  var ENUMERABLE = 'enumerable';
505
459
  var CONFIGURABLE$1 = 'configurable';
506
460
  var WRITABLE = 'writable';
507
461
 
508
462
  // `Object.defineProperty` method
509
463
  // https://tc39.es/ecma262/#sec-object.defineproperty
510
- objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
511
- anObject$1(O);
512
- P = toPropertyKey(P);
513
- anObject$1(Attributes);
464
+ objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
465
+ anObject$4(O);
466
+ P = toPropertyKey$1(P);
467
+ anObject$4(Attributes);
514
468
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
515
- var current = $getOwnPropertyDescriptor(O, P);
469
+ var current = $getOwnPropertyDescriptor$1(O, P);
516
470
  if (current && current[WRITABLE]) {
517
471
  O[P] = Attributes.value;
518
472
  Attributes = {
@@ -523,38 +477,286 @@ objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defi
523
477
  }
524
478
  } return $defineProperty(O, P, Attributes);
525
479
  } : $defineProperty : function defineProperty(O, P, Attributes) {
526
- anObject$1(O);
527
- P = toPropertyKey(P);
528
- anObject$1(Attributes);
529
- if (IE8_DOM_DEFINE) try {
480
+ anObject$4(O);
481
+ P = toPropertyKey$1(P);
482
+ anObject$4(Attributes);
483
+ if (IE8_DOM_DEFINE$1) try {
530
484
  return $defineProperty(O, P, Attributes);
531
485
  } catch (error) { /* empty */ }
532
- if ('get' in Attributes || 'set' in Attributes) throw TypeError$1('Accessors not supported');
486
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError$2('Accessors not supported');
533
487
  if ('value' in Attributes) O[P] = Attributes.value;
534
488
  return O;
535
489
  };
536
490
 
537
- var DESCRIPTORS$2 = descriptors;
538
- var definePropertyModule$1 = objectDefineProperty;
539
- var createPropertyDescriptor = createPropertyDescriptor$2;
491
+ var ceil = Math.ceil;
492
+ var floor = Math.floor;
540
493
 
541
- var createNonEnumerableProperty$3 = DESCRIPTORS$2 ? function (object, key, value) {
542
- return definePropertyModule$1.f(object, key, createPropertyDescriptor(1, value));
543
- } : function (object, key, value) {
544
- object[key] = value;
545
- return object;
494
+ // `ToIntegerOrInfinity` abstract operation
495
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
496
+ var toIntegerOrInfinity$2 = function (argument) {
497
+ var number = +argument;
498
+ // eslint-disable-next-line no-self-compare -- safe
499
+ return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
500
+ };
501
+
502
+ var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
503
+
504
+ var max = Math.max;
505
+ var min$1 = Math.min;
506
+
507
+ // Helper for a popular repeating case of the spec:
508
+ // Let integer be ? ToInteger(index).
509
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
510
+ var toAbsoluteIndex$1 = function (index, length) {
511
+ var integer = toIntegerOrInfinity$1(index);
512
+ return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
513
+ };
514
+
515
+ var toIntegerOrInfinity = toIntegerOrInfinity$2;
516
+
517
+ var min = Math.min;
518
+
519
+ // `ToLength` abstract operation
520
+ // https://tc39.es/ecma262/#sec-tolength
521
+ var toLength$1 = function (argument) {
522
+ return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
523
+ };
524
+
525
+ var toLength = toLength$1;
526
+
527
+ // `LengthOfArrayLike` abstract operation
528
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
529
+ var lengthOfArrayLike$1 = function (obj) {
530
+ return toLength(obj.length);
531
+ };
532
+
533
+ var toIndexedObject$4 = toIndexedObject$5;
534
+ var toAbsoluteIndex = toAbsoluteIndex$1;
535
+ var lengthOfArrayLike = lengthOfArrayLike$1;
536
+
537
+ // `Array.prototype.{ indexOf, includes }` methods implementation
538
+ var createMethod = function (IS_INCLUDES) {
539
+ return function ($this, el, fromIndex) {
540
+ var O = toIndexedObject$4($this);
541
+ var length = lengthOfArrayLike(O);
542
+ var index = toAbsoluteIndex(fromIndex, length);
543
+ var value;
544
+ // Array#includes uses SameValueZero equality algorithm
545
+ // eslint-disable-next-line no-self-compare -- NaN check
546
+ if (IS_INCLUDES && el != el) while (length > index) {
547
+ value = O[index++];
548
+ // eslint-disable-next-line no-self-compare -- NaN check
549
+ if (value != value) return true;
550
+ // Array#indexOf ignores holes, Array#includes - not
551
+ } else for (;length > index; index++) {
552
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
553
+ } return !IS_INCLUDES && -1;
554
+ };
555
+ };
556
+
557
+ var arrayIncludes = {
558
+ // `Array.prototype.includes` method
559
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
560
+ includes: createMethod(true),
561
+ // `Array.prototype.indexOf` method
562
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
563
+ indexOf: createMethod(false)
564
+ };
565
+
566
+ var hiddenKeys$4 = {};
567
+
568
+ var uncurryThis$5 = functionUncurryThis;
569
+ var hasOwn$7 = hasOwnProperty_1;
570
+ var toIndexedObject$3 = toIndexedObject$5;
571
+ var indexOf = arrayIncludes.indexOf;
572
+ var hiddenKeys$3 = hiddenKeys$4;
573
+
574
+ var push = uncurryThis$5([].push);
575
+
576
+ var objectKeysInternal = function (object, names) {
577
+ var O = toIndexedObject$3(object);
578
+ var i = 0;
579
+ var result = [];
580
+ var key;
581
+ for (key in O) !hasOwn$7(hiddenKeys$3, key) && hasOwn$7(O, key) && push(result, key);
582
+ // Don't enum bug & hidden keys
583
+ while (names.length > i) if (hasOwn$7(O, key = names[i++])) {
584
+ ~indexOf(result, key) || push(result, key);
585
+ }
586
+ return result;
587
+ };
588
+
589
+ // IE8- don't enum bug keys
590
+ var enumBugKeys$3 = [
591
+ 'constructor',
592
+ 'hasOwnProperty',
593
+ 'isPrototypeOf',
594
+ 'propertyIsEnumerable',
595
+ 'toLocaleString',
596
+ 'toString',
597
+ 'valueOf'
598
+ ];
599
+
600
+ var internalObjectKeys$1 = objectKeysInternal;
601
+ var enumBugKeys$2 = enumBugKeys$3;
602
+
603
+ // `Object.keys` method
604
+ // https://tc39.es/ecma262/#sec-object.keys
605
+ // eslint-disable-next-line es-x/no-object-keys -- safe
606
+ var objectKeys$2 = Object.keys || function keys(O) {
607
+ return internalObjectKeys$1(O, enumBugKeys$2);
608
+ };
609
+
610
+ var DESCRIPTORS$5 = descriptors;
611
+ var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
612
+ var definePropertyModule$3 = objectDefineProperty;
613
+ var anObject$3 = anObject$5;
614
+ var toIndexedObject$2 = toIndexedObject$5;
615
+ var objectKeys$1 = objectKeys$2;
616
+
617
+ // `Object.defineProperties` method
618
+ // https://tc39.es/ecma262/#sec-object.defineproperties
619
+ // eslint-disable-next-line es-x/no-object-defineproperties -- safe
620
+ objectDefineProperties.f = DESCRIPTORS$5 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
621
+ anObject$3(O);
622
+ var props = toIndexedObject$2(Properties);
623
+ var keys = objectKeys$1(Properties);
624
+ var length = keys.length;
625
+ var index = 0;
626
+ var key;
627
+ while (length > index) definePropertyModule$3.f(O, key = keys[index++], props[key]);
628
+ return O;
546
629
  };
547
630
 
548
- var redefine$1 = {exports: {}};
631
+ var getBuiltIn$1 = getBuiltIn$4;
632
+
633
+ var html$1 = getBuiltIn$1('document', 'documentElement');
634
+
635
+ var shared$1 = shared$3.exports;
636
+ var uid = uid$2;
637
+
638
+ var keys = shared$1('keys');
639
+
640
+ var sharedKey$3 = function (key) {
641
+ return keys[key] || (keys[key] = uid(key));
642
+ };
643
+
644
+ /* global ActiveXObject -- old IE, WSH */
645
+
646
+ var anObject$2 = anObject$5;
647
+ var definePropertiesModule = objectDefineProperties;
648
+ var enumBugKeys$1 = enumBugKeys$3;
649
+ var hiddenKeys$2 = hiddenKeys$4;
650
+ var html = html$1;
651
+ var documentCreateElement$1 = documentCreateElement$2;
652
+ var sharedKey$2 = sharedKey$3;
653
+
654
+ var GT = '>';
655
+ var LT = '<';
656
+ var PROTOTYPE = 'prototype';
657
+ var SCRIPT = 'script';
658
+ var IE_PROTO$1 = sharedKey$2('IE_PROTO');
659
+
660
+ var EmptyConstructor = function () { /* empty */ };
661
+
662
+ var scriptTag = function (content) {
663
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
664
+ };
665
+
666
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
667
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
668
+ activeXDocument.write(scriptTag(''));
669
+ activeXDocument.close();
670
+ var temp = activeXDocument.parentWindow.Object;
671
+ activeXDocument = null; // avoid memory leak
672
+ return temp;
673
+ };
674
+
675
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
676
+ var NullProtoObjectViaIFrame = function () {
677
+ // Thrash, waste and sodomy: IE GC bug
678
+ var iframe = documentCreateElement$1('iframe');
679
+ var JS = 'java' + SCRIPT + ':';
680
+ var iframeDocument;
681
+ iframe.style.display = 'none';
682
+ html.appendChild(iframe);
683
+ // https://github.com/zloirock/core-js/issues/475
684
+ iframe.src = String(JS);
685
+ iframeDocument = iframe.contentWindow.document;
686
+ iframeDocument.open();
687
+ iframeDocument.write(scriptTag('document.F=Object'));
688
+ iframeDocument.close();
689
+ return iframeDocument.F;
690
+ };
691
+
692
+ // Check for document.domain and active x support
693
+ // No need to use active x approach when document.domain is not set
694
+ // see https://github.com/es-shims/es5-shim/issues/150
695
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
696
+ // avoid IE GC bug
697
+ var activeXDocument;
698
+ var NullProtoObject = function () {
699
+ try {
700
+ activeXDocument = new ActiveXObject('htmlfile');
701
+ } catch (error) { /* ignore */ }
702
+ NullProtoObject = typeof document != 'undefined'
703
+ ? document.domain && activeXDocument
704
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
705
+ : NullProtoObjectViaIFrame()
706
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
707
+ var length = enumBugKeys$1.length;
708
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys$1[length]];
709
+ return NullProtoObject();
710
+ };
711
+
712
+ hiddenKeys$2[IE_PROTO$1] = true;
713
+
714
+ // `Object.create` method
715
+ // https://tc39.es/ecma262/#sec-object.create
716
+ // eslint-disable-next-line es-x/no-object-create -- safe
717
+ var objectCreate = Object.create || function create(O, Properties) {
718
+ var result;
719
+ if (O !== null) {
720
+ EmptyConstructor[PROTOTYPE] = anObject$2(O);
721
+ result = new EmptyConstructor();
722
+ EmptyConstructor[PROTOTYPE] = null;
723
+ // add "__proto__" for Object.getPrototypeOf polyfill
724
+ result[IE_PROTO$1] = O;
725
+ } else result = NullProtoObject();
726
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
727
+ };
728
+
729
+ var wellKnownSymbol$4 = wellKnownSymbol$6;
730
+ var create$1 = objectCreate;
731
+ var definePropertyModule$2 = objectDefineProperty;
732
+
733
+ var UNSCOPABLES = wellKnownSymbol$4('unscopables');
734
+ var ArrayPrototype = Array.prototype;
735
+
736
+ // Array.prototype[@@unscopables]
737
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
738
+ if (ArrayPrototype[UNSCOPABLES] == undefined) {
739
+ definePropertyModule$2.f(ArrayPrototype, UNSCOPABLES, {
740
+ configurable: true,
741
+ value: create$1(null)
742
+ });
743
+ }
744
+
745
+ // add a key to Array.prototype[@@unscopables]
746
+ var addToUnscopables$1 = function (key) {
747
+ ArrayPrototype[UNSCOPABLES][key] = true;
748
+ };
749
+
750
+ var iterators = {};
549
751
 
550
752
  var uncurryThis$4 = functionUncurryThis;
551
- var isCallable$3 = isCallable$9;
753
+ var isCallable$7 = isCallable$d;
552
754
  var store$1 = sharedStore;
553
755
 
554
756
  var functionToString = uncurryThis$4(Function.toString);
555
757
 
556
758
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
557
- if (!isCallable$3(store$1.inspectSource)) {
759
+ if (!isCallable$7(store$1.inspectSource)) {
558
760
  store$1.inspectSource = function (it) {
559
761
  return functionToString(it);
560
762
  };
@@ -562,38 +764,47 @@ if (!isCallable$3(store$1.inspectSource)) {
562
764
 
563
765
  var inspectSource$2 = store$1.inspectSource;
564
766
 
565
- var global$4 = global$l;
566
- var isCallable$2 = isCallable$9;
767
+ var global$7 = global$o;
768
+ var isCallable$6 = isCallable$d;
567
769
  var inspectSource$1 = inspectSource$2;
568
770
 
569
- var WeakMap$1 = global$4.WeakMap;
771
+ var WeakMap$1 = global$7.WeakMap;
570
772
 
571
- var nativeWeakMap = isCallable$2(WeakMap$1) && /native code/.test(inspectSource$1(WeakMap$1));
773
+ var nativeWeakMap = isCallable$6(WeakMap$1) && /native code/.test(inspectSource$1(WeakMap$1));
572
774
 
573
- var shared$1 = shared$3.exports;
574
- var uid = uid$2;
775
+ var createPropertyDescriptor$3 = function (bitmap, value) {
776
+ return {
777
+ enumerable: !(bitmap & 1),
778
+ configurable: !(bitmap & 2),
779
+ writable: !(bitmap & 4),
780
+ value: value
781
+ };
782
+ };
575
783
 
576
- var keys = shared$1('keys');
784
+ var DESCRIPTORS$4 = descriptors;
785
+ var definePropertyModule$1 = objectDefineProperty;
786
+ var createPropertyDescriptor$2 = createPropertyDescriptor$3;
577
787
 
578
- var sharedKey$1 = function (key) {
579
- return keys[key] || (keys[key] = uid(key));
788
+ var createNonEnumerableProperty$5 = DESCRIPTORS$4 ? function (object, key, value) {
789
+ return definePropertyModule$1.f(object, key, createPropertyDescriptor$2(1, value));
790
+ } : function (object, key, value) {
791
+ object[key] = value;
792
+ return object;
580
793
  };
581
794
 
582
- var hiddenKeys$3 = {};
583
-
584
795
  var NATIVE_WEAK_MAP = nativeWeakMap;
585
- var global$3 = global$l;
796
+ var global$6 = global$o;
586
797
  var uncurryThis$3 = functionUncurryThis;
587
798
  var isObject = isObject$5;
588
- var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
589
- var hasOwn$4 = hasOwnProperty_1;
799
+ var createNonEnumerableProperty$4 = createNonEnumerableProperty$5;
800
+ var hasOwn$6 = hasOwnProperty_1;
590
801
  var shared = sharedStore;
591
- var sharedKey = sharedKey$1;
592
- var hiddenKeys$2 = hiddenKeys$3;
802
+ var sharedKey$1 = sharedKey$3;
803
+ var hiddenKeys$1 = hiddenKeys$4;
593
804
 
594
805
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
595
- var TypeError = global$3.TypeError;
596
- var WeakMap = global$3.WeakMap;
806
+ var TypeError$1 = global$6.TypeError;
807
+ var WeakMap = global$6.WeakMap;
597
808
  var set, get, has;
598
809
 
599
810
  var enforce = function (it) {
@@ -604,7 +815,7 @@ var getterFor = function (TYPE) {
604
815
  return function (it) {
605
816
  var state;
606
817
  if (!isObject(it) || (state = get(it)).type !== TYPE) {
607
- throw TypeError('Incompatible receiver, ' + TYPE + ' required');
818
+ throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
608
819
  } return state;
609
820
  };
610
821
  };
@@ -615,7 +826,7 @@ if (NATIVE_WEAK_MAP || shared.state) {
615
826
  var wmhas = uncurryThis$3(store.has);
616
827
  var wmset = uncurryThis$3(store.set);
617
828
  set = function (it, metadata) {
618
- if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
829
+ if (wmhas(store, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
619
830
  metadata.facade = it;
620
831
  wmset(store, it, metadata);
621
832
  return metadata;
@@ -627,19 +838,19 @@ if (NATIVE_WEAK_MAP || shared.state) {
627
838
  return wmhas(store, it);
628
839
  };
629
840
  } else {
630
- var STATE = sharedKey('state');
631
- hiddenKeys$2[STATE] = true;
841
+ var STATE = sharedKey$1('state');
842
+ hiddenKeys$1[STATE] = true;
632
843
  set = function (it, metadata) {
633
- if (hasOwn$4(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
844
+ if (hasOwn$6(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
634
845
  metadata.facade = it;
635
- createNonEnumerableProperty$2(it, STATE, metadata);
846
+ createNonEnumerableProperty$4(it, STATE, metadata);
636
847
  return metadata;
637
848
  };
638
849
  get = function (it) {
639
- return hasOwn$4(it, STATE) ? it[STATE] : {};
850
+ return hasOwn$6(it, STATE) ? it[STATE] : {};
640
851
  };
641
852
  has = function (it) {
642
- return hasOwn$4(it, STATE);
853
+ return hasOwn$6(it, STATE);
643
854
  };
644
855
  }
645
856
 
@@ -651,17 +862,60 @@ var internalState = {
651
862
  getterFor: getterFor
652
863
  };
653
864
 
654
- var DESCRIPTORS$1 = descriptors;
655
- var hasOwn$3 = hasOwnProperty_1;
865
+ var objectGetOwnPropertyDescriptor = {};
866
+
867
+ var objectPropertyIsEnumerable = {};
868
+
869
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
870
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
871
+ var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
872
+
873
+ // Nashorn ~ JDK8 bug
874
+ var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
875
+
876
+ // `Object.prototype.propertyIsEnumerable` method implementation
877
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
878
+ objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
879
+ var descriptor = getOwnPropertyDescriptor$1(this, V);
880
+ return !!descriptor && descriptor.enumerable;
881
+ } : $propertyIsEnumerable;
882
+
883
+ var DESCRIPTORS$3 = descriptors;
884
+ var call$2 = functionCall;
885
+ var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
886
+ var createPropertyDescriptor$1 = createPropertyDescriptor$3;
887
+ var toIndexedObject$1 = toIndexedObject$5;
888
+ var toPropertyKey = toPropertyKey$2;
889
+ var hasOwn$5 = hasOwnProperty_1;
890
+ var IE8_DOM_DEFINE = ie8DomDefine;
891
+
892
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
893
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
894
+
895
+ // `Object.getOwnPropertyDescriptor` method
896
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
897
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$3 ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
898
+ O = toIndexedObject$1(O);
899
+ P = toPropertyKey(P);
900
+ if (IE8_DOM_DEFINE) try {
901
+ return $getOwnPropertyDescriptor(O, P);
902
+ } catch (error) { /* empty */ }
903
+ if (hasOwn$5(O, P)) return createPropertyDescriptor$1(!call$2(propertyIsEnumerableModule$1.f, O, P), O[P]);
904
+ };
905
+
906
+ var redefine$3 = {exports: {}};
907
+
908
+ var DESCRIPTORS$2 = descriptors;
909
+ var hasOwn$4 = hasOwnProperty_1;
656
910
 
657
911
  var FunctionPrototype = Function.prototype;
658
912
  // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
659
- var getDescriptor = DESCRIPTORS$1 && Object.getOwnPropertyDescriptor;
913
+ var getDescriptor = DESCRIPTORS$2 && Object.getOwnPropertyDescriptor;
660
914
 
661
- var EXISTS = hasOwn$3(FunctionPrototype, 'name');
915
+ var EXISTS = hasOwn$4(FunctionPrototype, 'name');
662
916
  // additional protection from minified / mangled / dropped function names
663
917
  var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
664
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$1 || (DESCRIPTORS$1 && getDescriptor(FunctionPrototype, 'name').configurable));
918
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$2 || (DESCRIPTORS$2 && getDescriptor(FunctionPrototype, 'name').configurable));
665
919
 
666
920
  var functionName = {
667
921
  EXISTS: EXISTS,
@@ -669,38 +923,38 @@ var functionName = {
669
923
  CONFIGURABLE: CONFIGURABLE
670
924
  };
671
925
 
672
- var global$2 = global$l;
673
- var isCallable$1 = isCallable$9;
674
- var hasOwn$2 = hasOwnProperty_1;
675
- var createNonEnumerableProperty$1 = createNonEnumerableProperty$3;
926
+ var global$5 = global$o;
927
+ var isCallable$5 = isCallable$d;
928
+ var hasOwn$3 = hasOwnProperty_1;
929
+ var createNonEnumerableProperty$3 = createNonEnumerableProperty$5;
676
930
  var setGlobal$1 = setGlobal$3;
677
931
  var inspectSource = inspectSource$2;
678
- var InternalStateModule = internalState;
679
- var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
932
+ var InternalStateModule$1 = internalState;
933
+ var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
680
934
 
681
- var getInternalState = InternalStateModule.get;
682
- var enforceInternalState = InternalStateModule.enforce;
935
+ var getInternalState$1 = InternalStateModule$1.get;
936
+ var enforceInternalState = InternalStateModule$1.enforce;
683
937
  var TEMPLATE = String(String).split('String');
684
938
 
685
- (redefine$1.exports = function (O, key, value, options) {
939
+ (redefine$3.exports = function (O, key, value, options) {
686
940
  var unsafe = options ? !!options.unsafe : false;
687
941
  var simple = options ? !!options.enumerable : false;
688
942
  var noTargetGet = options ? !!options.noTargetGet : false;
689
943
  var name = options && options.name !== undefined ? options.name : key;
690
944
  var state;
691
- if (isCallable$1(value)) {
945
+ if (isCallable$5(value)) {
692
946
  if (String(name).slice(0, 7) === 'Symbol(') {
693
947
  name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
694
948
  }
695
- if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
696
- createNonEnumerableProperty$1(value, 'name', name);
949
+ if (!hasOwn$3(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
950
+ createNonEnumerableProperty$3(value, 'name', name);
697
951
  }
698
952
  state = enforceInternalState(value);
699
953
  if (!state.source) {
700
954
  state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
701
955
  }
702
956
  }
703
- if (O === global$2) {
957
+ if (O === global$5) {
704
958
  if (simple) O[key] = value;
705
959
  else setGlobal$1(key, value);
706
960
  return;
@@ -710,131 +964,24 @@ var TEMPLATE = String(String).split('String');
710
964
  simple = true;
711
965
  }
712
966
  if (simple) O[key] = value;
713
- else createNonEnumerableProperty$1(O, key, value);
967
+ else createNonEnumerableProperty$3(O, key, value);
714
968
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
715
969
  })(Function.prototype, 'toString', function toString() {
716
- return isCallable$1(this) && getInternalState(this).source || inspectSource(this);
970
+ return isCallable$5(this) && getInternalState$1(this).source || inspectSource(this);
717
971
  });
718
972
 
719
973
  var objectGetOwnPropertyNames = {};
720
974
 
721
- var ceil = Math.ceil;
722
- var floor = Math.floor;
723
-
724
- // `ToIntegerOrInfinity` abstract operation
725
- // https://tc39.es/ecma262/#sec-tointegerorinfinity
726
- var toIntegerOrInfinity$2 = function (argument) {
727
- var number = +argument;
728
- // eslint-disable-next-line no-self-compare -- safe
729
- return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
730
- };
731
-
732
- var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
733
-
734
- var max = Math.max;
735
- var min$1 = Math.min;
736
-
737
- // Helper for a popular repeating case of the spec:
738
- // Let integer be ? ToInteger(index).
739
- // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
740
- var toAbsoluteIndex$1 = function (index, length) {
741
- var integer = toIntegerOrInfinity$1(index);
742
- return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
743
- };
744
-
745
- var toIntegerOrInfinity = toIntegerOrInfinity$2;
746
-
747
- var min = Math.min;
748
-
749
- // `ToLength` abstract operation
750
- // https://tc39.es/ecma262/#sec-tolength
751
- var toLength$1 = function (argument) {
752
- return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
753
- };
754
-
755
- var toLength = toLength$1;
756
-
757
- // `LengthOfArrayLike` abstract operation
758
- // https://tc39.es/ecma262/#sec-lengthofarraylike
759
- var lengthOfArrayLike$1 = function (obj) {
760
- return toLength(obj.length);
761
- };
762
-
763
- var toIndexedObject$1 = toIndexedObject$3;
764
- var toAbsoluteIndex = toAbsoluteIndex$1;
765
- var lengthOfArrayLike = lengthOfArrayLike$1;
766
-
767
- // `Array.prototype.{ indexOf, includes }` methods implementation
768
- var createMethod = function (IS_INCLUDES) {
769
- return function ($this, el, fromIndex) {
770
- var O = toIndexedObject$1($this);
771
- var length = lengthOfArrayLike(O);
772
- var index = toAbsoluteIndex(fromIndex, length);
773
- var value;
774
- // Array#includes uses SameValueZero equality algorithm
775
- // eslint-disable-next-line no-self-compare -- NaN check
776
- if (IS_INCLUDES && el != el) while (length > index) {
777
- value = O[index++];
778
- // eslint-disable-next-line no-self-compare -- NaN check
779
- if (value != value) return true;
780
- // Array#indexOf ignores holes, Array#includes - not
781
- } else for (;length > index; index++) {
782
- if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
783
- } return !IS_INCLUDES && -1;
784
- };
785
- };
786
-
787
- var arrayIncludes = {
788
- // `Array.prototype.includes` method
789
- // https://tc39.es/ecma262/#sec-array.prototype.includes
790
- includes: createMethod(true),
791
- // `Array.prototype.indexOf` method
792
- // https://tc39.es/ecma262/#sec-array.prototype.indexof
793
- indexOf: createMethod(false)
794
- };
795
-
796
- var uncurryThis$2 = functionUncurryThis;
797
- var hasOwn$1 = hasOwnProperty_1;
798
- var toIndexedObject = toIndexedObject$3;
799
- var indexOf = arrayIncludes.indexOf;
800
- var hiddenKeys$1 = hiddenKeys$3;
801
-
802
- var push = uncurryThis$2([].push);
803
-
804
- var objectKeysInternal = function (object, names) {
805
- var O = toIndexedObject(object);
806
- var i = 0;
807
- var result = [];
808
- var key;
809
- for (key in O) !hasOwn$1(hiddenKeys$1, key) && hasOwn$1(O, key) && push(result, key);
810
- // Don't enum bug & hidden keys
811
- while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
812
- ~indexOf(result, key) || push(result, key);
813
- }
814
- return result;
815
- };
816
-
817
- // IE8- don't enum bug keys
818
- var enumBugKeys$2 = [
819
- 'constructor',
820
- 'hasOwnProperty',
821
- 'isPrototypeOf',
822
- 'propertyIsEnumerable',
823
- 'toLocaleString',
824
- 'toString',
825
- 'valueOf'
826
- ];
827
-
828
- var internalObjectKeys$1 = objectKeysInternal;
829
- var enumBugKeys$1 = enumBugKeys$2;
975
+ var internalObjectKeys = objectKeysInternal;
976
+ var enumBugKeys = enumBugKeys$3;
830
977
 
831
- var hiddenKeys = enumBugKeys$1.concat('length', 'prototype');
978
+ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
832
979
 
833
980
  // `Object.getOwnPropertyNames` method
834
981
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
835
982
  // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
836
983
  objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
837
- return internalObjectKeys$1(O, hiddenKeys);
984
+ return internalObjectKeys(O, hiddenKeys);
838
985
  };
839
986
 
840
987
  var objectGetOwnPropertySymbols = {};
@@ -842,22 +989,22 @@ var objectGetOwnPropertySymbols = {};
842
989
  // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
843
990
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
844
991
 
845
- var getBuiltIn = getBuiltIn$3;
846
- var uncurryThis$1 = functionUncurryThis;
992
+ var getBuiltIn = getBuiltIn$4;
993
+ var uncurryThis$2 = functionUncurryThis;
847
994
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
848
995
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
849
- var anObject = anObject$2;
996
+ var anObject$1 = anObject$5;
850
997
 
851
- var concat$1 = uncurryThis$1([].concat);
998
+ var concat$1 = uncurryThis$2([].concat);
852
999
 
853
1000
  // all object keys, includes non-enumerable and symbols
854
1001
  var ownKeys$1 = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
855
- var keys = getOwnPropertyNamesModule.f(anObject(it));
1002
+ var keys = getOwnPropertyNamesModule.f(anObject$1(it));
856
1003
  var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
857
1004
  return getOwnPropertySymbols ? concat$1(keys, getOwnPropertySymbols(it)) : keys;
858
1005
  };
859
1006
 
860
- var hasOwn = hasOwnProperty_1;
1007
+ var hasOwn$2 = hasOwnProperty_1;
861
1008
  var ownKeys = ownKeys$1;
862
1009
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
863
1010
  var definePropertyModule = objectDefineProperty;
@@ -868,14 +1015,14 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
868
1015
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
869
1016
  for (var i = 0; i < keys.length; i++) {
870
1017
  var key = keys[i];
871
- if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
1018
+ if (!hasOwn$2(target, key) && !(exceptions && hasOwn$2(exceptions, key))) {
872
1019
  defineProperty(target, key, getOwnPropertyDescriptor(source, key));
873
1020
  }
874
1021
  }
875
1022
  };
876
1023
 
877
- var fails$1 = fails$8;
878
- var isCallable = isCallable$9;
1024
+ var fails$3 = fails$a;
1025
+ var isCallable$4 = isCallable$d;
879
1026
 
880
1027
  var replacement = /#|\.prototype\./;
881
1028
 
@@ -883,7 +1030,7 @@ var isForced$1 = function (feature, detection) {
883
1030
  var value = data[normalize(feature)];
884
1031
  return value == POLYFILL ? true
885
1032
  : value == NATIVE ? false
886
- : isCallable(detection) ? fails$1(detection)
1033
+ : isCallable$4(detection) ? fails$3(detection)
887
1034
  : !!detection;
888
1035
  };
889
1036
 
@@ -897,10 +1044,10 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
897
1044
 
898
1045
  var isForced_1 = isForced$1;
899
1046
 
900
- var global$1 = global$l;
1047
+ var global$4 = global$o;
901
1048
  var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
902
- var createNonEnumerableProperty = createNonEnumerableProperty$3;
903
- var redefine = redefine$1.exports;
1049
+ var createNonEnumerableProperty$2 = createNonEnumerableProperty$5;
1050
+ var redefine$2 = redefine$3.exports;
904
1051
  var setGlobal = setGlobal$3;
905
1052
  var copyConstructorProperties = copyConstructorProperties$1;
906
1053
  var isForced = isForced_1;
@@ -926,11 +1073,11 @@ var _export = function (options, source) {
926
1073
  var STATIC = options.stat;
927
1074
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
928
1075
  if (GLOBAL) {
929
- target = global$1;
1076
+ target = global$4;
930
1077
  } else if (STATIC) {
931
- target = global$1[TARGET] || setGlobal(TARGET, {});
1078
+ target = global$4[TARGET] || setGlobal(TARGET, {});
932
1079
  } else {
933
- target = (global$1[TARGET] || {}).prototype;
1080
+ target = (global$4[TARGET] || {}).prototype;
934
1081
  }
935
1082
  if (target) for (key in source) {
936
1083
  sourceProperty = source[key];
@@ -946,31 +1093,406 @@ var _export = function (options, source) {
946
1093
  }
947
1094
  // add a flag to not completely full polyfills
948
1095
  if (options.sham || (targetProperty && targetProperty.sham)) {
949
- createNonEnumerableProperty(sourceProperty, 'sham', true);
1096
+ createNonEnumerableProperty$2(sourceProperty, 'sham', true);
950
1097
  }
951
1098
  // extend global
952
- redefine(target, key, sourceProperty, options);
1099
+ redefine$2(target, key, sourceProperty, options);
953
1100
  }
954
1101
  };
955
1102
 
956
- var internalObjectKeys = objectKeysInternal;
957
- var enumBugKeys = enumBugKeys$2;
1103
+ var fails$2 = fails$a;
958
1104
 
959
- // `Object.keys` method
960
- // https://tc39.es/ecma262/#sec-object.keys
961
- // eslint-disable-next-line es-x/no-object-keys -- safe
962
- var objectKeys$1 = Object.keys || function keys(O) {
963
- return internalObjectKeys(O, enumBugKeys);
1105
+ var correctPrototypeGetter = !fails$2(function () {
1106
+ function F() { /* empty */ }
1107
+ F.prototype.constructor = null;
1108
+ // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing
1109
+ return Object.getPrototypeOf(new F()) !== F.prototype;
1110
+ });
1111
+
1112
+ var global$3 = global$o;
1113
+ var hasOwn$1 = hasOwnProperty_1;
1114
+ var isCallable$3 = isCallable$d;
1115
+ var toObject$1 = toObject$3;
1116
+ var sharedKey = sharedKey$3;
1117
+ var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
1118
+
1119
+ var IE_PROTO = sharedKey('IE_PROTO');
1120
+ var Object$1 = global$3.Object;
1121
+ var ObjectPrototype = Object$1.prototype;
1122
+
1123
+ // `Object.getPrototypeOf` method
1124
+ // https://tc39.es/ecma262/#sec-object.getprototypeof
1125
+ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? Object$1.getPrototypeOf : function (O) {
1126
+ var object = toObject$1(O);
1127
+ if (hasOwn$1(object, IE_PROTO)) return object[IE_PROTO];
1128
+ var constructor = object.constructor;
1129
+ if (isCallable$3(constructor) && object instanceof constructor) {
1130
+ return constructor.prototype;
1131
+ } return object instanceof Object$1 ? ObjectPrototype : null;
1132
+ };
1133
+
1134
+ var fails$1 = fails$a;
1135
+ var isCallable$2 = isCallable$d;
1136
+ var getPrototypeOf$1 = objectGetPrototypeOf;
1137
+ var redefine$1 = redefine$3.exports;
1138
+ var wellKnownSymbol$3 = wellKnownSymbol$6;
1139
+
1140
+ var ITERATOR$2 = wellKnownSymbol$3('iterator');
1141
+ var BUGGY_SAFARI_ITERATORS$1 = false;
1142
+
1143
+ // `%IteratorPrototype%` object
1144
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
1145
+ var IteratorPrototype$2, PrototypeOfArrayIteratorPrototype, arrayIterator;
1146
+
1147
+ /* eslint-disable es-x/no-array-prototype-keys -- safe */
1148
+ if ([].keys) {
1149
+ arrayIterator = [].keys();
1150
+ // Safari 8 has buggy iterators w/o `next`
1151
+ if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS$1 = true;
1152
+ else {
1153
+ PrototypeOfArrayIteratorPrototype = getPrototypeOf$1(getPrototypeOf$1(arrayIterator));
1154
+ if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype$2 = PrototypeOfArrayIteratorPrototype;
1155
+ }
1156
+ }
1157
+
1158
+ var NEW_ITERATOR_PROTOTYPE = IteratorPrototype$2 == undefined || fails$1(function () {
1159
+ var test = {};
1160
+ // FF44- legacy iterators case
1161
+ return IteratorPrototype$2[ITERATOR$2].call(test) !== test;
1162
+ });
1163
+
1164
+ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1165
+
1166
+ // `%IteratorPrototype%[@@iterator]()` method
1167
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1168
+ if (!isCallable$2(IteratorPrototype$2[ITERATOR$2])) {
1169
+ redefine$1(IteratorPrototype$2, ITERATOR$2, function () {
1170
+ return this;
1171
+ });
1172
+ }
1173
+
1174
+ var iteratorsCore = {
1175
+ IteratorPrototype: IteratorPrototype$2,
1176
+ BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS$1
1177
+ };
1178
+
1179
+ var defineProperty$2 = objectDefineProperty.f;
1180
+ var hasOwn = hasOwnProperty_1;
1181
+ var wellKnownSymbol$2 = wellKnownSymbol$6;
1182
+
1183
+ var TO_STRING_TAG$1 = wellKnownSymbol$2('toStringTag');
1184
+
1185
+ var setToStringTag$2 = function (target, TAG, STATIC) {
1186
+ if (target && !STATIC) target = target.prototype;
1187
+ if (target && !hasOwn(target, TO_STRING_TAG$1)) {
1188
+ defineProperty$2(target, TO_STRING_TAG$1, { configurable: true, value: TAG });
1189
+ }
1190
+ };
1191
+
1192
+ var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
1193
+ var create = objectCreate;
1194
+ var createPropertyDescriptor = createPropertyDescriptor$3;
1195
+ var setToStringTag$1 = setToStringTag$2;
1196
+ var Iterators$2 = iterators;
1197
+
1198
+ var returnThis$1 = function () { return this; };
1199
+
1200
+ var createIteratorConstructor$1 = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
1201
+ var TO_STRING_TAG = NAME + ' Iterator';
1202
+ IteratorConstructor.prototype = create(IteratorPrototype$1, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
1203
+ setToStringTag$1(IteratorConstructor, TO_STRING_TAG, false);
1204
+ Iterators$2[TO_STRING_TAG] = returnThis$1;
1205
+ return IteratorConstructor;
1206
+ };
1207
+
1208
+ var global$2 = global$o;
1209
+ var isCallable$1 = isCallable$d;
1210
+
1211
+ var String$1 = global$2.String;
1212
+ var TypeError = global$2.TypeError;
1213
+
1214
+ var aPossiblePrototype$1 = function (argument) {
1215
+ if (typeof argument == 'object' || isCallable$1(argument)) return argument;
1216
+ throw TypeError("Can't set " + String$1(argument) + ' as a prototype');
1217
+ };
1218
+
1219
+ /* eslint-disable no-proto -- safe */
1220
+
1221
+ var uncurryThis$1 = functionUncurryThis;
1222
+ var anObject = anObject$5;
1223
+ var aPossiblePrototype = aPossiblePrototype$1;
1224
+
1225
+ // `Object.setPrototypeOf` method
1226
+ // https://tc39.es/ecma262/#sec-object.setprototypeof
1227
+ // Works with __proto__ only. Old v8 can't work with null proto objects.
1228
+ // eslint-disable-next-line es-x/no-object-setprototypeof -- safe
1229
+ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
1230
+ var CORRECT_SETTER = false;
1231
+ var test = {};
1232
+ var setter;
1233
+ try {
1234
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
1235
+ setter = uncurryThis$1(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
1236
+ setter(test, []);
1237
+ CORRECT_SETTER = test instanceof Array;
1238
+ } catch (error) { /* empty */ }
1239
+ return function setPrototypeOf(O, proto) {
1240
+ anObject(O);
1241
+ aPossiblePrototype(proto);
1242
+ if (CORRECT_SETTER) setter(O, proto);
1243
+ else O.__proto__ = proto;
1244
+ return O;
1245
+ };
1246
+ }() : undefined);
1247
+
1248
+ var $$1 = _export;
1249
+ var call$1 = functionCall;
1250
+ var FunctionName = functionName;
1251
+ var isCallable = isCallable$d;
1252
+ var createIteratorConstructor = createIteratorConstructor$1;
1253
+ var getPrototypeOf = objectGetPrototypeOf;
1254
+ var setPrototypeOf = objectSetPrototypeOf;
1255
+ var setToStringTag = setToStringTag$2;
1256
+ var createNonEnumerableProperty$1 = createNonEnumerableProperty$5;
1257
+ var redefine = redefine$3.exports;
1258
+ var wellKnownSymbol$1 = wellKnownSymbol$6;
1259
+ var Iterators$1 = iterators;
1260
+ var IteratorsCore = iteratorsCore;
1261
+
1262
+ var PROPER_FUNCTION_NAME = FunctionName.PROPER;
1263
+ var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
1264
+ var IteratorPrototype = IteratorsCore.IteratorPrototype;
1265
+ var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
1266
+ var ITERATOR$1 = wellKnownSymbol$1('iterator');
1267
+ var KEYS = 'keys';
1268
+ var VALUES = 'values';
1269
+ var ENTRIES = 'entries';
1270
+
1271
+ var returnThis = function () { return this; };
1272
+
1273
+ var defineIterator$1 = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
1274
+ createIteratorConstructor(IteratorConstructor, NAME, next);
1275
+
1276
+ var getIterationMethod = function (KIND) {
1277
+ if (KIND === DEFAULT && defaultIterator) return defaultIterator;
1278
+ if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];
1279
+ switch (KIND) {
1280
+ case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
1281
+ case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
1282
+ case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
1283
+ } return function () { return new IteratorConstructor(this); };
1284
+ };
1285
+
1286
+ var TO_STRING_TAG = NAME + ' Iterator';
1287
+ var INCORRECT_VALUES_NAME = false;
1288
+ var IterablePrototype = Iterable.prototype;
1289
+ var nativeIterator = IterablePrototype[ITERATOR$1]
1290
+ || IterablePrototype['@@iterator']
1291
+ || DEFAULT && IterablePrototype[DEFAULT];
1292
+ var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
1293
+ var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
1294
+ var CurrentIteratorPrototype, methods, KEY;
1295
+
1296
+ // fix native
1297
+ if (anyNativeIterator) {
1298
+ CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
1299
+ if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
1300
+ if (getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1301
+ if (setPrototypeOf) {
1302
+ setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
1303
+ } else if (!isCallable(CurrentIteratorPrototype[ITERATOR$1])) {
1304
+ redefine(CurrentIteratorPrototype, ITERATOR$1, returnThis);
1305
+ }
1306
+ }
1307
+ // Set @@toStringTag to native iterators
1308
+ setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true);
1309
+ }
1310
+ }
1311
+
1312
+ // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
1313
+ if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
1314
+ if (CONFIGURABLE_FUNCTION_NAME) {
1315
+ createNonEnumerableProperty$1(IterablePrototype, 'name', VALUES);
1316
+ } else {
1317
+ INCORRECT_VALUES_NAME = true;
1318
+ defaultIterator = function values() { return call$1(nativeIterator, this); };
1319
+ }
1320
+ }
1321
+
1322
+ // export additional methods
1323
+ if (DEFAULT) {
1324
+ methods = {
1325
+ values: getIterationMethod(VALUES),
1326
+ keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
1327
+ entries: getIterationMethod(ENTRIES)
1328
+ };
1329
+ if (FORCED) for (KEY in methods) {
1330
+ if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1331
+ redefine(IterablePrototype, KEY, methods[KEY]);
1332
+ }
1333
+ } else $$1({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1334
+ }
1335
+
1336
+ // define iterator
1337
+ if (IterablePrototype[ITERATOR$1] !== defaultIterator) {
1338
+ redefine(IterablePrototype, ITERATOR$1, defaultIterator, { name: DEFAULT });
1339
+ }
1340
+ Iterators$1[NAME] = defaultIterator;
1341
+
1342
+ return methods;
1343
+ };
1344
+
1345
+ var toIndexedObject = toIndexedObject$5;
1346
+ var addToUnscopables = addToUnscopables$1;
1347
+ var Iterators = iterators;
1348
+ var InternalStateModule = internalState;
1349
+ var defineProperty$1 = objectDefineProperty.f;
1350
+ var defineIterator = defineIterator$1;
1351
+ var DESCRIPTORS$1 = descriptors;
1352
+
1353
+ var ARRAY_ITERATOR = 'Array Iterator';
1354
+ var setInternalState = InternalStateModule.set;
1355
+ var getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);
1356
+
1357
+ // `Array.prototype.entries` method
1358
+ // https://tc39.es/ecma262/#sec-array.prototype.entries
1359
+ // `Array.prototype.keys` method
1360
+ // https://tc39.es/ecma262/#sec-array.prototype.keys
1361
+ // `Array.prototype.values` method
1362
+ // https://tc39.es/ecma262/#sec-array.prototype.values
1363
+ // `Array.prototype[@@iterator]` method
1364
+ // https://tc39.es/ecma262/#sec-array.prototype-@@iterator
1365
+ // `CreateArrayIterator` internal method
1366
+ // https://tc39.es/ecma262/#sec-createarrayiterator
1367
+ var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) {
1368
+ setInternalState(this, {
1369
+ type: ARRAY_ITERATOR,
1370
+ target: toIndexedObject(iterated), // target
1371
+ index: 0, // next index
1372
+ kind: kind // kind
1373
+ });
1374
+ // `%ArrayIteratorPrototype%.next` method
1375
+ // https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next
1376
+ }, function () {
1377
+ var state = getInternalState(this);
1378
+ var target = state.target;
1379
+ var kind = state.kind;
1380
+ var index = state.index++;
1381
+ if (!target || index >= target.length) {
1382
+ state.target = undefined;
1383
+ return { value: undefined, done: true };
1384
+ }
1385
+ if (kind == 'keys') return { value: index, done: false };
1386
+ if (kind == 'values') return { value: target[index], done: false };
1387
+ return { value: [index, target[index]], done: false };
1388
+ }, 'values');
1389
+
1390
+ // argumentsList[@@iterator] is %ArrayProto_values%
1391
+ // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
1392
+ // https://tc39.es/ecma262/#sec-createmappedargumentsobject
1393
+ var values = Iterators.Arguments = Iterators.Array;
1394
+
1395
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
1396
+ addToUnscopables('keys');
1397
+ addToUnscopables('values');
1398
+ addToUnscopables('entries');
1399
+
1400
+ // V8 ~ Chrome 45- bug
1401
+ if (DESCRIPTORS$1 && values.name !== 'values') try {
1402
+ defineProperty$1(values, 'name', { value: 'values' });
1403
+ } catch (error) { /* empty */ }
1404
+
1405
+ // iterable DOM collections
1406
+ // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
1407
+ var domIterables = {
1408
+ CSSRuleList: 0,
1409
+ CSSStyleDeclaration: 0,
1410
+ CSSValueList: 0,
1411
+ ClientRectList: 0,
1412
+ DOMRectList: 0,
1413
+ DOMStringList: 0,
1414
+ DOMTokenList: 1,
1415
+ DataTransferItemList: 0,
1416
+ FileList: 0,
1417
+ HTMLAllCollection: 0,
1418
+ HTMLCollection: 0,
1419
+ HTMLFormElement: 0,
1420
+ HTMLSelectElement: 0,
1421
+ MediaList: 0,
1422
+ MimeTypeArray: 0,
1423
+ NamedNodeMap: 0,
1424
+ NodeList: 1,
1425
+ PaintRequestList: 0,
1426
+ Plugin: 0,
1427
+ PluginArray: 0,
1428
+ SVGLengthList: 0,
1429
+ SVGNumberList: 0,
1430
+ SVGPathSegList: 0,
1431
+ SVGPointList: 0,
1432
+ SVGStringList: 0,
1433
+ SVGTransformList: 0,
1434
+ SourceBufferList: 0,
1435
+ StyleSheetList: 0,
1436
+ TextTrackCueList: 0,
1437
+ TextTrackList: 0,
1438
+ TouchList: 0
1439
+ };
1440
+
1441
+ // in old WebKit versions, `element.classList` is not an instance of global `DOMTokenList`
1442
+ var documentCreateElement = documentCreateElement$2;
1443
+
1444
+ var classList = documentCreateElement('span').classList;
1445
+ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.constructor.prototype;
1446
+
1447
+ var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
1448
+
1449
+ var global$1 = global$o;
1450
+ var DOMIterables = domIterables;
1451
+ var DOMTokenListPrototype = domTokenListPrototype;
1452
+ var ArrayIteratorMethods = es_array_iterator;
1453
+ var createNonEnumerableProperty = createNonEnumerableProperty$5;
1454
+ var wellKnownSymbol = wellKnownSymbol$6;
1455
+
1456
+ var ITERATOR = wellKnownSymbol('iterator');
1457
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1458
+ var ArrayValues = ArrayIteratorMethods.values;
1459
+
1460
+ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1461
+ if (CollectionPrototype) {
1462
+ // some Chrome versions have non-configurable methods on DOMTokenList
1463
+ if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
1464
+ createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
1465
+ } catch (error) {
1466
+ CollectionPrototype[ITERATOR] = ArrayValues;
1467
+ }
1468
+ if (!CollectionPrototype[TO_STRING_TAG]) {
1469
+ createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);
1470
+ }
1471
+ if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
1472
+ // some Chrome versions have non-configurable methods on DOMTokenList
1473
+ if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
1474
+ createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
1475
+ } catch (error) {
1476
+ CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
1477
+ }
1478
+ }
1479
+ }
964
1480
  };
965
1481
 
1482
+ for (var COLLECTION_NAME in DOMIterables) {
1483
+ handlePrototype(global$1[COLLECTION_NAME] && global$1[COLLECTION_NAME].prototype, COLLECTION_NAME);
1484
+ }
1485
+
1486
+ handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
1487
+
966
1488
  var DESCRIPTORS = descriptors;
967
1489
  var uncurryThis = functionUncurryThis;
968
1490
  var call = functionCall;
969
- var fails = fails$8;
970
- var objectKeys = objectKeys$1;
1491
+ var fails = fails$a;
1492
+ var objectKeys = objectKeys$2;
971
1493
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
972
1494
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
973
- var toObject = toObject$2;
1495
+ var toObject = toObject$3;
974
1496
  var IndexedObject = indexedObject;
975
1497
 
976
1498
  // eslint-disable-next-line es-x/no-object-assign -- safe
@@ -1030,6 +1552,43 @@ $({ target: 'Object', stat: true, forced: Object.assign !== assign }, {
1030
1552
  assign: assign
1031
1553
  });
1032
1554
 
1555
+ const DeveloperSettingsContext = /*#__PURE__*/React.createContext({
1556
+ localFeatureFlagsEnabled: false
1557
+ });
1558
+ const useDeveloperSettings = () => {
1559
+ const context = React.useContext(DeveloperSettingsContext);
1560
+
1561
+ if (!context) {
1562
+ throw new Error("useDeveloperSettingsContext must be used within DeveloperSettingsProvider");
1563
+ }
1564
+
1565
+ return context;
1566
+ };
1567
+ const DeveloperSettingsProvider = ({
1568
+ value,
1569
+ children
1570
+ }) => {
1571
+ const launchdarklyFlags = useFlags();
1572
+ const [localFeatureFlagsEnabled, setLocalFeatureFlagsEnabled] = React.useState(false);
1573
+ const [localFeatureFlags, setLocalFeatureFlags] = React.useState();
1574
+ React.useEffect(() => {
1575
+ if (!localFeatureFlagsEnabled) {
1576
+ setLocalFeatureFlags(launchdarklyFlags);
1577
+ }
1578
+ }, [launchdarklyFlags, localFeatureFlagsEnabled]);
1579
+ return jsx(DeveloperSettingsContext.Provider, Object.assign({
1580
+ value: value !== null && value !== void 0 ? value : {
1581
+ localFeatureFlagsEnabled,
1582
+ enableLocalFeatureFlags: setLocalFeatureFlagsEnabled,
1583
+ localFeatureFlags,
1584
+ launchdarklyFlags,
1585
+ setFlags: setLocalFeatureFlags
1586
+ }
1587
+ }, {
1588
+ children: children
1589
+ }));
1590
+ };
1591
+
1033
1592
  const EnvironmentContext = /*#__PURE__*/createContext(null);
1034
1593
  const EnvironmentContextProvider = props => {
1035
1594
  return jsx(EnvironmentContext.Provider, Object.assign({}, props));
@@ -1044,6 +1603,36 @@ const useEnvironment = () => {
1044
1603
  return context;
1045
1604
  };
1046
1605
 
1606
+ /**
1607
+ * A hook to expose asset runtime for React components
1608
+ *
1609
+ * @returns {UseAssetRuntime} assetRuntime
1610
+ */
1611
+
1612
+ const useAssetRuntime = () => {
1613
+ return AssetRuntime;
1614
+ };
1615
+
1616
+ /**
1617
+ * A hook to expose custom field runtime methods
1618
+ *
1619
+ * @returns {UseCustomFieldRuntime} CustomFieldRuntime
1620
+ */
1621
+
1622
+ const useCustomFieldRuntime = () => {
1623
+ return CustomFieldRuntime;
1624
+ };
1625
+
1626
+ /**
1627
+ * A hook to expose rest runtime to be used in React components
1628
+ *
1629
+ * @returns {UseRestRuntime} a RestRuntime
1630
+ */
1631
+
1632
+ const useRestRuntime = () => {
1633
+ return RestRuntime;
1634
+ };
1635
+
1047
1636
  const UserSubscriptionContext = /*#__PURE__*/React.createContext(null);
1048
1637
  const UserSubscriptionProvider = props => {
1049
1638
  return jsx(UserSubscriptionContext.Provider, Object.assign({}, props));
@@ -1086,4 +1675,18 @@ const useCurrentUser = () => {
1086
1675
  return context;
1087
1676
  };
1088
1677
 
1089
- export { CurrentUserProvider, EnvironmentContextProvider, TokenProvider, UserSubscriptionProvider, useCurrentUser, useEnvironment, useToken, useUserSubscription };
1678
+ const WhiteLabelproviderContext = /*#__PURE__*/React.createContext(null);
1679
+ const WhiteLabelProvider = props => {
1680
+ return jsx(WhiteLabelproviderContext.Provider, Object.assign({}, props));
1681
+ };
1682
+ const useWhiteLabel = () => {
1683
+ const context = React.useContext(WhiteLabelproviderContext);
1684
+
1685
+ if (!context) {
1686
+ throw new Error("useWhiteLabel must be used within the WhiteLabelProvider");
1687
+ }
1688
+
1689
+ return context;
1690
+ };
1691
+
1692
+ export { CurrentUserProvider, DeveloperSettingsContext, DeveloperSettingsProvider, EnvironmentContextProvider, TokenProvider, UserSubscriptionProvider, WhiteLabelProvider, useAssetRuntime, useCurrentUser, useCustomFieldRuntime, useDeveloperSettings, useEnvironment, useRestRuntime, useToken, useUserSubscription, useWhiteLabel };