@itwin/core-i18n 5.9.0-dev.8 → 5.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14933,7 +14933,9 @@ __webpack_require__.r(__webpack_exports__);
14933
14933
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
14934
14934
  /* harmony export */ BeEvent: () => (/* binding */ BeEvent),
14935
14935
  /* harmony export */ BeEventList: () => (/* binding */ BeEventList),
14936
- /* harmony export */ BeUiEvent: () => (/* binding */ BeUiEvent)
14936
+ /* harmony export */ BeUiEvent: () => (/* binding */ BeUiEvent),
14937
+ /* harmony export */ BeUnorderedEvent: () => (/* binding */ BeUnorderedEvent),
14938
+ /* harmony export */ BeUnorderedUiEvent: () => (/* binding */ BeUnorderedUiEvent)
14937
14939
  /* harmony export */ });
14938
14940
  /* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UnexpectedErrors */ "../bentley/lib/esm/UnexpectedErrors.js");
14939
14941
  /*---------------------------------------------------------------------------------------------
@@ -14952,7 +14954,7 @@ __webpack_require__.r(__webpack_exports__);
14952
14954
  */
14953
14955
  class BeEvent {
14954
14956
  _listeners = [];
14955
- _insideRaiseEvent = false;
14957
+ _emitDepth = 0;
14956
14958
  /** The number of listeners currently subscribed to the event. */
14957
14959
  get numberOfListeners() { return this._listeners.length; }
14958
14960
  /**
@@ -14989,7 +14991,7 @@ class BeEvent {
14989
14991
  for (let i = 0; i < listeners.length; ++i) {
14990
14992
  const context = listeners[i];
14991
14993
  if (context.listener === listener && context.scope === scope) {
14992
- if (this._insideRaiseEvent) {
14994
+ if (this._emitDepth > 0) {
14993
14995
  context.listener = undefined;
14994
14996
  }
14995
14997
  else {
@@ -15006,7 +15008,7 @@ class BeEvent {
15006
15008
  * @see [[BeEvent.removeListener]], [[BeEvent.addListener]]
15007
15009
  */
15008
15010
  raiseEvent(...args) {
15009
- this._insideRaiseEvent = true;
15011
+ this._emitDepth++;
15010
15012
  const listeners = this._listeners;
15011
15013
  const length = listeners.length;
15012
15014
  let dropped = false;
@@ -15022,16 +15024,21 @@ class BeEvent {
15022
15024
  catch (e) {
15023
15025
  _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__.UnexpectedErrors.handle(e);
15024
15026
  }
15025
- if (context.once) {
15027
+ if (!context.listener) {
15028
+ // listener was removed during its own callback
15029
+ dropped = true;
15030
+ }
15031
+ else if (context.once) {
15026
15032
  context.listener = undefined;
15027
15033
  dropped = true;
15028
15034
  }
15029
15035
  }
15030
15036
  }
15031
- // if we had dropped listeners, remove them now
15032
- if (dropped)
15037
+ this._emitDepth--;
15038
+ // Only sweep tombstoned entries when the outermost emit completes,
15039
+ // so nested raiseEvent calls never mutate the array mid-iteration.
15040
+ if (dropped && this._emitDepth === 0)
15033
15041
  this._listeners = this._listeners.filter((ctx) => ctx.listener !== undefined);
15034
- this._insideRaiseEvent = false;
15035
15042
  }
15036
15043
  /** Determine whether this BeEvent has a specified listener registered.
15037
15044
  * @param listener The listener to check.
@@ -15055,6 +15062,102 @@ class BeUiEvent extends BeEvent {
15055
15062
  /** Raises event with single strongly typed argument. */
15056
15063
  emit(args) { this.raiseEvent(args); }
15057
15064
  }
