@itwin/core-i18n 5.9.0-dev.1 → 5.9.0-dev.11

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.
@@ -21343,6 +21446,69 @@ class UnexpectedErrors {
21343
21446
  }
21344
21447
 
21345
21448
 
21449
+ /***/ }),
21450
+
21451
+ /***/ "../bentley/lib/esm/UtilityFunctions.js":
21452
+ /*!**********************************************!*\
21453
+ !*** ../bentley/lib/esm/UtilityFunctions.js ***!
21454
+ \**********************************************/
21455
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
21456
+
21457
+ "use strict";
21458
+ __webpack_require__.r(__webpack_exports__);
21459
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21460
+ /* harmony export */ wrapTimerCallback: () => (/* binding */ wrapTimerCallback)
21461
+ /* harmony export */ });
21462
+ /*---------------------------------------------------------------------------------------------
21463
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
21464
+ * See LICENSE.md in the project root for license terms and full copyright notice.
21465
+ *--------------------------------------------------------------------------------------------*/
21466
+ /** @packageDocumentation
21467
+ * @module Utils
21468
+ */
21469
+ /**
21470
+ * Wrapper function designed to be used for callbacks called by setInterval or setTimeout in order to propagate any
21471
+ * exceptions thrown in the callback to the main promise chain. It does this by creating a new promise for the callback
21472
+ * invocation and adding it to the timerPromises set. The main promise chain can then await
21473
+ * Promise.all(timerPromises) to catch any exceptions thrown in any of the callbacks. Note that if the callback
21474
+ * completes successfully, the promise is resolved and removed from the set. If it throws an exception, the promise is
21475
+ * rejected but not removed from the set, so that the main promise chain can detect that an error occurred and handle
21476
+ * it appropriately.
21477
+ * @param timerPromises A set of promises representing the currently active timer callbacks.
21478
+ * @param callback The async callback to be executed within the timer.
21479
+ * @beta
21480
+ */
21481
+ async function wrapTimerCallback(timerPromises, callback) {
21482
+ let resolvePromise;
21483
+ let rejectPromise;
21484
+ // The callback of the Promise constructor does not have access to the promise itself, so all we do there is
21485
+ // capture the resolve and reject functions for use in the async callback that would have otherwise been
21486
+ // placed in the setInterval or setTimeout callback.
21487
+ const timerPromise = new Promise((resolve, reject) => {
21488
+ resolvePromise = resolve;
21489
+ rejectPromise = reject;
21490
+ });
21491
+ // Note: when we get here, resolvePromise and rejectPromise will always be defined, but there is no way to
21492
+ // convince TS of that fact without extra unnecessary checks, so we use ?. when accessing them.
21493
+ // Prevent unhandled rejection warnings. The rejection is still observable
21494
+ // when the consumer awaits Promise.all(promises).
21495
+ timerPromise.catch(() => { });
21496
+ timerPromises.add(timerPromise);
21497
+ const cleanupAndResolve = () => {
21498
+ resolvePromise?.();
21499
+ // No need to keep track of this promise anymore since it's resolved.
21500
+ timerPromises.delete(timerPromise);
21501
+ };
21502
+ try {
21503
+ await callback();
21504
+ cleanupAndResolve();
21505
+ }
21506
+ catch (err) {
21507
+ rejectPromise?.(err);
21508
+ }
21509
+ }
21510
+
21511
+
21346
21512
  /***/ }),
21347
21513
 
21348
21514
  /***/ "../bentley/lib/esm/UtilityTypes.js":
@@ -21465,6 +21631,8 @@ __webpack_require__.r(__webpack_exports__);
21465
21631
  /* harmony export */ BeEventList: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
21466
21632
  /* harmony export */ BeTimePoint: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_29__.BeTimePoint),
21467
21633
  /* harmony export */ BeUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
21634
+ /* harmony export */ BeUnorderedEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedEvent),
21635
+ /* harmony export */ BeUnorderedUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUnorderedUiEvent),
21468
21636
  /* harmony export */ BentleyError: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
21469
21637
  /* harmony export */ BentleyLoggerCategory: () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
21470
21638
  /* harmony export */ BentleyStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
@@ -21472,12 +21640,12 @@ __webpack_require__.r(__webpack_exports__);
21472
21640
  /* harmony export */ ByteStream: () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
21473
21641
  /* harmony export */ ChangeSetStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
21474
21642
  /* 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),
21643
+ /* harmony export */ DbChangeStage: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbChangeStage),
21644
+ /* harmony export */ DbConflictCause: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictCause),
21645
+ /* harmony export */ DbConflictResolution: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbConflictResolution),
21478
21646
  /* harmony export */ DbOpcode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
