@itwin/core-i18n 3.6.0-dev.41 → 3.6.0-dev.44
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/CHANGELOG.md +6 -1
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js +121 -178
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js.map +1 -1
- package/lib/cjs/test/webpack/bundled-tests.js +121 -178
- package/lib/cjs/test/webpack/bundled-tests.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# Change Log - @itwin/core-i18n
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 11 Jan 2023 16:46:30 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 3.5.2
|
|
6
|
+
Wed, 11 Jan 2023 16:46:30 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
4
9
|
|
|
5
10
|
## 3.5.1
|
|
6
11
|
Thu, 15 Dec 2022 16:38:28 GMT
|
|
@@ -19262,60 +19262,6 @@ function assert(condition, message) {
|
|
|
19262
19262
|
}
|
|
19263
19263
|
|
|
19264
19264
|
|
|
19265
|
-
/***/ }),
|
|
19266
|
-
|
|
19267
|
-
/***/ "../bentley/lib/esm/AsyncMutex.js":
|
|
19268
|
-
/*!****************************************!*\
|
|
19269
|
-
!*** ../bentley/lib/esm/AsyncMutex.js ***!
|
|
19270
|
-
\****************************************/
|
|
19271
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
19272
|
-
|
|
19273
|
-
"use strict";
|
|
19274
|
-
__webpack_require__.r(__webpack_exports__);
|
|
19275
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19276
|
-
/* harmony export */ "AsyncMutex": () => (/* binding */ AsyncMutex)
|
|
19277
|
-
/* harmony export */ });
|
|
19278
|
-
/*---------------------------------------------------------------------------------------------
|
|
19279
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
19280
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
19281
|
-
*--------------------------------------------------------------------------------------------*/
|
|
19282
|
-
/** @packageDocumentation
|
|
19283
|
-
* @module Utils
|
|
19284
|
-
*/
|
|
19285
|
-
/**
|
|
19286
|
-
* Utility to ensure a block of async code executes atomically.
|
|
19287
|
-
* Even if JavaScript precludes the possibility of race conditions between threads, there is potential for
|
|
19288
|
-
* race conditions with async code. This utility is needed in cases where a block of async code needs to run
|
|
19289
|
-
* to completion before another block is started.
|
|
19290
|
-
* This utility was based on this article: https://spin.atomicobject.com/2018/09/10/javascript-concurrency/
|
|
19291
|
-
* @alpha
|
|
19292
|
-
*/
|
|
19293
|
-
class AsyncMutex {
|
|
19294
|
-
constructor() {
|
|
19295
|
-
this._mutex = Promise.resolve();
|
|
19296
|
-
}
|
|
19297
|
-
/**
|
|
19298
|
-
* Await the return value to setup a lock. The return value
|
|
19299
|
-
* is also the unlock function that can be called to unlock
|
|
19300
|
-
* the mutex.
|
|
19301
|
-
*/
|
|
19302
|
-
async lock() {
|
|
19303
|
-
/**
|
|
19304
|
-
* Note: The promise returned by this method will resolve (with the unlock function, which is actually the
|
|
19305
|
-
* mutex’s then’s resolve function) once any previous mutexes have finished and called their
|
|
19306
|
-
* respective unlock function that was yielded over their promise.
|
|
19307
|
-
*/
|
|
19308
|
-
let begin = (_unlock) => { };
|
|
19309
|
-
this._mutex = this._mutex.then(async () => {
|
|
19310
|
-
return new Promise(begin);
|
|
19311
|
-
});
|
|
19312
|
-
return new Promise((res) => {
|
|
19313
|
-
begin = res;
|
|
19314
|
-
});
|
|
19315
|
-
}
|
|
19316
|
-
}
|
|
19317
|
-
|
|
19318
|
-
|
|
19319
19265
|
/***/ }),
|
|
19320
19266
|
|
|
19321
19267
|
/***/ "../bentley/lib/esm/BeEvent.js":
|
|
@@ -25574,133 +25520,131 @@ class YieldManager {
|
|
|
25574
25520
|
"use strict";
|
|
25575
25521
|
__webpack_require__.r(__webpack_exports__);
|
|
25576
25522
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
25577
|
-
/* harmony export */ "AbandonedError": () => (/* reexport safe */
|
|
25578
|
-
/* harmony export */ "
|
|
25579
|
-
/* harmony export */ "
|
|
25580
|
-
/* harmony export */ "
|
|
25581
|
-
/* harmony export */ "
|
|
25582
|
-
/* harmony export */ "
|
|
25583
|
-
/* harmony export */ "
|
|
25584
|
-
/* harmony export */ "
|
|
25585
|
-
/* harmony export */ "
|
|
25586
|
-
/* harmony export */ "
|
|
25587
|
-
/* harmony export */ "
|
|
25588
|
-
/* harmony export */ "
|
|
25589
|
-
/* harmony export */ "
|
|
25590
|
-
/* harmony export */ "
|
|
25591
|
-
/* harmony export */ "
|
|
25592
|
-
/* harmony export */ "
|
|
25593
|
-
/* harmony export */ "
|
|
25594
|
-
/* harmony export */ "
|
|
25595
|
-
/* harmony export */ "
|
|
25596
|
-
/* harmony export */ "
|
|
25597
|
-
/* harmony export */ "
|
|
25598
|
-
/* harmony export */ "
|
|
25599
|
-
/* harmony export */ "
|
|
25600
|
-
/* harmony export */ "
|
|
25601
|
-
/* harmony export */ "
|
|
25602
|
-
/* harmony export */ "
|
|
25603
|
-
/* harmony export */ "
|
|
25604
|
-
/* harmony export */ "
|
|
25605
|
-
/* harmony export */ "
|
|
25606
|
-
/* harmony export */ "
|
|
25607
|
-
/* harmony export */ "
|
|
25608
|
-
/* harmony export */ "
|
|
25609
|
-
/* harmony export */ "
|
|
25610
|
-
/* harmony export */ "
|
|
25611
|
-
/* harmony export */ "
|
|
25612
|
-
/* harmony export */ "
|
|
25613
|
-
/* harmony export */ "
|
|
25614
|
-
/* harmony export */ "
|
|
25615
|
-
/* harmony export */ "
|
|
25616
|
-
/* harmony export */ "
|
|
25617
|
-
/* harmony export */ "
|
|
25618
|
-
/* harmony export */ "
|
|
25619
|
-
/* harmony export */ "
|
|
25620
|
-
/* harmony export */ "
|
|
25621
|
-
/* harmony export */ "
|
|
25622
|
-
/* harmony export */ "
|
|
25623
|
-
/* harmony export */ "
|
|
25624
|
-
/* harmony export */ "
|
|
25625
|
-
/* harmony export */ "
|
|
25626
|
-
/* harmony export */ "
|
|
25627
|
-
/* harmony export */ "
|
|
25628
|
-
/* harmony export */ "
|
|
25629
|
-
/* harmony export */ "
|
|
25630
|
-
/* harmony export */ "
|
|
25631
|
-
/* harmony export */ "
|
|
25632
|
-
/* harmony export */ "
|
|
25633
|
-
/* harmony export */ "
|
|
25634
|
-
/* harmony export */ "
|
|
25635
|
-
/* harmony export */ "
|
|
25636
|
-
/* harmony export */ "
|
|
25637
|
-
/* harmony export */ "
|
|
25638
|
-
/* harmony export */ "
|
|
25639
|
-
/* harmony export */ "
|
|
25640
|
-
/* harmony export */ "
|
|
25641
|
-
/* harmony export */ "
|
|
25642
|
-
/* harmony export */ "
|
|
25643
|
-
/* harmony export */ "asInstanceOf": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_34__.asInstanceOf),
|
|
25523
|
+
/* harmony export */ "AbandonedError": () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.AbandonedError),
|
|
25524
|
+
/* harmony export */ "BeDuration": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeDuration),
|
|
25525
|
+
/* harmony export */ "BeEvent": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEvent),
|
|
25526
|
+
/* harmony export */ "BeEventList": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
|
|
25527
|
+
/* harmony export */ "BeTimePoint": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeTimePoint),
|
|
25528
|
+
/* harmony export */ "BeUiEvent": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
|
|
25529
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
|
|
25530
|
+
/* harmony export */ "BentleyLoggerCategory": () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
|
|
25531
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
|
|
25532
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BriefcaseStatus),
|
|
25533
|
+
/* harmony export */ "ByteStream": () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
|
|
25534
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
|
|
25535
|
+
/* harmony export */ "CompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
|
|
25536
|
+
/* harmony export */ "DbOpcode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
|
|
25537
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
|
|
25538
|
+
/* harmony export */ "Dictionary": () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
|
|
25539
|
+
/* harmony export */ "DisposableList": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
|
|
25540
|
+
/* harmony export */ "DuplicatePolicy": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.DuplicatePolicy),
|
|
25541
|
+
/* harmony export */ "Entry": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.Entry),
|
|
25542
|
+
/* harmony export */ "ErrorCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.ErrorCategory),
|
|
25543
|
+
/* harmony export */ "GeoServiceStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.GeoServiceStatus),
|
|
25544
|
+
/* harmony export */ "Guid": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Guid),
|
|
25545
|
+
/* harmony export */ "HttpStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.HttpStatus),
|
|
25546
|
+
/* harmony export */ "IModelHubStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelHubStatus),
|
|
25547
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelStatus),
|
|
25548
|
+
/* harmony export */ "Id64": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Id64),
|
|
25549
|
+
/* harmony export */ "IndexMap": () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexMap),
|
|
25550
|
+
/* harmony export */ "IndexedValue": () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexedValue),
|
|
25551
|
+
/* harmony export */ "JsonUtils": () => (/* reexport safe */ _JsonUtils__WEBPACK_IMPORTED_MODULE_16__.JsonUtils),
|
|
25552
|
+
/* harmony export */ "LRUCache": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUCache),
|
|
25553
|
+
/* harmony export */ "LRUDictionary": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUDictionary),
|
|
25554
|
+
/* harmony export */ "LRUMap": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUMap),
|
|
25555
|
+
/* harmony export */ "LogLevel": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.LogLevel),
|
|
25556
|
+
/* harmony export */ "Logger": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.Logger),
|
|
25557
|
+
/* harmony export */ "MutableCompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.MutableCompressedId64Set),
|
|
25558
|
+
/* harmony export */ "ObservableSet": () => (/* reexport safe */ _ObservableSet__WEBPACK_IMPORTED_MODULE_19__.ObservableSet),
|
|
25559
|
+
/* harmony export */ "OneAtATimeAction": () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.OneAtATimeAction),
|
|
25560
|
+
/* harmony export */ "OpenMode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.OpenMode),
|
|
25561
|
+
/* harmony export */ "OrderedId64Array": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.OrderedId64Array),
|
|
25562
|
+
/* harmony export */ "OrderedId64Iterable": () => (/* reexport safe */ _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_21__.OrderedId64Iterable),
|
|
25563
|
+
/* harmony export */ "OrderedSet": () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.OrderedSet),
|
|
25564
|
+
/* harmony export */ "PerfLogger": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.PerfLogger),
|
|
25565
|
+
/* harmony export */ "PriorityQueue": () => (/* reexport safe */ _PriorityQueue__WEBPACK_IMPORTED_MODULE_24__.PriorityQueue),
|
|
25566
|
+
/* harmony export */ "ProcessDetector": () => (/* reexport safe */ _ProcessDetector__WEBPACK_IMPORTED_MODULE_25__.ProcessDetector),
|
|
25567
|
+
/* harmony export */ "ReadonlyOrderedSet": () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.ReadonlyOrderedSet),
|
|
25568
|
+
/* harmony export */ "ReadonlySortedArray": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.ReadonlySortedArray),
|
|
25569
|
+
/* harmony export */ "RealityDataStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
|
|
25570
|
+
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RepositoryStatus),
|
|
25571
|
+
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
|
|
25572
|
+
/* harmony export */ "SortedArray": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.SortedArray),
|
|
25573
|
+
/* harmony export */ "SpanKind": () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.SpanKind),
|
|
25574
|
+
/* harmony export */ "StatusCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.StatusCategory),
|
|
25575
|
+
/* harmony export */ "StopWatch": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.StopWatch),
|
|
25576
|
+
/* harmony export */ "SuccessCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.SuccessCategory),
|
|
25577
|
+
/* harmony export */ "Tracing": () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.Tracing),
|
|
25578
|
+
/* harmony export */ "TransientIdSequence": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.TransientIdSequence),
|
|
25579
|
+
/* harmony export */ "TupleKeyedMap": () => (/* reexport safe */ _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_30__.TupleKeyedMap),
|
|
25580
|
+
/* harmony export */ "TypedArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.TypedArrayBuilder),
|
|
25581
|
+
/* harmony export */ "Uint16ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint16ArrayBuilder),
|
|
25582
|
+
/* harmony export */ "Uint32ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint32ArrayBuilder),
|
|
25583
|
+
/* harmony export */ "Uint8ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint8ArrayBuilder),
|
|
25584
|
+
/* harmony export */ "UintArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.UintArrayBuilder),
|
|
25585
|
+
/* harmony export */ "UnexpectedErrors": () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_32__.UnexpectedErrors),
|
|
25586
|
+
/* harmony export */ "YieldManager": () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_34__.YieldManager),
|
|
25587
|
+
/* harmony export */ "areEqualPossiblyUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
|
|
25588
|
+
/* harmony export */ "asInstanceOf": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.asInstanceOf),
|
|
25644
25589
|
/* harmony export */ "assert": () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
|
|
25645
|
-
/* harmony export */ "base64StringToUint8Array": () => (/* reexport safe */
|
|
25646
|
-
/* harmony export */ "compareBooleans": () => (/* reexport safe */
|
|
25647
|
-
/* harmony export */ "compareBooleansOrUndefined": () => (/* reexport safe */
|
|
25648
|
-
/* harmony export */ "compareNumbers": () => (/* reexport safe */
|
|
25649
|
-
/* harmony export */ "compareNumbersOrUndefined": () => (/* reexport safe */
|
|
25650
|
-
/* harmony export */ "comparePossiblyUndefined": () => (/* reexport safe */
|
|
25651
|
-
/* harmony export */ "compareStrings": () => (/* reexport safe */
|
|
25652
|
-
/* harmony export */ "compareStringsOrUndefined": () => (/* reexport safe */
|
|
25653
|
-
/* harmony export */ "compareWithTolerance": () => (/* reexport safe */
|
|
25654
|
-
/* harmony export */ "dispose": () => (/* reexport safe */
|
|
25655
|
-
/* harmony export */ "disposeArray": () => (/* reexport safe */
|
|
25656
|
-
/* harmony export */ "isIDisposable": () => (/* reexport safe */
|
|
25657
|
-
/* harmony export */ "isInstanceOf": () => (/* reexport safe */
|
|
25658
|
-
/* harmony export */ "isProperSubclassOf": () => (/* reexport safe */
|
|
25659
|
-
/* harmony export */ "isSubclassOf": () => (/* reexport safe */
|
|
25660
|
-
/* harmony export */ "lowerBound": () => (/* reexport safe */
|
|
25661
|
-
/* harmony export */ "omit": () => (/* reexport safe */
|
|
25662
|
-
/* harmony export */ "partitionArray": () => (/* reexport safe */
|
|
25663
|
-
/* harmony export */ "shallowClone": () => (/* reexport safe */
|
|
25664
|
-
/* harmony export */ "using": () => (/* reexport safe */
|
|
25665
|
-
/* harmony export */ "utf8ToString": () => (/* reexport safe */
|
|
25666
|
-
/* harmony export */ "utf8ToStringPolyfill": () => (/* reexport safe */
|
|
25590
|
+
/* harmony export */ "base64StringToUint8Array": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.base64StringToUint8Array),
|
|
25591
|
+
/* harmony export */ "compareBooleans": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleans),
|
|
25592
|
+
/* harmony export */ "compareBooleansOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleansOrUndefined),
|
|
25593
|
+
/* harmony export */ "compareNumbers": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbers),
|
|
25594
|
+
/* harmony export */ "compareNumbersOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbersOrUndefined),
|
|
25595
|
+
/* harmony export */ "comparePossiblyUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.comparePossiblyUndefined),
|
|
25596
|
+
/* harmony export */ "compareStrings": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStrings),
|
|
25597
|
+
/* harmony export */ "compareStringsOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStringsOrUndefined),
|
|
25598
|
+
/* harmony export */ "compareWithTolerance": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareWithTolerance),
|
|
25599
|
+
/* harmony export */ "dispose": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.dispose),
|
|
25600
|
+
/* harmony export */ "disposeArray": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.disposeArray),
|
|
25601
|
+
/* harmony export */ "isIDisposable": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
|
|
25602
|
+
/* harmony export */ "isInstanceOf": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.isInstanceOf),
|
|
25603
|
+
/* harmony export */ "isProperSubclassOf": () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
|
|
25604
|
+
/* harmony export */ "isSubclassOf": () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
|
|
25605
|
+
/* harmony export */ "lowerBound": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.lowerBound),
|
|
25606
|
+
/* harmony export */ "omit": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.omit),
|
|
25607
|
+
/* harmony export */ "partitionArray": () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_23__.partitionArray),
|
|
25608
|
+
/* harmony export */ "shallowClone": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.shallowClone),
|
|
25609
|
+
/* harmony export */ "using": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
|
|
25610
|
+
/* harmony export */ "utf8ToString": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToString),
|
|
25611
|
+
/* harmony export */ "utf8ToStringPolyfill": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToStringPolyfill)
|
|
25667
25612
|
/* harmony export */ });
|
|
25668
25613
|
/* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../bentley/lib/esm/AccessToken.js");
|
|
25669
25614
|
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
|
|
25670
|
-
/* harmony import */ var
|
|
25671
|
-
/* harmony import */ var
|
|
25672
|
-
/* harmony import */ var
|
|
25673
|
-
/* harmony import */ var
|
|
25674
|
-
/* harmony import */ var
|
|
25675
|
-
/* harmony import */ var
|
|
25676
|
-
/* harmony import */ var
|
|
25677
|
-
/* harmony import */ var
|
|
25678
|
-
/* harmony import */ var
|
|
25679
|
-
/* harmony import */ var
|
|
25680
|
-
/* harmony import */ var
|
|
25681
|
-
/* harmony import */ var
|
|
25682
|
-
/* harmony import */ var
|
|
25683
|
-
/* harmony import */ var
|
|
25684
|
-
/* harmony import */ var
|
|
25685
|
-
/* harmony import */ var
|
|
25686
|
-
/* harmony import */ var
|
|
25687
|
-
/* harmony import */ var
|
|
25688
|
-
/* harmony import */ var
|
|
25689
|
-
/* harmony import */ var
|
|
25690
|
-
/* harmony import */ var
|
|
25691
|
-
/* harmony import */ var
|
|
25692
|
-
/* harmony import */ var
|
|
25693
|
-
/* harmony import */ var
|
|
25694
|
-
/* harmony import */ var
|
|
25695
|
-
/* harmony import */ var
|
|
25696
|
-
/* harmony import */ var
|
|
25697
|
-
/* harmony import */ var
|
|
25698
|
-
/* harmony import */ var
|
|
25699
|
-
/* harmony import */ var
|
|
25700
|
-
/* harmony import */ var
|
|
25701
|
-
/* harmony import */ var
|
|
25702
|
-
/* harmony import */ var
|
|
25703
|
-
/* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./YieldManager */ "../bentley/lib/esm/YieldManager.js");
|
|
25615
|
+
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BeEvent */ "../bentley/lib/esm/BeEvent.js");
|
|
25616
|
+
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./BentleyError */ "../bentley/lib/esm/BentleyError.js");
|
|
25617
|
+
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../bentley/lib/esm/BentleyLoggerCategory.js");
|
|
25618
|
+
/* harmony import */ var _StatusCategory__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./StatusCategory */ "../bentley/lib/esm/StatusCategory.js");
|
|
25619
|
+
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BeSQLite */ "../bentley/lib/esm/BeSQLite.js");
|
|
25620
|
+
/* harmony import */ var _ByteStream__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./ByteStream */ "../bentley/lib/esm/ByteStream.js");
|
|
25621
|
+
/* harmony import */ var _ClassUtils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ClassUtils */ "../bentley/lib/esm/ClassUtils.js");
|
|
25622
|
+
/* harmony import */ var _Compare__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./Compare */ "../bentley/lib/esm/Compare.js");
|
|
25623
|
+
/* harmony import */ var _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./CompressedId64Set */ "../bentley/lib/esm/CompressedId64Set.js");
|
|
25624
|
+
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Dictionary */ "../bentley/lib/esm/Dictionary.js");
|
|
25625
|
+
/* harmony import */ var _Disposable__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./Disposable */ "../bentley/lib/esm/Disposable.js");
|
|
25626
|
+
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./Id */ "../bentley/lib/esm/Id.js");
|
|
25627
|
+
/* harmony import */ var _IndexMap__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./IndexMap */ "../bentley/lib/esm/IndexMap.js");
|
|
25628
|
+
/* harmony import */ var _JsonSchema__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./JsonSchema */ "../bentley/lib/esm/JsonSchema.js");
|
|
25629
|
+
/* harmony import */ var _JsonUtils__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./JsonUtils */ "../bentley/lib/esm/JsonUtils.js");
|
|
25630
|
+
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./Logger */ "../bentley/lib/esm/Logger.js");
|
|
25631
|
+
/* harmony import */ var _LRUMap__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./LRUMap */ "../bentley/lib/esm/LRUMap.js");
|
|
25632
|
+
/* harmony import */ var _ObservableSet__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ObservableSet */ "../bentley/lib/esm/ObservableSet.js");
|
|
25633
|
+
/* harmony import */ var _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./OneAtATimeAction */ "../bentley/lib/esm/OneAtATimeAction.js");
|
|
25634
|
+
/* harmony import */ var _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./OrderedId64Iterable */ "../bentley/lib/esm/OrderedId64Iterable.js");
|
|
25635
|
+
/* harmony import */ var _OrderedSet__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./OrderedSet */ "../bentley/lib/esm/OrderedSet.js");
|
|
25636
|
+
/* harmony import */ var _partitionArray__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./partitionArray */ "../bentley/lib/esm/partitionArray.js");
|
|
25637
|
+
/* harmony import */ var _PriorityQueue__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./PriorityQueue */ "../bentley/lib/esm/PriorityQueue.js");
|
|
25638
|
+
/* harmony import */ var _ProcessDetector__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./ProcessDetector */ "../bentley/lib/esm/ProcessDetector.js");
|
|
25639
|
+
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./SortedArray */ "../bentley/lib/esm/SortedArray.js");
|
|
25640
|
+
/* harmony import */ var _StringUtils__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./StringUtils */ "../bentley/lib/esm/StringUtils.js");
|
|
25641
|
+
/* harmony import */ var _Time__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./Time */ "../bentley/lib/esm/Time.js");
|
|
25642
|
+
/* harmony import */ var _Tracing__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./Tracing */ "../bentley/lib/esm/Tracing.js");
|
|
25643
|
+
/* harmony import */ var _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./TupleKeyedMap */ "../bentley/lib/esm/TupleKeyedMap.js");
|
|
25644
|
+
/* harmony import */ var _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./TypedArrayBuilder */ "../bentley/lib/esm/TypedArrayBuilder.js");
|
|
25645
|
+
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./UnexpectedErrors */ "../bentley/lib/esm/UnexpectedErrors.js");
|
|
25646
|
+
/* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./UtilityTypes */ "../bentley/lib/esm/UtilityTypes.js");
|
|
25647
|
+
/* harmony import */ var _YieldManager__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./YieldManager */ "../bentley/lib/esm/YieldManager.js");
|
|
25704
25648
|
/*---------------------------------------------------------------------------------------------
|
|
25705
25649
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
25706
25650
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -25738,7 +25682,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
25738
25682
|
|
|
25739
25683
|
|
|
25740
25684
|
|
|
25741
|
-
|
|
25742
25685
|
|
|
25743
25686
|
|
|
25744
25687
|
/** @docs-package-description
|