@itwin/core-i18n 5.11.0-dev.9 → 5.11.1
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
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
# Change Log - @itwin/core-i18n
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 08 Jul 2026 19:03:46 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.11.1
|
|
6
|
+
Wed, 08 Jul 2026 19:03:46 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 5.11.0
|
|
11
|
+
Fri, 03 Jul 2026 13:05:21 GMT
|
|
12
|
+
|
|
13
|
+
_Version update only_
|
|
14
|
+
|
|
15
|
+
## 5.10.3
|
|
16
|
+
Tue, 16 Jun 2026 12:58:32 GMT
|
|
17
|
+
|
|
18
|
+
_Version update only_
|
|
19
|
+
|
|
20
|
+
## 5.10.2
|
|
21
|
+
Thu, 11 Jun 2026 21:09:38 GMT
|
|
22
|
+
|
|
23
|
+
_Version update only_
|
|
4
24
|
|
|
5
25
|
## 5.10.1
|
|
6
26
|
Mon, 08 Jun 2026 18:45:58 GMT
|
|
@@ -18212,7 +18212,7 @@ var GeoServiceStatus;
|
|
|
18212
18212
|
GeoServiceStatus[GeoServiceStatus["VerticalDatumConvertError"] = 147460] = "VerticalDatumConvertError";
|
|
18213
18213
|
GeoServiceStatus[GeoServiceStatus["CSMapError"] = 147461] = "CSMapError";
|
|
18214
18214
|
/**
|
|
18215
|
-
* @deprecated in 5.0 -
|
|
18215
|
+
* @deprecated in 5.0 - might be removed in next major version. This status is never returned.
|
|
18216
18216
|
*/
|
|
18217
18217
|
GeoServiceStatus[GeoServiceStatus["Pending"] = 147462] = "Pending";
|
|
18218
18218
|
})(GeoServiceStatus || (GeoServiceStatus = {}));
|
|
@@ -19043,6 +19043,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19043
19043
|
*/
|
|
19044
19044
|
var CompressedId64Set;
|
|
19045
19045
|
(function (CompressedId64Set) {
|
|
19046
|
+
/** Returns `true` if `ids` is a valid [[CompressedId64Set]] — either an empty string
|
|
19047
|
+
* (representing an empty set) or a non-empty string beginning with `'+'`.
|
|
19048
|
+
* Useful as a type guard to distinguish a compressed set from an [[Id64String]] or other
|
|
19049
|
+
* value when the type of a string is not known statically.
|
|
19050
|
+
* @note This is a syntactic prefix check only — it does not validate the encoded content
|
|
19051
|
+
* after `'+'`. A value may pass this guard and still throw during [[CompressedId64Set.iterator]]
|
|
19052
|
+
* (e.g. `'+0'` or `'+garbage'`).
|
|
19053
|
+
* @see [[CompressedId64Set.iterable]] to iterate the Ids represented by a compressed string.
|
|
19054
|
+
*/
|
|
19055
|
+
function isValid(ids) {
|
|
19056
|
+
return typeof ids === "string" && (ids.length === 0 || ids[0] === "+");
|
|
19057
|
+
}
|
|
19058
|
+
CompressedId64Set.isValid = isValid;
|
|
19046
19059
|
function isHexDigit(ch) {
|
|
19047
19060
|
// ascii values:
|
|
19048
19061
|
// '0' = 48
|
|
@@ -19699,7 +19712,7 @@ Symbol.dispose ??= Symbol("Symbol.dispose");
|
|
|
19699
19712
|
Symbol.asyncDispose ??= Symbol("Symbol.asyncDispose");
|
|
19700
19713
|
/**
|
|
19701
19714
|
* A type guard that checks whether the given argument implements `IDisposable` interface
|
|
19702
|
-
* @deprecated in 5.0 -
|
|
19715
|
+
* @deprecated in 5.0 - might be removed in next major version. Use isDisposable instead.
|
|
19703
19716
|
* @public
|
|
19704
19717
|
*/
|
|
19705
19718
|
function isIDisposable(obj) {
|
|
@@ -19738,7 +19751,7 @@ function disposeArray(list) {
|
|
|
19738
19751
|
* of this function is equal to return value of func. If func throws, this function also throws (after
|
|
19739
19752
|
* disposing the resource).
|
|
19740
19753
|
* @public
|
|
19741
|
-
* @deprecated in 5.0 -
|
|
19754
|
+
* @deprecated in 5.0 - might be removed in next major version. Use `using` declarations instead.
|
|
19742
19755
|
*/
|
|
19743
19756
|
function using(resources, func) {
|
|
19744
19757
|
if (!Array.isArray(resources))
|
|
@@ -21581,7 +21594,7 @@ class PerfLogger {
|
|
|
21581
21594
|
[Symbol.dispose]() {
|
|
21582
21595
|
this.logMessage();
|
|
21583
21596
|
}
|
|
21584
|
-
/** @deprecated in 5.0 -
|
|
21597
|
+
/** @deprecated in 5.0 - might be removed in next major version. Use [Symbol.dispose] instead. */
|
|
21585
21598
|
dispose() {
|
|
21586
21599
|
this[Symbol.dispose]();
|
|
21587
21600
|
}
|
|
@@ -23352,7 +23365,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23352
23365
|
/**
|
|
23353
23366
|
* Mirrors the SpanKind enum from [@opentelemetry/api](https://open-telemetry.github.io/opentelemetry-js/enums/_opentelemetry_api.SpanKind.html)
|
|
23354
23367
|
* @public
|
|
23355
|
-
* @deprecated in 4.4 -
|
|
23368
|
+
* @deprecated in 4.4 - might be removed in next major version. OpenTelemetry Tracing helpers will become internal in a future release. Apps should use `@opentelemetry/api` directly.
|
|
23356
23369
|
*/
|
|
23357
23370
|
var SpanKind;
|
|
23358
23371
|
(function (SpanKind) {
|
|
@@ -23412,7 +23425,7 @@ function flattenObject(obj) {
|
|
|
23412
23425
|
/**
|
|
23413
23426
|
* Enables OpenTelemetry tracing in addition to traditional logging.
|
|
23414
23427
|
* @public
|
|
23415
|
-
* @deprecated in 4.4 -
|
|
23428
|
+
* @deprecated in 4.4 - might be removed in next major version. OpenTelemetry Tracing helpers will become internal in a future release. Apps should use `@opentelemetry/api` directly.
|
|
23416
23429
|
*/
|
|
23417
23430
|
class Tracing {
|
|
23418
23431
|
static _tracer;
|