21479
21647
  /* 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),
21648
+ /* harmony export */ DbValueType: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.DbValueType),
21481
21649
  /* harmony export */ Dictionary: () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
21482
21650
  /* harmony export */ DisposableList: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
21483
21651
  /* harmony export */ DuplicatePolicy: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.DuplicatePolicy),
@@ -21511,7 +21679,7 @@ __webpack_require__.r(__webpack_exports__);
21511
21679
  /* harmony export */ ReadonlyOrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_23__.ReadonlyOrderedSet),
21512
21680
  /* harmony export */ ReadonlySortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.ReadonlySortedArray),
21513
21681
  /* 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),
21682
+ /* harmony export */ RepositoryStatus: () => (/* reexport safe */ _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__.RepositoryStatus),
21515
21683
  /* harmony export */ RpcInterfaceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
21516
21684
  /* harmony export */ SortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.SortedArray),
21517
21685
  /* harmony export */ SpanKind: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_30__.SpanKind),
@@ -21527,9 +21695,9 @@ __webpack_require__.r(__webpack_exports__);
21527
21695
  /* harmony export */ Uint8ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.Uint8ArrayBuilder),
21528
21696
  /* harmony export */ UintArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__.UintArrayBuilder),
21529
21697
  /* harmony export */ UnexpectedErrors: () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_33__.UnexpectedErrors),
21530
- /* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_35__.YieldManager),
21698
+ /* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_36__.YieldManager),
21531
21699
  /* harmony export */ areEqualPossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
21532
- /* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.asInstanceOf),
21700
+ /* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.asInstanceOf),
21533
21701
  /* harmony export */ assert: () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
21534
21702
  /* harmony export */ base64StringToUint8Array: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.base64StringToUint8Array),
21535
21703
  /* harmony export */ compareArrays: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareArrays),
@@ -21549,15 +21717,16 @@ __webpack_require__.r(__webpack_exports__);
21549
21717
  /* harmony export */ expectNotNull: () => (/* reexport safe */ _Expect__WEBPACK_IMPORTED_MODULE_13__.expectNotNull),
21550
21718
  /* harmony export */ isDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isDisposable),
21551
21719
  /* harmony export */ isIDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
21552
- /* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.isInstanceOf),
21720
+ /* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.isInstanceOf),
21553
21721
  /* harmony export */ isProperSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
21554
21722
  /* harmony export */ isSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
21555
21723
  /* harmony export */ lowerBound: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.lowerBound),
21556
- /* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.omit),
21724
+ /* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__.omit),
21557
21725
  /* harmony export */ partitionArray: () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_24__.partitionArray),
21558
21726
  /* harmony export */ shallowClone: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_27__.shallowClone),
21559
21727
  /* harmony export */ using: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
21560
- /* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString)
21728
+ /* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_28__.utf8ToString),
21729
+ /* harmony export */ wrapTimerCallback: () => (/* reexport safe */ _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__.wrapTimerCallback)
21561
21730
  /* harmony export */ });
21562
21731
  /* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../bentley/lib/esm/AccessToken.js");
21563
21732
  /* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
@@ -21593,9 +21762,10 @@ __webpack_require__.r(__webpack_exports__);
21593
21762
  /* harmony import */ var _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./TupleKeyedMap */ "../bentley/lib/esm/TupleKeyedMap.js");
21594
21763
  /* harmony import */ var _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./TypedArrayBuilder */ "../bentley/lib/esm/TypedArrayBuilder.js");
21595
21764
  /* 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");
21765
+ /* harmony import */ var _UtilityFunctions__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./UtilityFunctions */ "../bentley/lib/esm/UtilityFunctions.js");
21766
+ /* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./UtilityTypes */ "../bentley/lib/esm/UtilityTypes.js");
21767
+ /* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./YieldManager */ "../bentley/lib/esm/YieldManager.js");
21768
+ /* harmony import */ var _internal_cross_package__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./internal/cross-package */ "../bentley/lib/esm/internal/cross-package.js");
21599
21769
  /*---------------------------------------------------------------------------------------------
21600
21770
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
21601
21771
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -21634,6 +21804,7 @@ __webpack_require__.r(__webpack_exports__);
21634
21804
 
21635
21805
 
21636
21806
 
21807
+
21637
21808
 
21638
21809
 
21639
21810
  // Temporarily (until 5.0) export top-level internal APIs to avoid breaking callers.