@itwin/core-i18n 5.13.0-dev.9 → 5.13.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,12 +1,52 @@
1
1
  # Change Log - @itwin/core-i18n
2
2
 
3
- This log was last generated on Mon, 03 Aug 2026 12:28:16 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 08 Sep 2026 18:43:29 GMT and should not be manually modified.
4
+
5
+ ## 5.13.1
6
+ Tue, 08 Sep 2026 18:43:29 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.13.0
11
+ Thu, 03 Sep 2026 18:49:56 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 5.12.5
16
+ Tue, 25 Aug 2026 21:22:08 GMT
17
+
18
+ _Version update only_
19
+
20
+ ## 5.12.4
21
+ Tue, 18 Aug 2026 15:45:35 GMT
22
+
23
+ _Version update only_
24
+
25
+ ## 5.12.3
26
+ Mon, 17 Aug 2026 11:29:39 GMT
27
+
28
+ _Version update only_
29
+
30
+ ## 5.12.2
31
+ Mon, 10 Aug 2026 20:38:45 GMT
32
+
33
+ _Version update only_
34
+
35
+ ## 5.12.1
36
+ Mon, 10 Aug 2026 19:07:26 GMT
37
+
38
+ _Version update only_
4
39
 
5
40
  ## 5.12.0
6
41
  Mon, 03 Aug 2026 12:25:49 GMT
7
42
 
8
43
  _Version update only_
9
44
 
45
+ ## 5.11.4
46
+ Tue, 25 Aug 2026 19:54:22 GMT
47
+
48
+ _Version update only_
49
+
10
50
  ## 5.11.3
11
51
  Wed, 15 Jul 2026 19:40:44 GMT
12
52
 
@@ -17921,6 +17921,8 @@ var DbResult;
17921
17921
  DbResult[DbResult["BE_SQLITE_ERROR_SchemaUpgradeRecommended"] = 369098762] = "BE_SQLITE_ERROR_SchemaUpgradeRecommended";
17922
17922
  /** schema update require data transform */
17923
17923
  DbResult[DbResult["BE_SQLITE_ERROR_DataTransformRequired"] = 385875978] = "BE_SQLITE_ERROR_DataTransformRequired";
17924
+ /** schema update would destroy existing instances or property values */
17925
+ DbResult[DbResult["BE_SQLITE_ERROR_DataDeletionRequired"] = 402653194] = "BE_SQLITE_ERROR_DataDeletionRequired";
17924
17926
  /** Db not open */
17925
17927
  DbResult[DbResult["BE_SQLITE_ERROR_NOTOPEN"] = 16777217] = "BE_SQLITE_ERROR_NOTOPEN";
17926
17928
  /** Error propagating changes during commit */
@@ -18473,6 +18475,7 @@ class BentleyError extends Error {
18473
18475
  case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_IOERR_SEEK: return "BE_SQLITE_IOERR_SEEK";
18474
18476
  case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_IOERR_DELETE_NOENT: return "BE_SQLITE_IOERR_DELETE_NOENT";
18475
18477
  case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_DataTransformRequired: return "Schema update require to transform data";
18478
+ case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_DataDeletionRequired: return "Schema update would destroy existing data";
18476
18479
  case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_FileExists: return "File Exists";
18477
18480
  case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_AlreadyOpen: return "Already Open";
18478
18481
  case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ERROR_NoPropertyTable: return "No Property Table";
@@ -19146,7 +19149,7 @@ var CompressedId64Set;
19146
19149
  return (ch >= 48 && ch <= 57) || (ch >= 65 && ch <= 70);
19147
19150
  }