15065
+ /**
15066
+ * Manages a set of *listeners* for a particular event and notifies them when the event is raised.
15067
+ * Unlike [[BeEvent]], this class uses a `Set` internally to support safe concurrent modification
15068
+ * during emit. When a listener is removed during emit, it is marked for deferred removal instead
15069
+ * of mutating the set immediately.
15070
+ *
15071
+ * Listeners are managed exclusively through the disposal closure returned by [[addListener]] and
15072
+ * [[addOnce]]. There is no `removeListener` or `has` method — callers must capture the returned
15073
+ * closure to unsubscribe.
15074
+ * @beta
15075
+ */
15076
+ class BeUnorderedEvent {
15077
+ _listeners = new Set();
15078
+ _emitDepth = 0;
15079
+ _hasTombstones = false;
15080
+ /** The number of listeners currently subscribed to the event.
15081
+ * @note During `raiseEvent()`, this may include listeners that have been removed or are one-shot
15082
+ * but are awaiting deferred cleanup. The count is accurate outside of `raiseEvent()`.
15083
+ */
15084
+ get numberOfListeners() { return this._listeners.size; }
15085
+ /**
15086
+ * Registers a Listener to be executed whenever this event is raised.
15087
+ * @param listener The function to be executed when the event is raised.
15088
+ * @param scope An optional object scope to serve as the 'this' pointer when listener is invoked.
15089
+ * @returns A function that will remove this event listener in O(1).
15090
+ */
15091
+ addListener(listener, scope) {
15092
+ const ctx = { listener, scope, once: false };
15093
+ this._listeners.add(ctx);
15094
+ return () => this._removeCtx(ctx);
15095
+ }
15096
+ /**
15097
+ * Registers a callback function to be executed *only once* when the event is raised.
15098
+ * @param listener The function to be executed once when the event is raised.
15099
+ * @param scope An optional object scope to serve as the `this` pointer in which the listener function will execute.
15100
+ * @returns A function that will remove this event listener in O(1).
15101
+ */
15102
+ addOnce(listener, scope) {
15103
+ const ctx = { listener, scope, once: true };
15104
+ this._listeners.add(ctx);
15105
+ return () => this._removeCtx(ctx);
15106
+ }
15107
+ /** Remove a specific context entry, deferring during emit. */
15108
+ _removeCtx(ctx) {
15109
+ if (this._emitDepth > 0) {
15110
+ ctx.listener = undefined; // tombstone for deferred cleanup
15111
+ this._hasTombstones = true;
15112
+ }
15113
+ else {
15114
+ this._listeners.delete(ctx);
15115
+ }
15116
+ }
15117
+ /**
15118
+ * Raises the event by calling each registered listener with the supplied arguments.
15119
+ * @param args This method takes any number of parameters and passes them through to the listeners.
15120
+ */
15121
+ raiseEvent(...args) {
15122
+ this._emitDepth++;
15123
+ for (const ctx of this._listeners) {
15124
+ if (!ctx.listener) {
15125
+ continue;
15126
+ }
15127
+ try {
15128
+ ctx.listener.apply(ctx.scope, args);
15129
+ }
15130
+ catch (e) {
15131
+ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__.UnexpectedErrors.handle(e);
15132
+ }
15133
+ if (ctx.listener && ctx.once) {
15134
+ ctx.listener = undefined;
15135
+ this._hasTombstones = true;
15136
+ }
15137
+ }
15138
+ this._emitDepth--;
15139
+ // Only clean up tombstoned entries when we're back at the outermost emit
15140
+ if (this._hasTombstones && this._emitDepth === 0) {
15141
+ this._hasTombstones = false;
15142
+ for (const ctx of this._listeners) {
15143
+ if (ctx.listener === undefined)
15144
+ this._listeners.delete(ctx);
15145
+ }
15146
+ }
15147
+ }
15148
+ /** Clear all listeners from this BeUnorderedEvent.
15149
+ * @note If called during `raiseEvent`, remaining listeners in the current iteration are skipped
15150
+ * immediately rather than being tombstoned.
15151
+ */
15152
+ clear() { this._listeners.clear(); }
15153
+ }
15154
+ /** Specialization of BeUnorderedEvent for events that take a single strongly typed argument, primarily used for UI events.
15155
+ * @beta
15156
+ */
15157
+ class BeUnorderedUiEvent extends BeUnorderedEvent {
15158
+ /** Raises event with single strongly typed argument. */
15159
+ emit(args) { this.raiseEvent(args); }
15160
+ }
15058
15161
  /**
15059
15162
  * A list of BeEvent objects, accessible by an event name.
15060
15163
  * This class may be used instead of explicitly declaring each BeEvent as a member of a containing class.
@@ -17585,9 +17688,7 @@ var Id64;
17585
17688
  * ```
17586
17689
  */
17587
17690
  function iterable(ids) {
17588
- return {
17589
- [Symbol.iterator]: () => iterator(ids),
17590
- };
17691
+ return typeof ids === "string" ? [ids] : ids;
17591
17692
  }
17592
17693
  Id64.iterable = iterable;
17593
17694
  /** Return the first [[Id64String]] of an [[Id64Arg]]. */
@@ -21343,6 +21444,69 @@ class UnexpectedErrors {
21343
21444
  }
21344
21445
 
21345
21446
 
