@trackunit/iris-app-runtime-core 0.0.67 → 0.0.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +114 -77
  2. package/package.json +3 -3
package/index.js CHANGED
@@ -57,7 +57,7 @@ var check = function (it) {
57
57
 
58
58
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
59
59
  var global$c =
60
- // eslint-disable-next-line es-x/no-global-this -- safe
60
+ // eslint-disable-next-line es/no-global-this -- safe
61
61
  check(typeof globalThis == 'object' && globalThis) ||
62
62
  check(typeof window == 'object' && window) ||
63
63
  // eslint-disable-next-line no-restricted-globals -- safe
@@ -80,14 +80,14 @@ var fails$b = fails$c;
80
80
 
81
81
  // Detect IE8's incomplete defineProperty implementation
82
82
  var descriptors = !fails$b(function () {
83
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
83
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
84
84
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
85
85
  });
86
86
 
87
87
  var fails$a = fails$c;
88
88
 
89
89
  var functionBindNative = !fails$a(function () {
90
- // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
90
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
91
91
  var test = (function () { /* empty */ }).bind();
92
92
  // eslint-disable-next-line no-prototype-builtins -- safe
93
93
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -104,7 +104,7 @@ var functionCall = NATIVE_BIND$1 ? call$5.bind(call$5) : function () {
104
104
  var objectPropertyIsEnumerable = {};
105
105
 
106
106
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
107
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
107
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
108
108
  var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
109
109
 
110
110
  // Nashorn ~ JDK8 bug
@@ -129,33 +129,40 @@ var createPropertyDescriptor$2 = function (bitmap, value) {
129
129
  var NATIVE_BIND = functionBindNative;
130
130
 
131
131
  var FunctionPrototype$1 = Function.prototype;
132
- var bind = FunctionPrototype$1.bind;
133
132
  var call$4 = FunctionPrototype$1.call;
134
- var uncurryThis$d = NATIVE_BIND && bind.bind(call$4, call$4);
133
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$4, call$4);
135
134
 
136
- var functionUncurryThis = NATIVE_BIND ? function (fn) {
137
- return fn && uncurryThis$d(fn);
138
- } : function (fn) {
139
- return fn && function () {
135
+ var functionUncurryThisRaw = function (fn) {
136
+ return NATIVE_BIND ? uncurryThisWithBind(fn) : function () {
140
137
  return call$4.apply(fn, arguments);
141
138
  };
142
139
  };
143
140
 
144
- var uncurryThis$c = functionUncurryThis;
141
+ var uncurryThisRaw$1 = functionUncurryThisRaw;
145
142
 
146
- var toString$5 = uncurryThis$c({}.toString);
147
- var stringSlice = uncurryThis$c(''.slice);
143
+ var toString$5 = uncurryThisRaw$1({}.toString);
144
+ var stringSlice = uncurryThisRaw$1(''.slice);
148
145
 
149
- var classofRaw$1 = function (it) {
146
+ var classofRaw$2 = function (it) {
150
147
  return stringSlice(toString$5(it), 8, -1);
151
148
  };
152
149
 
153
- var uncurryThis$b = functionUncurryThis;
150
+ var classofRaw$1 = classofRaw$2;
151
+ var uncurryThisRaw = functionUncurryThisRaw;
152
+
153
+ var functionUncurryThis = function (fn) {
154
+ // Nashorn bug:
155
+ // https://github.com/zloirock/core-js/issues/1128
156
+ // https://github.com/zloirock/core-js/issues/1130
157
+ if (classofRaw$1(fn) === 'Function') return uncurryThisRaw(fn);
158
+ };
159
+
160
+ var uncurryThis$a = functionUncurryThis;
154
161
  var fails$9 = fails$c;
155
- var classof$2 = classofRaw$1;
162
+ var classof$2 = classofRaw$2;
156
163
 
157
164
  var $Object$3 = Object;
158
- var split = uncurryThis$b(''.split);
165
+ var split = uncurryThis$a(''.split);
159
166
 
160
167
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
161
168
  var indexedObject = fails$9(function () {
@@ -166,12 +173,20 @@ var indexedObject = fails$9(function () {
166
173
  return classof$2(it) == 'String' ? split(it, '') : $Object$3(it);
167
174
  } : $Object$3;
168
175
 
176
+ // we can't use just `it == null` since of `document.all` special case
177
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
178
+ var isNullOrUndefined$2 = function (it) {
179
+ return it === null || it === undefined;
180
+ };
181
+
182
+ var isNullOrUndefined$1 = isNullOrUndefined$2;
183
+
169
184
  var $TypeError$5 = TypeError;
170
185
 
171
186
  // `RequireObjectCoercible` abstract operation
172
187
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
173
188
  var requireObjectCoercible$3 = function (it) {
174
- if (it == undefined) throw $TypeError$5("Can't call method on " + it);
189
+ if (isNullOrUndefined$1(it)) throw $TypeError$5("Can't call method on " + it);
175
190
  return it;
176
191
  };
177
192
 
@@ -183,15 +198,36 @@ var toIndexedObject$3 = function (it) {
183
198
  return IndexedObject$1(requireObjectCoercible$2(it));
184
199
  };
185
200
 
201
+ var documentAll$2 = typeof document == 'object' && document.all;
202
+
203
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
204
+ var IS_HTMLDDA = typeof documentAll$2 == 'undefined' && documentAll$2 !== undefined;
205
+
206
+ var documentAll_1 = {
207
+ all: documentAll$2,
208
+ IS_HTMLDDA: IS_HTMLDDA
209
+ };
210
+
211
+ var $documentAll$1 = documentAll_1;
212
+
213
+ var documentAll$1 = $documentAll$1.all;
214
+
186
215
  // `IsCallable` abstract operation
187
216
  // https://tc39.es/ecma262/#sec-iscallable
188
- var isCallable$b = function (argument) {
217
+ var isCallable$b = $documentAll$1.IS_HTMLDDA ? function (argument) {
218
+ return typeof argument == 'function' || argument === documentAll$1;
219
+ } : function (argument) {
189
220
  return typeof argument == 'function';
190
221
  };
191
222
 
192
223
  var isCallable$a = isCallable$b;
224
+ var $documentAll = documentAll_1;
225
+
226
+ var documentAll = $documentAll.all;
193
227
 
194
- var isObject$5 = function (it) {
228
+ var isObject$5 = $documentAll.IS_HTMLDDA ? function (it) {
229
+ return typeof it == 'object' ? it !== null : isCallable$a(it) || it === documentAll;
230
+ } : function (it) {
195
231
  return typeof it == 'object' ? it !== null : isCallable$a(it);
196
232
  };
197
233
 
@@ -206,9 +242,9 @@ var getBuiltIn$3 = function (namespace, method) {
206
242
  return arguments.length < 2 ? aFunction(global$b[namespace]) : global$b[namespace] && global$b[namespace][method];
207
243
  };
208
244
 
209
- var uncurryThis$a = functionUncurryThis;
245
+ var uncurryThis$9 = functionUncurryThis;
210
246
 
211
- var objectIsPrototypeOf = uncurryThis$a({}.isPrototypeOf);
247
+ var objectIsPrototypeOf = uncurryThis$9({}.isPrototypeOf);
212
248
 
213
249
  var getBuiltIn$2 = getBuiltIn$3;
214
250
 
@@ -242,13 +278,13 @@ if (!version && userAgent) {
242
278
 
243
279
  var engineV8Version = version;
244
280
 
245
- /* eslint-disable es-x/no-symbol -- required for testing */
281
+ /* eslint-disable es/no-symbol -- required for testing */
246
282
 
247
283
  var V8_VERSION = engineV8Version;
248
284
  var fails$8 = fails$c;
249
285
 
250
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
251
- var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$8(function () {
286
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
287
+ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
252
288
  var symbol = Symbol();
253
289
  // Chrome 38 Symbol has incorrect toString conversion
254
290
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -257,9 +293,9 @@ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$8(function () {
257
293
  !Symbol.sham && V8_VERSION && V8_VERSION < 41;
258
294
  });
259
295
 
260
- /* eslint-disable es-x/no-symbol -- required for testing */
296
+ /* eslint-disable es/no-symbol -- required for testing */
261
297
 
262
- var NATIVE_SYMBOL$1 = nativeSymbol;
298
+ var NATIVE_SYMBOL$1 = symbolConstructorDetection;
263
299
 
264
300
  var useSymbolAsUid = NATIVE_SYMBOL$1
265
301
  && !Symbol.sham
@@ -301,12 +337,13 @@ var aCallable$1 = function (argument) {
301
337
  };
302
338
 
303
339
  var aCallable = aCallable$1;
340
+ var isNullOrUndefined = isNullOrUndefined$2;
304
341
 
305
342
  // `GetMethod` abstract operation
306
343
  // https://tc39.es/ecma262/#sec-getmethod
307
344
  var getMethod$1 = function (V, P) {
308
345
  var func = V[P];
309
- return func == null ? undefined : aCallable(func);
346
+ return isNullOrUndefined(func) ? undefined : aCallable(func);
310
347
  };
311
348
 
312
349
  var call$3 = functionCall;
@@ -329,7 +366,7 @@ var shared$3 = {exports: {}};
329
366
 
330
367
  var global$9 = global$c;
331
368
 
332
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
369
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
333
370
  var defineProperty$2 = Object.defineProperty;
334
371
 
335
372
  var defineGlobalProperty$3 = function (key, value) {
@@ -353,10 +390,10 @@ var store$2 = sharedStore;
353
390
  (shared$3.exports = function (key, value) {
354
391
  return store$2[key] || (store$2[key] = value !== undefined ? value : {});
355
392
  })('versions', []).push({
356
- version: '3.24.1',
393
+ version: '3.25.5',
357
394
  mode: 'global',
358
395
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
359
- license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
396
+ license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE',
360
397
  source: 'https://github.com/zloirock/core-js'
361
398
  });
362
399
 
@@ -370,23 +407,23 @@ var toObject$2 = function (argument) {
370
407
  return $Object$1(requireObjectCoercible$1(argument));
371
408
  };
372
409
 
373
- var uncurryThis$9 = functionUncurryThis;
410
+ var uncurryThis$8 = functionUncurryThis;
374
411
  var toObject$1 = toObject$2;
375
412
 
376
- var hasOwnProperty = uncurryThis$9({}.hasOwnProperty);
413
+ var hasOwnProperty = uncurryThis$8({}.hasOwnProperty);
377
414
 
378
415
  // `HasOwnProperty` abstract operation
379
416
  // https://tc39.es/ecma262/#sec-hasownproperty
380
- // eslint-disable-next-line es-x/no-object-hasown -- safe
417
+ // eslint-disable-next-line es/no-object-hasown -- safe
381
418
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
382
419
  return hasOwnProperty(toObject$1(it), key);
383
420
  };
384
421
 
385
- var uncurryThis$8 = functionUncurryThis;
422
+ var uncurryThis$7 = functionUncurryThis;
386
423
 
387
424
  var id = 0;
388
425
  var postfix = Math.random();
389
- var toString$4 = uncurryThis$8(1.0.toString);
426
+ var toString$4 = uncurryThis$7(1.0.toString);
390
427
 
391
428
  var uid$2 = function (key) {
392
429
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$4(++id + postfix, 36);
@@ -396,7 +433,7 @@ var global$7 = global$c;
396
433
  var shared$2 = shared$3.exports;
397
434
  var hasOwn$6 = hasOwnProperty_1;
398
435
  var uid$1 = uid$2;
399
- var NATIVE_SYMBOL = nativeSymbol;
436
+ var NATIVE_SYMBOL = symbolConstructorDetection;
400
437
  var USE_SYMBOL_AS_UID = useSymbolAsUid;
401
438
 
402
439
  var WellKnownSymbolsStore = shared$2('wks');
@@ -456,12 +493,12 @@ var toPropertyKey$2 = function (argument) {
456
493
  var global$6 = global$c;
457
494
  var isObject$2 = isObject$5;
458
495
 
459
- var document = global$6.document;
496
+ var document$1 = global$6.document;
460
497
  // typeof document.createElement is 'object' in old IE
461
- var EXISTS$1 = isObject$2(document) && isObject$2(document.createElement);
498
+ var EXISTS$1 = isObject$2(document$1) && isObject$2(document$1.createElement);
462
499
 
463
500
  var documentCreateElement = function (it) {
464
- return EXISTS$1 ? document.createElement(it) : {};
501
+ return EXISTS$1 ? document$1.createElement(it) : {};
465
502
  };
466
503
 
467
504
  var DESCRIPTORS$7 = descriptors;
@@ -470,7 +507,7 @@ var createElement = documentCreateElement;
470
507
 
471
508
  // Thanks to IE8 for its funny defineProperty
472
509
  var ie8DomDefine = !DESCRIPTORS$7 && !fails$7(function () {
473
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
510
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
474
511
  return Object.defineProperty(createElement('div'), 'a', {
475
512
  get: function () { return 7; }
476
513
  }).a != 7;
@@ -485,7 +522,7 @@ var toPropertyKey$1 = toPropertyKey$2;
485
522
  var hasOwn$5 = hasOwnProperty_1;
486
523
  var IE8_DOM_DEFINE$1 = ie8DomDefine;
487
524
 
488
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
525
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
489
526
  var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
490
527
 
491
528
  // `Object.getOwnPropertyDescriptor` method
@@ -507,7 +544,7 @@ var fails$6 = fails$c;
507
544
  // V8 ~ Chrome 36-
508
545
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
509
546
  var v8PrototypeDefineBug = DESCRIPTORS$5 && fails$6(function () {
510
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
547
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
511
548
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
512
549
  value: 42,
513
550
  writable: false
@@ -532,9 +569,9 @@ var anObject$1 = anObject$2;
532
569
  var toPropertyKey = toPropertyKey$2;
533
570
 
534
571
  var $TypeError = TypeError;
535
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
572
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
536
573
  var $defineProperty = Object.defineProperty;
537
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
574
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
538
575
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
539
576
  var ENUMERABLE = 'enumerable';
540
577
  var CONFIGURABLE$1 = 'configurable';
@@ -586,7 +623,7 @@ var DESCRIPTORS$2 = descriptors;
586
623
  var hasOwn$4 = hasOwnProperty_1;
587
624
 
588
625
  var FunctionPrototype = Function.prototype;
589
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
626
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
590
627
  var getDescriptor = DESCRIPTORS$2 && Object.getOwnPropertyDescriptor;
591
628
 
592
629
  var EXISTS = hasOwn$4(FunctionPrototype, 'name');
@@ -600,11 +637,11 @@ var functionName = {
600
637
  CONFIGURABLE: CONFIGURABLE
601
638
  };
602
639
 
603
- var uncurryThis$7 = functionUncurryThis;
640
+ var uncurryThis$6 = functionUncurryThis;
604
641
  var isCallable$5 = isCallable$b;
605
642
  var store$1 = sharedStore;
606
643
 
607
- var functionToString = uncurryThis$7(Function.toString);
644
+ var functionToString = uncurryThis$6(Function.toString);
608
645
 
609
646
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
610
647
  if (!isCallable$5(store$1.inspectSource)) {
@@ -613,15 +650,14 @@ if (!isCallable$5(store$1.inspectSource)) {
613
650
  };
614
651
  }
615
652
 
616
- var inspectSource$2 = store$1.inspectSource;
653
+ var inspectSource$1 = store$1.inspectSource;
617
654
 
618
655
  var global$5 = global$c;
619
656
  var isCallable$4 = isCallable$b;
620
- var inspectSource$1 = inspectSource$2;
621
657
 
622
658
  var WeakMap$1 = global$5.WeakMap;
623
659
 
624
- var nativeWeakMap = isCallable$4(WeakMap$1) && /native code/.test(inspectSource$1(WeakMap$1));
660
+ var weakMapBasicDetection = isCallable$4(WeakMap$1) && /native code/.test(String(WeakMap$1));
625
661
 
626
662
  var shared$1 = shared$3.exports;
627
663
  var uid = uid$2;
@@ -634,9 +670,8 @@ var sharedKey$1 = function (key) {
634
670
 
635
671
  var hiddenKeys$3 = {};
636
672
 
637
- var NATIVE_WEAK_MAP = nativeWeakMap;
673
+ var NATIVE_WEAK_MAP = weakMapBasicDetection;
638
674
  var global$4 = global$c;
639
- var uncurryThis$6 = functionUncurryThis;
640
675
  var isObject = isObject$5;
641
676
  var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
642
677
  var hasOwn$3 = hasOwnProperty_1;
@@ -664,26 +699,28 @@ var getterFor = function (TYPE) {
664
699
 
665
700
  if (NATIVE_WEAK_MAP || shared.state) {
666
701
  var store = shared.state || (shared.state = new WeakMap());
667
- var wmget = uncurryThis$6(store.get);
668
- var wmhas = uncurryThis$6(store.has);
669
- var wmset = uncurryThis$6(store.set);
702
+ /* eslint-disable no-self-assign -- prototype methods protection */
703
+ store.get = store.get;
704
+ store.has = store.has;
705
+ store.set = store.set;
706
+ /* eslint-enable no-self-assign -- prototype methods protection */
670
707
  set = function (it, metadata) {
671
- if (wmhas(store, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
708
+ if (store.has(it)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
672
709
  metadata.facade = it;
673
- wmset(store, it, metadata);
710
+ store.set(it, metadata);
674
711
  return metadata;
675
712
  };
676
713
  get = function (it) {
677
- return wmget(store, it) || {};
714
+ return store.get(it) || {};
678
715
  };
679
716
  has = function (it) {
680
- return wmhas(store, it);
717
+ return store.has(it);
681
718
  };
682
719
  } else {
683
720
  var STATE = sharedKey('state');
684
721
  hiddenKeys$2[STATE] = true;
685
722
  set = function (it, metadata) {
686
- if (hasOwn$3(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
723
+ if (hasOwn$3(it, STATE)) throw TypeError$1(OBJECT_ALREADY_INITIALIZED);
687
724
  metadata.facade = it;
688
725
  createNonEnumerableProperty$1(it, STATE, metadata);
689
726
  return metadata;
@@ -709,12 +746,12 @@ var isCallable$3 = isCallable$b;
709
746
  var hasOwn$2 = hasOwnProperty_1;
710
747
  var DESCRIPTORS$1 = descriptors;
711
748
  var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
712
- var inspectSource = inspectSource$2;
749
+ var inspectSource = inspectSource$1;
713
750
  var InternalStateModule = internalState;
714
751
 
715
752
  var enforceInternalState = InternalStateModule.enforce;
716
753
  var getInternalState = InternalStateModule.get;
717
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
754
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
718
755
  var defineProperty$1 = Object.defineProperty;
719
756
 
720
757
  var CONFIGURABLE_LENGTH = DESCRIPTORS$1 && !fails$5(function () {
@@ -789,7 +826,7 @@ var floor = Math.floor;
789
826
 
790
827
  // `Math.trunc` method
791
828
  // https://tc39.es/ecma262/#sec-math.trunc
792
- // eslint-disable-next-line es-x/no-math-trunc -- safe
829
+ // eslint-disable-next-line es/no-math-trunc -- safe
793
830
  var mathTrunc = Math.trunc || function trunc(x) {
794
831
  var n = +x;
795
832
  return (n > 0 ? floor : ceil)(n);
@@ -908,14 +945,14 @@ var hiddenKeys = enumBugKeys$1.concat('length', 'prototype');
908
945
 
909
946
  // `Object.getOwnPropertyNames` method
910
947
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
911
- // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
948
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
912
949
  objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
913
950
  return internalObjectKeys$1(O, hiddenKeys);
914
951
  };
915
952
 
916
953
  var objectGetOwnPropertySymbols = {};
917
954
 
918
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
955
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
919
956
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
920
957
 
921
958
  var getBuiltIn = getBuiltIn$3;
@@ -1039,7 +1076,7 @@ var toStringTagSupport = String(test) === '[object z]';
1039
1076
 
1040
1077
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1041
1078
  var isCallable = isCallable$b;
1042
- var classofRaw = classofRaw$1;
1079
+ var classofRaw = classofRaw$2;
1043
1080
  var wellKnownSymbol = wellKnownSymbol$3;
1044
1081
 
1045
1082
  var TO_STRING_TAG = wellKnownSymbol('toStringTag');
@@ -1152,20 +1189,20 @@ var trim = stringTrim.trim;
1152
1189
  var whitespaces$1 = whitespaces$4;
1153
1190
 
1154
1191
  var charAt = uncurryThis$1(''.charAt);
1155
- var n$ParseFloat = global$1.parseFloat;
1192
+ var $parseFloat$1 = global$1.parseFloat;
1156
1193
  var Symbol$1 = global$1.Symbol;
1157
1194
  var ITERATOR = Symbol$1 && Symbol$1.iterator;
1158
- var FORCED = 1 / n$ParseFloat(whitespaces$1 + '-0') !== -Infinity
1195
+ var FORCED = 1 / $parseFloat$1(whitespaces$1 + '-0') !== -Infinity
1159
1196
  // MS Edge 18- broken with boxed symbols
1160
- || (ITERATOR && !fails$2(function () { n$ParseFloat(Object(ITERATOR)); }));
1197
+ || (ITERATOR && !fails$2(function () { $parseFloat$1(Object(ITERATOR)); }));
1161
1198
 
1162
1199
  // `parseFloat` method
1163
1200
  // https://tc39.es/ecma262/#sec-parsefloat-string
1164
1201
  var numberParseFloat = FORCED ? function parseFloat(string) {
1165
1202
  var trimmedString = trim(toString(string));
1166
- var result = n$ParseFloat(trimmedString);
1203
+ var result = $parseFloat$1(trimmedString);
1167
1204
  return result === 0 && charAt(trimmedString, 0) == '-' ? -0 : result;
1168
- } : n$ParseFloat;
1205
+ } : $parseFloat$1;
1169
1206
 
1170
1207
  var $$2 = _export;
1171
1208
  var $parseFloat = numberParseFloat;
@@ -1347,7 +1384,7 @@ var enumBugKeys = enumBugKeys$2;
1347
1384
 
1348
1385
  // `Object.keys` method
1349
1386
  // https://tc39.es/ecma262/#sec-object.keys
1350
- // eslint-disable-next-line es-x/no-object-keys -- safe
1387
+ // eslint-disable-next-line es/no-object-keys -- safe
1351
1388
  var objectKeys$1 = Object.keys || function keys(O) {
1352
1389
  return internalObjectKeys(O, enumBugKeys);
1353
1390
  };
@@ -1362,9 +1399,9 @@ var propertyIsEnumerableModule = objectPropertyIsEnumerable;
1362
1399
  var toObject = toObject$2;
1363
1400
  var IndexedObject = indexedObject;
1364
1401
 
1365
- // eslint-disable-next-line es-x/no-object-assign -- safe
1402
+ // eslint-disable-next-line es/no-object-assign -- safe
1366
1403
  var $assign = Object.assign;
1367
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
1404
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1368
1405
  var defineProperty = Object.defineProperty;
1369
1406
  var concat = uncurryThis([].concat);
1370
1407
 
@@ -1384,7 +1421,7 @@ var objectAssign = !$assign || fails(function () {
1384
1421
  // should work with symbols and should have deterministic property order (V8 bug)
1385
1422
  var A = {};
1386
1423
  var B = {};
1387
- // eslint-disable-next-line es-x/no-symbol -- safe
1424
+ // eslint-disable-next-line es/no-symbol -- safe
1388
1425
  var symbol = Symbol();
1389
1426
  var alphabet = 'abcdefghijklmnopqrst';
1390
1427
  A[symbol] = 7;
@@ -1414,7 +1451,7 @@ var assign = objectAssign;
1414
1451
 
1415
1452
  // `Object.assign` method
1416
1453
  // https://tc39.es/ecma262/#sec-object.assign
1417
- // eslint-disable-next-line es-x/no-object-assign -- required for testing
1454
+ // eslint-disable-next-line es/no-object-assign -- required for testing
1418
1455
  $({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1419
1456
  assign: assign
1420
1457
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core",
3
- "version": "0.0.67",
3
+ "version": "0.0.69",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "module": "./index.js",
@@ -8,8 +8,8 @@
8
8
  "type": "module",
9
9
  "types": "./index.d.ts",
10
10
  "dependencies": {
11
- "@trackunit/iris-app-runtime-core-api": "0.0.64",
12
- "@trackunit/react-core-contexts-api": "0.0.58"
11
+ "@trackunit/iris-app-runtime-core-api": "0.0.66",
12
+ "@trackunit/react-core-contexts-api": "0.0.60"
13
13
  },
14
14
  "peerDependencies": {}
15
15
  }