19148
19151
  function compactRange(increment, length) {
19149
- (0,_Assert__WEBPACK_IMPORTED_MODULE_0__.assert)(length > 0);
19152
+ ;(0,_Assert__WEBPACK_IMPORTED_MODULE_0__.assert)(length > 0);
19150
19153
  const inc = `+${increment.toString()}`;
19151
19154
  if (length <= 1)
19152
19155
  return inc;
@@ -19261,7 +19264,7 @@ var CompressedId64Set;
19261
19264
  isGreaterThan(rhs) { return this.compare(rhs) > 0; }
19262
19265
  get isZero() { return 0 === this.lower && 0 === this.upper; }
19263
19266
  setFromDifference(lhs, rhs) {
19264
- (0,_Assert__WEBPACK_IMPORTED_MODULE_0__.assert)(!rhs.isGreaterThan(lhs));
19267
+ ;(0,_Assert__WEBPACK_IMPORTED_MODULE_0__.assert)(!rhs.isGreaterThan(lhs));
19265
19268
  this.lower = lhs.lower - rhs.lower;
19266
19269
  this.upper = lhs.upper - rhs.upper;
19267
19270
  if (this.lower < 0) {
@@ -24938,7 +24941,7 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
24938
24941
  function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
24939
24942
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
24940
24943
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
24941
-
24944
+ ;
24942
24945
 
24943
24946
  var getDefaults = function getDefaults() {
24944
24947
  return {
@@ -25153,7 +25156,7 @@ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object
25153
25156
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
25154
25157
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
25155
25158
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
25156
-
25159
+ ;
25157
25160
  var fetchApi = typeof fetch === 'function' ? fetch : undefined;
25158
25161
  if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.fetch) {
25159
25162
  fetchApi = __webpack_require__.g.fetch;
@@ -25179,7 +25182,7 @@ if (typeof ActiveXObject === 'function') {
25179
25182
  if (typeof fetchApi !== 'function') fetchApi = undefined;
25180
25183
  if (!fetchApi && !XmlHttpRequestApi && !ActiveXObjectApi) {
25181
25184
  try {
25182
- __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_cross-fetch_4_1_0_node_modules_cross-fetch_dist_browser-44272f").then(__webpack_require__.t.bind(__webpack_require__, /*! cross-fetch */ "../../common/temp/node_modules/.pnpm/cross-fetch@4.1.0/node_modules/cross-fetch/dist/browser-ponyfill.js", 19)).then(function (mod) {
25185
+ __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_cross-fetch_4_1_0_node_modules_cross-fetch_dist_browser-44272f").then(() => (__webpack_require__.t(/*! cross-fetch */ "../../common/temp/node_modules/.pnpm/cross-fetch@4.1.0/node_modules/cross-fetch/dist/browser-ponyfill.js", 19))).then(function (mod) {
25183
25186
  fetchApi = mod.default;
25184
25187
  }).catch(function () {});
25185
25188
  } catch (e) {}
@@ -25485,7 +25488,7 @@ function interpolateUrl(str, data) {
25485
25488
  /************************************************************************/
25486
25489
  /******/ /* webpack/runtime/create fake namespace object */
25487
25490
  /******/ (() => {
25488
- /******/ const getProto = Object.getPrototypeOf ? (obj) => (Object.getPrototypeOf(obj)) : (obj) => (obj.__proto__);
25491
+ /******/ const getProto = Object.getPrototypeOf;
25489
25492
  /******/ let leafPrototypes;
25490
25493
  /******/ // create a fake namespace object
25491
25494
  /******/ // mode & 1: value is a module id, require it
@@ -25514,70 +25517,42 @@ function interpolateUrl(str, data) {
25514
25517
  /******/ })();
25515
25518
  /******/
25516
25519
  /******/ /* webpack/runtime/define property getters */
25517
- /******/ (() => {
25518
- /******/ // define getter/value functions for harmony exports
25519
- /******/ __webpack_require__.d = (exports, definition) => {
25520
- /******/ if(Array.isArray(definition)) {
25521
- /******/ var i = 0;
25522
- /******/ while(i < definition.length) {
25523
- /******/ var key = definition[i++];
25524
- /******/ var binding = definition[i++];
25525
- /******/ if(!__webpack_require__.o(exports, key)) {
25526
- /******/ if(binding === 0) {
25527
- /******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
25528
- /******/ } else {
25529
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
25530
- /******/ }
25531
- /******/ } else if(binding === 0) { i++; }
25532
- /******/ }
25533
- /******/ } else {
25534
- /******/ for(var key in definition) {
25535
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
25536
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
25537
- /******/ }
25538
- /******/ }
25520
+ /******/ // define getter/value functions for harmony exports
25521
+ /******/ __webpack_require__.d = (exports, definition) => {
25522
+ /******/ for(var key in definition) {
25523
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
25524
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
25539
25525
  /******/ }
25540
- /******/ };
25541
- /******/ })();
25526
+ /******/ }
25527
+ /******/ };
25542
25528
  /******/
25543
25529
  /******/ /* webpack/runtime/ensure chunk */
25544
- /******/ (() => {
25545
- /******/ __webpack_require__.f = {};
25546
- /******/ // This file contains only the entry chunk.
25547
- /******/ // The chunk loading function for additional chunks
25548
- /******/ __webpack_require__.e = (chunkId) => {
25549
- /******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
25550
- /******/ __webpack_require__.f[key](chunkId, promises);
25551
- /******/ return promises;
25552
- /******/ }, []));
25553
- /******/ };
25554
- /******/ })();
25530
+ /******/ __webpack_require__.f = {};
25531
+ /******/ // This file contains only the entry chunk.
25532
+ /******/ // The chunk loading function for additional chunks
25533
+ /******/ __webpack_require__.e = (chunkId) => {
25534
+ /******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
25535
+ /******/ __webpack_require__.f[key](chunkId, promises);
25536
+ /******/ return promises;
25537
+ /******/ }, []));
25538
+ /******/ };
25555
25539
  /******/
25556
25540
  /******/ /* webpack/runtime/get javascript chunk filename */