21447
+ /***/ }),
21448
+
21449
+ /***/ "../bentley/lib/esm/UtilityFunctions.js":
21450
+ /*!**********************************************!*\
21451
+ !*** ../bentley/lib/esm/UtilityFunctions.js ***!
21452
+ \**********************************************/
21453
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
21454
+
21455
+ "use strict";
21456
+ __webpack_require__.r(__webpack_exports__);
21457
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21458
+ /* harmony export */ wrapTimerCallback: () => (/* binding */ wrapTimerCallback)
21459
+ /* harmony export */ });
21460
+ /*---------------------------------------------------------------------------------------------
21461
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
21462
+ * See LICENSE.md in the project root for license terms and full copyright notice.
21463
+ *--------------------------------------------------------------------------------------------*/
21464
+ /** @packageDocumentation
21465
+ * @module Utils
21466
+ */
21467
+ /**
21468
+ * Wrapper function designed to be used for callbacks called by setInterval or setTimeout in order to propagate any
21469
+ * exceptions thrown in the callback to the main promise chain. It does this by creating a new promise for the callback
21470
+ * invocation and adding it to the timerPromises set. The main promise chain can then await
21471
+ * Promise.all(timerPromises) to catch any exceptions thrown in any of the callbacks. Note that if the callback
21472
+ * completes successfully, the promise is resolved and removed from the set. If it throws an exception, the promise is
21473
+ * rejected but not removed from the set, so that the main promise chain can detect that an error occurred and handle
21474
+ * it appropriately.
21475
+ * @param timerPromises A set of promises representing the currently active timer callbacks.
21476
+ * @param callback The async callback to be executed within the timer.
21477
+ * @beta
21478
+ */
21479
+ async function wrapTimerCallback(timerPromises, callback) {
21480
+ let resolvePromise;
21481
+ let rejectPromise;
21482
+ // The callback of the Promise constructor does not have access to the promise itself, so all we do there is
21483
+ // capture the resolve and reject functions for use in the async callback that would have otherwise been
21484
+ // placed in the setInterval or setTimeout callback.
21485
+ const timerPromise = new Promise((resolve, reject) => {
21486
+ resolvePromise = resolve;
21487
+ rejectPromise = reject;
21488
+ });
21489
+ // Note: when we get here, resolvePromise and rejectPromise will always be defined, but there is no way to
21490
+ // convince TS of that fact without extra unnecessary checks, so we use ?. when accessing them.
21491
+ // Prevent unhandled rejection warnings. The rejection is still observable
21492
+ // when the consumer awaits Promise.all(promises).
21493
+ timerPromise.catch(() => { });
21494
+ timerPromises.add(timerPromise);
21495
+ const cleanupAndResolve = () => {
21496
+ resolvePromise?.();
21497
+ // No need to keep track of this promise anymore since it's resolved.
21498
+ timerPromises.delete(timerPromise);
21499
+ };
21500
+ try {
21501
+ await callback();
21502
+ cleanupAndResolve();
21503
+ }
21504
+ catch (err) {
21505
+ rejectPromise?.(err);
21506
+ }
21507
+ }
21508
+
21509
+
21346
21510
  /***/ }),
21347
21511
 
21348
21512
  /***/ "../bentley/lib/esm/UtilityTypes.js":
@@ -21465,6 +21629,8 @@ __webpack_require__.r(__webpack_exports__);
21465
21629
  /* harmony export */ BeEventList: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
21466
21630
  /* harmony export */ BeTimePoint: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_29__.BeTimePoint),
21467
21631
  /* harmony export */ BeUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
21632
+ /* harmony export */ BeUnorderedEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedEvent),
21633
+ /* harmony export */ BeUnorderedUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedUiEvent),
21468
21634
  /* harmony export */ BentleyError: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
21469
21635
  /* harmony export */ BentleyLoggerCategory: () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
21470
21636
  /* harmony export */ BentleyStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
@@ -21472,12 +21638,12 @@ __webpack_require__.r(__webpack_exports__);
21472
21638
  /* harmony export */ ByteStream: () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
21473
21639
  /* harmony export */ ChangeSetStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
21474
21640
  /* harmony export */ CompressedId64Set: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
21475
- /* harmony export */ DbChangeStage: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.DbChangeStage),
21476
- /* harmony export */ DbConflictCause: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.DbConflictCause),
21477
- /* harmony export */ DbConflictResolution: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.DbConflictResolution),
21641
+ /* harmony export */ DbChangeStage: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbChangeStage),
21642
+ /* harmony export */ DbConflictCause: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictCause),
21643
+ /* harmony export */ DbConflictResolution: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictResolution),
21478
21644
  /* harmony export */ DbOpcode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
21479
21645
  /* harmony export */ DbResult: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
21480
- /* harmony export */ DbValueType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.DbValueType),
21646
+ /* harmony export */ DbValueType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbValueType),
21481
21647
  /* harmony export */ Dictionary: () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
21482
21648
  /* harmony export */ DisposableList: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
21483
21649
  /* harmony export */ DuplicatePolicy: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.DuplicatePolicy),
@@ -21511,7 +21677,7 @@ __webpack_require__.r(__webpack_exports__);
21511
21677
  /* harmony export */ ReadonlyOrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_23__.ReadonlyOrderedSet),
21512
21678
  /* harmony export */ ReadonlySortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.ReadonlySortedArray),
21513
21679
  /* harmony export */ RealityDataStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
21514
- /* harmony export */ RepositoryStatus: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__.RepositoryStatus),
21680
+ /* harmony export */ RepositoryStatus: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.RepositoryStatus),
21515
21681
  /* harmony export */ RpcInterfaceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
21516
21682
  /* harmony export */ SortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.SortedArray),
21517
21683
  /* harmony export */ SpanKind: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_30__.SpanKind),
@@ -21527,9 +21693,9 @@ __webpack_require__.r(__webpack_exports__);
21527
21693
  /* harmony export */ Uint8ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.Uint8ArrayBuilder),
21528
21694
  /* harmony export */ UintArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.UintArrayBuilder),
21529
21695
  /* harmony export */ UnexpectedErrors: () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_33__.UnexpectedErrors),
21530
- /* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_35__.YieldManager),
21696
+ /* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_36__.YieldManager),
21531
21697
  /* harmony export */ areEqualPossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
21532
- /* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.asInstanceOf),
21698
+ /* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.asInstanceOf),
21533
21699
  /* harmony export */ assert: () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
21534
21700
  /* harmony export */ base64StringToUint8Array: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.base64StringToUint8Array),
21535
21701
  /* harmony export */ compareArrays: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareArrays),
@@ -21549,15 +21715,16 @@ __webpack_require__.r(__webpack_exports__);
21549
21715
  /* harmony export */ expectNotNull: () => (/* reexport safe */ _Expect__WEBPACK_IMPORTED_MODULE_13__.expectNotNull),
21550
21716
  /* harmony export */ isDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isDisposable),
21551
21717
  /* harmony export */ isIDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
21552
- /* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.isInstanceOf),
21718
+ /* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.isInstanceOf),
21553
21719
  /* harmony export */ isProperSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
21554
21720
  /* harmony export */ isSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
21555
21721
  /* harmony export */ lowerBound: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.lowerBound),
21556
- /* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.omit),
21722
+ /* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.omit),
21557
21723
  /* harmony export */ partitionArray: () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_24__.partitionArray),
21558
21724
  /* harmony export */ shallowClone: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.shallowClone),
21559
21725
  /* harmony export */ using: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
21560
- /* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString)
21726
+ /* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString),
21727
+ /* harmony export */ wrapTimerCallback: () => (/* reexport safe */ _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__.wrapTimerCallback)
21561
21728
  /* harmony export */ });
21562
21729
  /* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../bentley/lib/esm/AccessToken.js");
21563
21730
  /* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
@@ -21593,9 +21760,10 @@ __webpack_require__.r(__webpack_exports__);
21593
21760
  /* harmony import */ var _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./TupleKeyedMap */ "../bentley/lib/esm/TupleKeyedMap.js");
21594
21761
  /* harmony import */ var _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./TypedArrayBuilder */ "../bentley/lib/esm/TypedArrayBuilder.js");
21595
21762
  /* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./UnexpectedErrors */ "../bentley/lib/esm/UnexpectedErrors.js");
21596
- /* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./UtilityTypes */ "../bentley/lib/esm/UtilityTypes.js");
21597
- /* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./YieldManager */ "../bentley/lib/esm/YieldManager.js");
21598
- /* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./internal/cross-package */ "../bentley/lib/esm/internal/cross-package.js");
21763
+ /* harmony import */ var _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./UtilityFunctions */ "../bentley/lib/esm/UtilityFunctions.js");
21764
+ /* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./UtilityTypes */ "../bentley/lib/esm/UtilityTypes.js");
21765
+ /* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./YieldManager */ "../bentley/lib/esm/YieldManager.js");
21766
+ /* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./internal/cross-package */ "../bentley/lib/esm/internal/cross-package.js");
21599
21767
  /*---------------------------------------------------------------------------------------------
21600
21768
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
21601
21769
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -21634,6 +21802,7 @@ __webpack_require__.r(__webpack_exports__);
21634
21802
 
21635
21803
 
21636
21804
 
21805
+
21637
21806
 
21638
21807
 
21639
21808
  // Temporarily (until 5.0) export top-level internal APIs to avoid breaking callers.