25557
- /******/ (() => {
25558
- /******/ // This function allow to reference async chunks
25559
- /******/ __webpack_require__.u = (chunkId) => {
25560
- /******/ // return url for filenames based on template
25561
- /******/ return "" + chunkId + ".bundled-tests.instrumented.js";
25562
- /******/ };
25563
- /******/ })();
25541
+ /******/ // This function allow to reference async chunks
25542
+ /******/ __webpack_require__.u = (chunkId) => (chunkId + ".bundled-tests.instrumented.js");
25564
25543
  /******/
25565
25544
  /******/ /* webpack/runtime/global */
25566
- /******/ (() => {
25567
- /******/ __webpack_require__.g = (function() {
25568
- /******/ if (typeof globalThis === 'object') return globalThis;
25569
- /******/ try {
25570
- /******/ return this || new Function('return this')();
25571
- /******/ } catch (e) {
25572
- /******/ if (typeof window === 'object') return window;
25573
- /******/ }
25574
- /******/ })();
25545
+ /******/ __webpack_require__.g = (function() {
25546
+ /******/ if (typeof globalThis === 'object') return globalThis;
25547
+ /******/ try {
25548
+ /******/ return this || new Function('return this')();
25549
+ /******/ } catch (e) {
25550
+ /******/ if (typeof window === 'object') return window;
25551
+ /******/ }
25575
25552
  /******/ })();
25576
25553
  /******/
25577
25554
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
25578
- /******/ (() => {
25579
- /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
25580
- /******/ })();
25555
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop));
25581
25556
  /******/
25582
25557
  /******/ /* webpack/runtime/load script */
25583
25558
  /******/ (() => {
@@ -25625,15 +25600,11 @@ function interpolateUrl(str, data) {
25625
25600
  /******/ })();
25626
25601
  /******/
25627
25602
  /******/ /* webpack/runtime/make namespace object */
25628
- /******/ (() => {
25629
- /******/ // define __esModule on exports
25630
- /******/ __webpack_require__.r = (exports) => {
25631
- /******/ if(Symbol.toStringTag) {
25632
- /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
25633
- /******/ }
25634
- /******/ Object.defineProperty(exports, '__esModule', { value: true });
25635
- /******/ };
25636
- /******/ })();
25603
+ /******/ // define __esModule on exports
25604
+ /******/ __webpack_require__.r = (exports) => {
25605
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
25606
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
25607
+ /******/ };
25637
25608
  /******/
25638
25609
  /******/ /* webpack/runtime/publicPath */
25639
25610
  /******/ (() => {
@@ -25647,14 +25618,14 @@ function interpolateUrl(str, data) {
25647
25618
  /******/ const scripts = document.getElementsByTagName("script");
25648
25619
  /******/ if(scripts.length) {
25649
25620
  /******/ let i = scripts.length - 1;
25650
- /******/ while (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;
25621
+ /******/ while (i > -1 && (!scriptUrl || !/^https?:/.test(scriptUrl))) scriptUrl = scripts[i--].src;
25651
25622
  /******/ }
25652
25623
  /******/ }
25653
25624
  /******/ }
25654
25625
  /******/ // When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration
25655
25626
  /******/ // or pass an empty string ("") and set the __webpack_public_path__ variable from your code to use your own logic.
25656
25627
  /******/ if (!scriptUrl) throw new Error("Automatic publicPath is not supported in this browser");
25657
- /******/ scriptUrl = scriptUrl.replace(/^blob:/, "").replace(/#.*$/, "").replace(/\?.*$/, "").replace(/\/[^\/]+$/, "/");
25628
+ /******/ scriptUrl = scriptUrl.replace(/^blob:|[?#].*$/g, "").replace(/\/[^/]+$/, "/");
25658
25629
  /******/ __webpack_require__.p = scriptUrl;
25659
25630
  /******/ })();
25660
25631
  /******/
@@ -25683,8 +25654,6 @@ function interpolateUrl(str, data) {
25683
25654
  /******/ const promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));
25684
25655
  /******/ promises.push(installedChunkData[2] = promise);
25685
25656
  /******/
25686
- /******/ // start chunk loading
25687
- /******/ const url = __webpack_require__.p + __webpack_require__.u(chunkId);
25688
25657
  /******/ // create error before stack unwound to get useful stacktrace later
25689
25658
  /******/ const error = new Error();
25690
25659
  /******/ const loadingEnded = (event) => {
@@ -25698,11 +25667,12 @@ function interpolateUrl(str, data) {
25698
25667
  /******/ error.name = 'ChunkLoadError';
25699
25668
  /******/ error.type = errorType;
25700
25669
  /******/ error.request = realSrc;
25670
+ /******/ error.event = event;
25701
25671
  /******/ installedChunkData[1](error);
25702
25672
  /******/ }
25703
25673
  /******/ }
25704
25674
  /******/ };
25705
- /******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
25675
+ /******/ __webpack_require__.l(__webpack_require__.p + __webpack_require__.u(chunkId), loadingEnded, "chunk-" + chunkId, chunkId);
25706
25676
  /******/ }
25707
25677
  /******/ }
25708
25678
  /******/ }