@itwin/core-i18n 4.4.0-dev.3 → 4.4.0-dev.30
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 +16 -1
- package/lib/cjs/ITwinLocalization.js.map +1 -1
- package/lib/cjs/core-i18n.js.map +1 -1
- package/lib/cjs/test/ITwinLocalization.test.js.map +1 -1
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js +533 -378
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js.map +1 -1
- package/lib/cjs/test/webpack/bundled-tests.js +530 -374
- package/lib/cjs/test/webpack/bundled-tests.js.map +1 -1
- package/lib/esm/ITwinLocalization.js.map +1 -1
- package/lib/esm/core-i18n.js.map +1 -1
- package/lib/esm/test/ITwinLocalization.test.js.map +1 -1
- package/package.json +7 -7
|
@@ -10799,22 +10799,21 @@ module.exports = getFuncName;
|
|
|
10799
10799
|
|
|
10800
10800
|
/***/ }),
|
|
10801
10801
|
|
|
10802
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.
|
|
10802
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.2/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js":
|
|
10803
10803
|
/*!****************************************************************************************************************************************************************************!*\
|
|
10804
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.
|
|
10804
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.2/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js ***!
|
|
10805
10805
|
\****************************************************************************************************************************************************************************/
|
|
10806
|
-
/***/ ((
|
|
10806
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
10807
10807
|
|
|
10808
10808
|
"use strict";
|
|
10809
|
+
__webpack_require__.r(__webpack_exports__);
|
|
10810
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
10811
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
10812
|
+
/* harmony export */ });
|
|
10813
|
+
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
10814
|
+
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
10809
10815
|
|
|
10810
10816
|
|
|
10811
|
-
var _classCallCheck = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.2/node_modules/@babel/runtime/helpers/classCallCheck.js");
|
|
10812
|
-
var _createClass = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.2/node_modules/@babel/runtime/helpers/createClass.js");
|
|
10813
|
-
|
|
10814
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
10815
|
-
|
|
10816
|
-
var _classCallCheck__default = /*#__PURE__*/_interopDefaultLegacy(_classCallCheck);
|
|
10817
|
-
var _createClass__default = /*#__PURE__*/_interopDefaultLegacy(_createClass);
|
|
10818
10817
|
|
|
10819
10818
|
var arr = [];
|
|
10820
10819
|
var each = arr.forEach;
|
|
@@ -10837,12 +10836,12 @@ var serializeCookie = function serializeCookie(name, val, options) {
|
|
|
10837
10836
|
var opt = options || {};
|
|
10838
10837
|
opt.path = opt.path || '/';
|
|
10839
10838
|
var value = encodeURIComponent(val);
|
|
10840
|
-
var str =
|
|
10839
|
+
var str = name + '=' + value;
|
|
10841
10840
|
|
|
10842
10841
|
if (opt.maxAge > 0) {
|
|
10843
10842
|
var maxAge = opt.maxAge - 0;
|
|
10844
|
-
if (
|
|
10845
|
-
str +=
|
|
10843
|
+
if (isNaN(maxAge)) throw new Error('maxAge should be a Number');
|
|
10844
|
+
str += '; Max-Age=' + Math.floor(maxAge);
|
|
10846
10845
|
}
|
|
10847
10846
|
|
|
10848
10847
|
if (opt.domain) {
|
|
@@ -10850,7 +10849,7 @@ var serializeCookie = function serializeCookie(name, val, options) {
|
|
|
10850
10849
|
throw new TypeError('option domain is invalid');
|
|
10851
10850
|
}
|
|
10852
10851
|
|
|
10853
|
-
str +=
|
|
10852
|
+
str += '; Domain=' + opt.domain;
|
|
10854
10853
|
}
|
|
10855
10854
|
|
|
10856
10855
|
if (opt.path) {
|
|
@@ -10858,7 +10857,7 @@ var serializeCookie = function serializeCookie(name, val, options) {
|
|
|
10858
10857
|
throw new TypeError('option path is invalid');
|
|
10859
10858
|
}
|
|
10860
10859
|
|
|
10861
|
-
str +=
|
|
10860
|
+
str += '; Path=' + opt.path;
|
|
10862
10861
|
}
|
|
10863
10862
|
|
|
10864
10863
|
if (opt.expires) {
|
|
@@ -10866,7 +10865,7 @@ var serializeCookie = function serializeCookie(name, val, options) {
|
|
|
10866
10865
|
throw new TypeError('option expires is invalid');
|
|
10867
10866
|
}
|
|
10868
10867
|
|
|
10869
|
-
str +=
|
|
10868
|
+
str += '; Expires=' + opt.expires.toUTCString();
|
|
10870
10869
|
}
|
|
10871
10870
|
|
|
10872
10871
|
if (opt.httpOnly) str += '; HttpOnly';
|
|
@@ -10916,7 +10915,7 @@ var cookie = {
|
|
|
10916
10915
|
document.cookie = serializeCookie(name, encodeURIComponent(value), cookieOptions);
|
|
10917
10916
|
},
|
|
10918
10917
|
read: function read(name) {
|
|
10919
|
-
var nameEQ =
|
|
10918
|
+
var nameEQ = name + '=';
|
|
10920
10919
|
var ca = document.cookie.split(';');
|
|
10921
10920
|
|
|
10922
10921
|
for (var i = 0; i < ca.length; i++) {
|
|
@@ -10960,13 +10959,7 @@ var querystring = {
|
|
|
10960
10959
|
var found;
|
|
10961
10960
|
|
|
10962
10961
|
if (typeof window !== 'undefined') {
|
|
10963
|
-
var
|
|
10964
|
-
|
|
10965
|
-
if (!window.location.search && window.location.hash && window.location.hash.indexOf('?') > -1) {
|
|
10966
|
-
search = window.location.hash.substring(window.location.hash.indexOf('?'));
|
|
10967
|
-
}
|
|
10968
|
-
|
|
10969
|
-
var query = search.substring(1);
|
|
10962
|
+
var query = window.location.search.substring(1);
|
|
10970
10963
|
var params = query.split('&');
|
|
10971
10964
|
|
|
10972
10965
|
for (var i = 0; i < params.length; i++) {
|
|
@@ -11126,16 +11119,21 @@ var path = {
|
|
|
11126
11119
|
var subdomain = {
|
|
11127
11120
|
name: 'subdomain',
|
|
11128
11121
|
lookup: function lookup(options) {
|
|
11129
|
-
|
|
11130
|
-
var lookupFromSubdomainIndex = typeof options.lookupFromSubdomainIndex === 'number' ? options.lookupFromSubdomainIndex + 1 : 1; // get all matches if window.location. is existing
|
|
11131
|
-
// first item of match is the match itself and the second is the first group macht which sould be the first subdomain match
|
|
11132
|
-
// is the hostname no public domain get the or option of localhost
|
|
11122
|
+
var found;
|
|
11133
11123
|
|
|
11134
|
-
|
|
11124
|
+
if (typeof window !== 'undefined') {
|
|
11125
|
+
var language = window.location.href.match(/(?:http[s]*\:\/\/)*(.*?)\.(?=[^\/]*\..{2,5})/gi);
|
|
11135
11126
|
|
|
11136
|
-
|
|
11127
|
+
if (language instanceof Array) {
|
|
11128
|
+
if (typeof options.lookupFromSubdomainIndex === 'number') {
|
|
11129
|
+
found = language[options.lookupFromSubdomainIndex].replace('http://', '').replace('https://', '').replace('.', '');
|
|
11130
|
+
} else {
|
|
11131
|
+
found = language[0].replace('http://', '').replace('https://', '').replace('.', '');
|
|
11132
|
+
}
|
|
11133
|
+
}
|
|
11134
|
+
}
|
|
11137
11135
|
|
|
11138
|
-
return
|
|
11136
|
+
return found;
|
|
11139
11137
|
}
|
|
11140
11138
|
};
|
|
11141
11139
|
|
|
@@ -11148,8 +11146,8 @@ function getDefaults() {
|
|
|
11148
11146
|
lookupSessionStorage: 'i18nextLng',
|
|
11149
11147
|
// cache user language
|
|
11150
11148
|
caches: ['localStorage'],
|
|
11151
|
-
excludeCacheFor: ['cimode'] //
|
|
11152
|
-
//
|
|
11149
|
+
excludeCacheFor: ['cimode'] //cookieMinutes: 10,
|
|
11150
|
+
//cookieDomain: 'myDomain'
|
|
11153
11151
|
|
|
11154
11152
|
};
|
|
11155
11153
|
}
|
|
@@ -11158,14 +11156,14 @@ var Browser = /*#__PURE__*/function () {
|
|
|
11158
11156
|
function Browser(services) {
|
|
11159
11157
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
11160
11158
|
|
|
11161
|
-
|
|
11159
|
+
(0,_babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__["default"])(this, Browser);
|
|
11162
11160
|
|
|
11163
11161
|
this.type = 'languageDetector';
|
|
11164
11162
|
this.detectors = {};
|
|
11165
11163
|
this.init(services, options);
|
|
11166
11164
|
}
|
|
11167
11165
|
|
|
11168
|
-
|
|
11166
|
+
(0,_babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(Browser, [{
|
|
11169
11167
|
key: "init",
|
|
11170
11168
|
value: function init(services) {
|
|
11171
11169
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
@@ -11227,29 +11225,29 @@ var Browser = /*#__PURE__*/function () {
|
|
|
11227
11225
|
|
|
11228
11226
|
Browser.type = 'languageDetector';
|
|
11229
11227
|
|
|
11230
|
-
|
|
11228
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Browser);
|
|
11231
11229
|
|
|
11232
11230
|
|
|
11233
11231
|
/***/ }),
|
|
11234
11232
|
|
|
11235
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next@21.
|
|
11236
|
-
|
|
11237
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next@21.
|
|
11238
|
-
|
|
11233
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next@21.9.1/node_modules/i18next/dist/cjs/i18next.js":
|
|
11234
|
+
/*!****************************************************************************************************!*\
|
|
11235
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next@21.9.1/node_modules/i18next/dist/cjs/i18next.js ***!
|
|
11236
|
+
\****************************************************************************************************/
|
|
11239
11237
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
11240
11238
|
|
|
11241
11239
|
"use strict";
|
|
11242
11240
|
|
|
11243
11241
|
|
|
11244
|
-
var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
11245
|
-
var _classCallCheck = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
11246
|
-
var _createClass = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
11247
|
-
var _assertThisInitialized = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
11248
|
-
var _inherits = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
11249
|
-
var _possibleConstructorReturn = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
11250
|
-
var _getPrototypeOf = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
11251
|
-
var _defineProperty = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
11252
|
-
var _toArray = __webpack_require__(/*! @babel/runtime/helpers/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
11242
|
+
var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js");
|
|
11243
|
+
var _classCallCheck = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/classCallCheck.js");
|
|
11244
|
+
var _createClass = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/createClass.js");
|
|
11245
|
+
var _assertThisInitialized = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
|
|
11246
|
+
var _inherits = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/inherits.js");
|
|
11247
|
+
var _possibleConstructorReturn = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js");
|
|
11248
|
+
var _getPrototypeOf = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/getPrototypeOf.js");
|
|
11249
|
+
var _defineProperty = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/defineProperty.js");
|
|
11250
|
+
var _toArray = __webpack_require__(/*! @babel/runtime/helpers/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toArray.js");
|
|
11253
11251
|
|
|
11254
11252
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
11255
11253
|
|
|
@@ -11356,13 +11354,6 @@ var Logger = function () {
|
|
|
11356
11354
|
prefix: "".concat(this.prefix, ":").concat(moduleName, ":")
|
|
11357
11355
|
}), this.options));
|
|
11358
11356
|
}
|
|
11359
|
-
}, {
|
|
11360
|
-
key: "clone",
|
|
11361
|
-
value: function clone(options) {
|
|
11362
|
-
options = options || this.options;
|
|
11363
|
-
options.prefix = options.prefix || this.prefix;
|
|
11364
|
-
return new Logger(this.logger, options);
|
|
11365
|
-
}
|
|
11366
11357
|
}]);
|
|
11367
11358
|
|
|
11368
11359
|
return Logger;
|
|
@@ -12911,12 +12902,7 @@ var Interpolator = function () {
|
|
|
12911
12902
|
var optionsString = "{".concat(c[1]);
|
|
12912
12903
|
key = c[0];
|
|
12913
12904
|
optionsString = this.interpolate(optionsString, clonedOptions);
|
|
12914
|
-
|
|
12915
|
-
var matchedDoubleQuotes = optionsString.match(/"/g);
|
|
12916
|
-
|
|
12917
|
-
if (matchedSingleQuotes && matchedSingleQuotes.length % 2 === 0 && !matchedDoubleQuotes || matchedDoubleQuotes.length % 2 !== 0) {
|
|
12918
|
-
optionsString = optionsString.replace(/'/g, '"');
|
|
12919
|
-
}
|
|
12905
|
+
optionsString = optionsString.replace(/'/g, '"');
|
|
12920
12906
|
|
|
12921
12907
|
try {
|
|
12922
12908
|
clonedOptions = JSON.parse(optionsString);
|
|
@@ -13013,21 +12999,6 @@ function parseFormatStr(formatStr) {
|
|
|
13013
12999
|
};
|
|
13014
13000
|
}
|
|
13015
13001
|
|
|
13016
|
-
function createCachedFormatter(fn) {
|
|
13017
|
-
var cache = {};
|
|
13018
|
-
return function invokeFormatter(val, lng, options) {
|
|
13019
|
-
var key = lng + JSON.stringify(options);
|
|
13020
|
-
var formatter = cache[key];
|
|
13021
|
-
|
|
13022
|
-
if (!formatter) {
|
|
13023
|
-
formatter = fn(lng, options);
|
|
13024
|
-
cache[key] = formatter;
|
|
13025
|
-
}
|
|
13026
|
-
|
|
13027
|
-
return formatter(val);
|
|
13028
|
-
};
|
|
13029
|
-
}
|
|
13030
|
-
|
|
13031
13002
|
var Formatter = function () {
|
|
13032
13003
|
function Formatter() {
|
|
13033
13004
|
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
@@ -13037,38 +13008,23 @@ var Formatter = function () {
|
|
|
13037
13008
|
this.logger = baseLogger.create('formatter');
|
|
13038
13009
|
this.options = options;
|
|
13039
13010
|
this.formats = {
|
|
13040
|
-
number:
|
|
13041
|
-
|
|
13042
|
-
|
|
13043
|
-
|
|
13044
|
-
}
|
|
13045
|
-
}),
|
|
13046
|
-
currency: createCachedFormatter(function (lng, options) {
|
|
13047
|
-
var formatter = new Intl.NumberFormat(lng, _objectSpread$4(_objectSpread$4({}, options), {}, {
|
|
13011
|
+
number: function number(val, lng, options) {
|
|
13012
|
+
return new Intl.NumberFormat(lng, options).format(val);
|
|
13013
|
+
},
|
|
13014
|
+
currency: function currency(val, lng, options) {
|
|
13015
|
+
return new Intl.NumberFormat(lng, _objectSpread$4(_objectSpread$4({}, options), {}, {
|
|
13048
13016
|
style: 'currency'
|
|
13049
|
-
}));
|
|
13050
|
-
|
|
13051
|
-
|
|
13052
|
-
};
|
|
13053
|
-
}
|
|
13054
|
-
|
|
13055
|
-
|
|
13056
|
-
|
|
13057
|
-
|
|
13058
|
-
};
|
|
13059
|
-
}
|
|
13060
|
-
relativetime: createCachedFormatter(function (lng, options) {
|
|
13061
|
-
var formatter = new Intl.RelativeTimeFormat(lng, _objectSpread$4({}, options));
|
|
13062
|
-
return function (val) {
|
|
13063
|
-
return formatter.format(val, options.range || 'day');
|
|
13064
|
-
};
|
|
13065
|
-
}),
|
|
13066
|
-
list: createCachedFormatter(function (lng, options) {
|
|
13067
|
-
var formatter = new Intl.ListFormat(lng, _objectSpread$4({}, options));
|
|
13068
|
-
return function (val) {
|
|
13069
|
-
return formatter.format(val);
|
|
13070
|
-
};
|
|
13071
|
-
})
|
|
13017
|
+
})).format(val);
|
|
13018
|
+
},
|
|
13019
|
+
datetime: function datetime(val, lng, options) {
|
|
13020
|
+
return new Intl.DateTimeFormat(lng, _objectSpread$4({}, options)).format(val);
|
|
13021
|
+
},
|
|
13022
|
+
relativetime: function relativetime(val, lng, options) {
|
|
13023
|
+
return new Intl.RelativeTimeFormat(lng, _objectSpread$4({}, options)).format(val, options.range || 'day');
|
|
13024
|
+
},
|
|
13025
|
+
list: function list(val, lng, options) {
|
|
13026
|
+
return new Intl.ListFormat(lng, _objectSpread$4({}, options)).format(val);
|
|
13027
|
+
}
|
|
13072
13028
|
};
|
|
13073
13029
|
this.init(options);
|
|
13074
13030
|
}
|
|
@@ -13087,11 +13043,6 @@ var Formatter = function () {
|
|
|
13087
13043
|
value: function add(name, fc) {
|
|
13088
13044
|
this.formats[name.toLowerCase().trim()] = fc;
|
|
13089
13045
|
}
|
|
13090
|
-
}, {
|
|
13091
|
-
key: "addCached",
|
|
13092
|
-
value: function addCached(name, fc) {
|
|
13093
|
-
this.formats[name.toLowerCase().trim()] = createCachedFormatter(fc);
|
|
13094
|
-
}
|
|
13095
13046
|
}, {
|
|
13096
13047
|
key: "format",
|
|
13097
13048
|
value: function format(value, _format, lng, options) {
|
|
@@ -14041,11 +13992,6 @@ var I18n = function (_EventEmitter) {
|
|
|
14041
13992
|
});
|
|
14042
13993
|
|
|
14043
13994
|
var clone = new I18n(mergedOptions);
|
|
14044
|
-
|
|
14045
|
-
if (options.debug !== undefined || options.prefix !== undefined) {
|
|
14046
|
-
clone.logger = clone.logger.clone(options);
|
|
14047
|
-
}
|
|
14048
|
-
|
|
14049
13995
|
var membersToCopy = ['store', 'services', 'language'];
|
|
14050
13996
|
membersToCopy.forEach(function (m) {
|
|
14051
13997
|
clone[m] = _this8[m];
|
|
@@ -15737,7 +15683,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
15737
15683
|
"use strict";
|
|
15738
15684
|
__webpack_require__.r(__webpack_exports__);
|
|
15739
15685
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15740
|
-
/* harmony export */ assert: () => (/* binding */ assert)
|
|
15686
|
+
/* harmony export */ "assert": () => (/* binding */ assert)
|
|
15741
15687
|
/* harmony export */ });
|
|
15742
15688
|
/*---------------------------------------------------------------------------------------------
|
|
15743
15689
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -15793,9 +15739,9 @@ function assert(condition, message) {
|
|
|
15793
15739
|
"use strict";
|
|
15794
15740
|
__webpack_require__.r(__webpack_exports__);
|
|
15795
15741
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15796
|
-
/* harmony export */ BeEvent: () => (/* binding */ BeEvent),
|
|
15797
|
-
/* harmony export */ BeEventList: () => (/* binding */ BeEventList),
|
|
15798
|
-
/* harmony export */ BeUiEvent: () => (/* binding */ BeUiEvent)
|
|
15742
|
+
/* harmony export */ "BeEvent": () => (/* binding */ BeEvent),
|
|
15743
|
+
/* harmony export */ "BeEventList": () => (/* binding */ BeEventList),
|
|
15744
|
+
/* harmony export */ "BeUiEvent": () => (/* binding */ BeUiEvent)
|
|
15799
15745
|
/* harmony export */ });
|
|
15800
15746
|
/* harmony import */ var _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UnexpectedErrors */ "../bentley/lib/esm/UnexpectedErrors.js");
|
|
15801
15747
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -15961,9 +15907,9 @@ class BeEventList {
|
|
|
15961
15907
|
"use strict";
|
|
15962
15908
|
__webpack_require__.r(__webpack_exports__);
|
|
15963
15909
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15964
|
-
/* harmony export */ DbOpcode: () => (/* binding */ DbOpcode),
|
|
15965
|
-
/* harmony export */ DbResult: () => (/* binding */ DbResult),
|
|
15966
|
-
/* harmony export */ OpenMode: () => (/* binding */ OpenMode)
|
|
15910
|
+
/* harmony export */ "DbOpcode": () => (/* binding */ DbOpcode),
|
|
15911
|
+
/* harmony export */ "DbResult": () => (/* binding */ DbResult),
|
|
15912
|
+
/* harmony export */ "OpenMode": () => (/* binding */ OpenMode)
|
|
15967
15913
|
/* harmony export */ });
|
|
15968
15914
|
/*---------------------------------------------------------------------------------------------
|
|
15969
15915
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -16160,17 +16106,17 @@ var DbResult;
|
|
|
16160
16106
|
"use strict";
|
|
16161
16107
|
__webpack_require__.r(__webpack_exports__);
|
|
16162
16108
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16163
|
-
/* harmony export */ BentleyError: () => (/* binding */ BentleyError),
|
|
16164
|
-
/* harmony export */ BentleyStatus: () => (/* binding */ BentleyStatus),
|
|
16165
|
-
/* harmony export */ BriefcaseStatus: () => (/* binding */ BriefcaseStatus),
|
|
16166
|
-
/* harmony export */ ChangeSetStatus: () => (/* binding */ ChangeSetStatus),
|
|
16167
|
-
/* harmony export */ GeoServiceStatus: () => (/* binding */ GeoServiceStatus),
|
|
16168
|
-
/* harmony export */ HttpStatus: () => (/* binding */ HttpStatus),
|
|
16169
|
-
/* harmony export */ IModelHubStatus: () => (/* binding */ IModelHubStatus),
|
|
16170
|
-
/* harmony export */ IModelStatus: () => (/* binding */ IModelStatus),
|
|
16171
|
-
/* harmony export */ RealityDataStatus: () => (/* binding */ RealityDataStatus),
|
|
16172
|
-
/* harmony export */ RepositoryStatus: () => (/* binding */ RepositoryStatus),
|
|
16173
|
-
/* harmony export */ RpcInterfaceStatus: () => (/* binding */ RpcInterfaceStatus)
|
|
16109
|
+
/* harmony export */ "BentleyError": () => (/* binding */ BentleyError),
|
|
16110
|
+
/* harmony export */ "BentleyStatus": () => (/* binding */ BentleyStatus),
|
|
16111
|
+
/* harmony export */ "BriefcaseStatus": () => (/* binding */ BriefcaseStatus),
|
|
16112
|
+
/* harmony export */ "ChangeSetStatus": () => (/* binding */ ChangeSetStatus),
|
|
16113
|
+
/* harmony export */ "GeoServiceStatus": () => (/* binding */ GeoServiceStatus),
|
|
16114
|
+
/* harmony export */ "HttpStatus": () => (/* binding */ HttpStatus),
|
|
16115
|
+
/* harmony export */ "IModelHubStatus": () => (/* binding */ IModelHubStatus),
|
|
16116
|
+
/* harmony export */ "IModelStatus": () => (/* binding */ IModelStatus),
|
|
16117
|
+
/* harmony export */ "RealityDataStatus": () => (/* binding */ RealityDataStatus),
|
|
16118
|
+
/* harmony export */ "RepositoryStatus": () => (/* binding */ RepositoryStatus),
|
|
16119
|
+
/* harmony export */ "RpcInterfaceStatus": () => (/* binding */ RpcInterfaceStatus)
|
|
16174
16120
|
/* harmony export */ });
|
|
16175
16121
|
/* harmony import */ var _BeSQLite__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeSQLite */ "../bentley/lib/esm/BeSQLite.js");
|
|
16176
16122
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -16885,7 +16831,7 @@ class BentleyError extends Error {
|
|
|
16885
16831
|
"use strict";
|
|
16886
16832
|
__webpack_require__.r(__webpack_exports__);
|
|
16887
16833
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16888
|
-
/* harmony export */ BentleyLoggerCategory: () => (/* binding */ BentleyLoggerCategory)
|
|
16834
|
+
/* harmony export */ "BentleyLoggerCategory": () => (/* binding */ BentleyLoggerCategory)
|
|
16889
16835
|
/* harmony export */ });
|
|
16890
16836
|
/*---------------------------------------------------------------------------------------------
|
|
16891
16837
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -16916,7 +16862,7 @@ var BentleyLoggerCategory;
|
|
|
16916
16862
|
"use strict";
|
|
16917
16863
|
__webpack_require__.r(__webpack_exports__);
|
|
16918
16864
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16919
|
-
/* harmony export */ ByteStream: () => (/* binding */ ByteStream)
|
|
16865
|
+
/* harmony export */ "ByteStream": () => (/* binding */ ByteStream)
|
|
16920
16866
|
/* harmony export */ });
|
|
16921
16867
|
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
|
|
16922
16868
|
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../bentley/lib/esm/Id.js");
|
|
@@ -17088,8 +17034,8 @@ class ByteStream {
|
|
|
17088
17034
|
"use strict";
|
|
17089
17035
|
__webpack_require__.r(__webpack_exports__);
|
|
17090
17036
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17091
|
-
/* harmony export */ isProperSubclassOf: () => (/* binding */ isProperSubclassOf),
|
|
17092
|
-
/* harmony export */ isSubclassOf: () => (/* binding */ isSubclassOf)
|
|
17037
|
+
/* harmony export */ "isProperSubclassOf": () => (/* binding */ isProperSubclassOf),
|
|
17038
|
+
/* harmony export */ "isSubclassOf": () => (/* binding */ isSubclassOf)
|
|
17093
17039
|
/* harmony export */ });
|
|
17094
17040
|
/*---------------------------------------------------------------------------------------------
|
|
17095
17041
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -17131,15 +17077,15 @@ function isSubclassOf(subclass, superclass) {
|
|
|
17131
17077
|
"use strict";
|
|
17132
17078
|
__webpack_require__.r(__webpack_exports__);
|
|
17133
17079
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17134
|
-
/* harmony export */ areEqualPossiblyUndefined: () => (/* binding */ areEqualPossiblyUndefined),
|
|
17135
|
-
/* harmony export */ compareBooleans: () => (/* binding */ compareBooleans),
|
|
17136
|
-
/* harmony export */ compareBooleansOrUndefined: () => (/* binding */ compareBooleansOrUndefined),
|
|
17137
|
-
/* harmony export */ compareNumbers: () => (/* binding */ compareNumbers),
|
|
17138
|
-
/* harmony export */ compareNumbersOrUndefined: () => (/* binding */ compareNumbersOrUndefined),
|
|
17139
|
-
/* harmony export */ comparePossiblyUndefined: () => (/* binding */ comparePossiblyUndefined),
|
|
17140
|
-
/* harmony export */ compareStrings: () => (/* binding */ compareStrings),
|
|
17141
|
-
/* harmony export */ compareStringsOrUndefined: () => (/* binding */ compareStringsOrUndefined),
|
|
17142
|
-
/* harmony export */ compareWithTolerance: () => (/* binding */ compareWithTolerance)
|
|
17080
|
+
/* harmony export */ "areEqualPossiblyUndefined": () => (/* binding */ areEqualPossiblyUndefined),
|
|
17081
|
+
/* harmony export */ "compareBooleans": () => (/* binding */ compareBooleans),
|
|
17082
|
+
/* harmony export */ "compareBooleansOrUndefined": () => (/* binding */ compareBooleansOrUndefined),
|
|
17083
|
+
/* harmony export */ "compareNumbers": () => (/* binding */ compareNumbers),
|
|
17084
|
+
/* harmony export */ "compareNumbersOrUndefined": () => (/* binding */ compareNumbersOrUndefined),
|
|
17085
|
+
/* harmony export */ "comparePossiblyUndefined": () => (/* binding */ comparePossiblyUndefined),
|
|
17086
|
+
/* harmony export */ "compareStrings": () => (/* binding */ compareStrings),
|
|
17087
|
+
/* harmony export */ "compareStringsOrUndefined": () => (/* binding */ compareStringsOrUndefined),
|
|
17088
|
+
/* harmony export */ "compareWithTolerance": () => (/* binding */ compareWithTolerance)
|
|
17143
17089
|
/* harmony export */ });
|
|
17144
17090
|
/*---------------------------------------------------------------------------------------------
|
|
17145
17091
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -17217,9 +17163,9 @@ function areEqualPossiblyUndefined(t, u, areEqual) {
|
|
|
17217
17163
|
"use strict";
|
|
17218
17164
|
__webpack_require__.r(__webpack_exports__);
|
|
17219
17165
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17220
|
-
/* harmony export */ CompressedId64Set: () => (/* binding */ CompressedId64Set),
|
|
17221
|
-
/* harmony export */ MutableCompressedId64Set: () => (/* binding */ MutableCompressedId64Set),
|
|
17222
|
-
/* harmony export */ OrderedId64Array: () => (/* binding */ OrderedId64Array)
|
|
17166
|
+
/* harmony export */ "CompressedId64Set": () => (/* binding */ CompressedId64Set),
|
|
17167
|
+
/* harmony export */ "MutableCompressedId64Set": () => (/* binding */ MutableCompressedId64Set),
|
|
17168
|
+
/* harmony export */ "OrderedId64Array": () => (/* binding */ OrderedId64Array)
|
|
17223
17169
|
/* harmony export */ });
|
|
17224
17170
|
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
|
|
17225
17171
|
/* harmony import */ var _Id__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Id */ "../bentley/lib/esm/Id.js");
|
|
@@ -17661,7 +17607,7 @@ class MutableCompressedId64Set {
|
|
|
17661
17607
|
"use strict";
|
|
17662
17608
|
__webpack_require__.r(__webpack_exports__);
|
|
17663
17609
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17664
|
-
/* harmony export */ Dictionary: () => (/* binding */ Dictionary)
|
|
17610
|
+
/* harmony export */ "Dictionary": () => (/* binding */ Dictionary)
|
|
17665
17611
|
/* harmony export */ });
|
|
17666
17612
|
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../bentley/lib/esm/SortedArray.js");
|
|
17667
17613
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -17876,11 +17822,11 @@ class Dictionary {
|
|
|
17876
17822
|
"use strict";
|
|
17877
17823
|
__webpack_require__.r(__webpack_exports__);
|
|
17878
17824
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17879
|
-
/* harmony export */ DisposableList: () => (/* binding */ DisposableList),
|
|
17880
|
-
/* harmony export */ dispose: () => (/* binding */ dispose),
|
|
17881
|
-
/* harmony export */ disposeArray: () => (/* binding */ disposeArray),
|
|
17882
|
-
/* harmony export */ isIDisposable: () => (/* binding */ isIDisposable),
|
|
17883
|
-
/* harmony export */ using: () => (/* binding */ using)
|
|
17825
|
+
/* harmony export */ "DisposableList": () => (/* binding */ DisposableList),
|
|
17826
|
+
/* harmony export */ "dispose": () => (/* binding */ dispose),
|
|
17827
|
+
/* harmony export */ "disposeArray": () => (/* binding */ disposeArray),
|
|
17828
|
+
/* harmony export */ "isIDisposable": () => (/* binding */ isIDisposable),
|
|
17829
|
+
/* harmony export */ "using": () => (/* binding */ using)
|
|
17884
17830
|
/* harmony export */ });
|
|
17885
17831
|
/*---------------------------------------------------------------------------------------------
|
|
17886
17832
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -18007,9 +17953,9 @@ class DisposableList {
|
|
|
18007
17953
|
"use strict";
|
|
18008
17954
|
__webpack_require__.r(__webpack_exports__);
|
|
18009
17955
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18010
|
-
/* harmony export */ Guid: () => (/* binding */ Guid),
|
|
18011
|
-
/* harmony export */ Id64: () => (/* binding */ Id64),
|
|
18012
|
-
/* harmony export */ TransientIdSequence: () => (/* binding */ TransientIdSequence)
|
|
17956
|
+
/* harmony export */ "Guid": () => (/* binding */ Guid),
|
|
17957
|
+
/* harmony export */ "Id64": () => (/* binding */ Id64),
|
|
17958
|
+
/* harmony export */ "TransientIdSequence": () => (/* binding */ TransientIdSequence)
|
|
18013
17959
|
/* harmony export */ });
|
|
18014
17960
|
/*---------------------------------------------------------------------------------------------
|
|
18015
17961
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -18663,8 +18609,8 @@ var Guid;
|
|
|
18663
18609
|
"use strict";
|
|
18664
18610
|
__webpack_require__.r(__webpack_exports__);
|
|
18665
18611
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18666
|
-
/* harmony export */ IndexMap: () => (/* binding */ IndexMap),
|
|
18667
|
-
/* harmony export */ IndexedValue: () => (/* binding */ IndexedValue)
|
|
18612
|
+
/* harmony export */ "IndexMap": () => (/* binding */ IndexMap),
|
|
18613
|
+
/* harmony export */ "IndexedValue": () => (/* binding */ IndexedValue)
|
|
18668
18614
|
/* harmony export */ });
|
|
18669
18615
|
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../bentley/lib/esm/SortedArray.js");
|
|
18670
18616
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -18786,7 +18732,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18786
18732
|
"use strict";
|
|
18787
18733
|
__webpack_require__.r(__webpack_exports__);
|
|
18788
18734
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18789
|
-
/* harmony export */ JsonUtils: () => (/* binding */ JsonUtils)
|
|
18735
|
+
/* harmony export */ "JsonUtils": () => (/* binding */ JsonUtils)
|
|
18790
18736
|
/* harmony export */ });
|
|
18791
18737
|
/*---------------------------------------------------------------------------------------------
|
|
18792
18738
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -18949,10 +18895,10 @@ var JsonUtils;
|
|
|
18949
18895
|
"use strict";
|
|
18950
18896
|
__webpack_require__.r(__webpack_exports__);
|
|
18951
18897
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
18952
|
-
/* harmony export */ Entry: () => (/* binding */ Entry),
|
|
18953
|
-
/* harmony export */ LRUCache: () => (/* binding */ LRUCache),
|
|
18954
|
-
/* harmony export */ LRUDictionary: () => (/* binding */ LRUDictionary),
|
|
18955
|
-
/* harmony export */ LRUMap: () => (/* binding */ LRUMap)
|
|
18898
|
+
/* harmony export */ "Entry": () => (/* binding */ Entry),
|
|
18899
|
+
/* harmony export */ "LRUCache": () => (/* binding */ LRUCache),
|
|
18900
|
+
/* harmony export */ "LRUDictionary": () => (/* binding */ LRUDictionary),
|
|
18901
|
+
/* harmony export */ "LRUMap": () => (/* binding */ LRUMap)
|
|
18956
18902
|
/* harmony export */ });
|
|
18957
18903
|
/* harmony import */ var _Dictionary__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Dictionary */ "../bentley/lib/esm/Dictionary.js");
|
|
18958
18904
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -19294,9 +19240,9 @@ class LRUDictionary extends LRUCache {
|
|
|
19294
19240
|
"use strict";
|
|
19295
19241
|
__webpack_require__.r(__webpack_exports__);
|
|
19296
19242
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19297
|
-
/* harmony export */ LogLevel: () => (/* binding */ LogLevel),
|
|
19298
|
-
/* harmony export */ Logger: () => (/* binding */ Logger),
|
|
19299
|
-
/* harmony export */ PerfLogger: () => (/* binding */ PerfLogger)
|
|
19243
|
+
/* harmony export */ "LogLevel": () => (/* binding */ LogLevel),
|
|
19244
|
+
/* harmony export */ "Logger": () => (/* binding */ Logger),
|
|
19245
|
+
/* harmony export */ "PerfLogger": () => (/* binding */ PerfLogger)
|
|
19300
19246
|
/* harmony export */ });
|
|
19301
19247
|
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../bentley/lib/esm/BentleyError.js");
|
|
19302
19248
|
/* harmony import */ var _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BentleyLoggerCategory */ "../bentley/lib/esm/BentleyLoggerCategory.js");
|
|
@@ -19566,7 +19512,7 @@ PerfLogger._severity = LogLevel.Info;
|
|
|
19566
19512
|
"use strict";
|
|
19567
19513
|
__webpack_require__.r(__webpack_exports__);
|
|
19568
19514
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19569
|
-
/* harmony export */ ObservableSet: () => (/* binding */ ObservableSet)
|
|
19515
|
+
/* harmony export */ "ObservableSet": () => (/* binding */ ObservableSet)
|
|
19570
19516
|
/* harmony export */ });
|
|
19571
19517
|
/* harmony import */ var _BeEvent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BeEvent */ "../bentley/lib/esm/BeEvent.js");
|
|
19572
19518
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -19629,8 +19575,8 @@ class ObservableSet extends Set {
|
|
|
19629
19575
|
"use strict";
|
|
19630
19576
|
__webpack_require__.r(__webpack_exports__);
|
|
19631
19577
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19632
|
-
/* harmony export */ AbandonedError: () => (/* binding */ AbandonedError),
|
|
19633
|
-
/* harmony export */ OneAtATimeAction: () => (/* binding */ OneAtATimeAction)
|
|
19578
|
+
/* harmony export */ "AbandonedError": () => (/* binding */ AbandonedError),
|
|
19579
|
+
/* harmony export */ "OneAtATimeAction": () => (/* binding */ OneAtATimeAction)
|
|
19634
19580
|
/* harmony export */ });
|
|
19635
19581
|
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../bentley/lib/esm/BentleyError.js");
|
|
19636
19582
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -19735,7 +19681,7 @@ class OneAtATimeAction {
|
|
|
19735
19681
|
"use strict";
|
|
19736
19682
|
__webpack_require__.r(__webpack_exports__);
|
|
19737
19683
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19738
|
-
/* harmony export */ OrderedId64Iterable: () => (/* binding */ OrderedId64Iterable)
|
|
19684
|
+
/* harmony export */ "OrderedId64Iterable": () => (/* binding */ OrderedId64Iterable)
|
|
19739
19685
|
/* harmony export */ });
|
|
19740
19686
|
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
|
|
19741
19687
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -19983,8 +19929,8 @@ var OrderedId64Iterable;
|
|
|
19983
19929
|
"use strict";
|
|
19984
19930
|
__webpack_require__.r(__webpack_exports__);
|
|
19985
19931
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19986
|
-
/* harmony export */ OrderedSet: () => (/* binding */ OrderedSet),
|
|
19987
|
-
/* harmony export */ ReadonlyOrderedSet: () => (/* binding */ ReadonlyOrderedSet)
|
|
19932
|
+
/* harmony export */ "OrderedSet": () => (/* binding */ OrderedSet),
|
|
19933
|
+
/* harmony export */ "ReadonlyOrderedSet": () => (/* binding */ ReadonlyOrderedSet)
|
|
19988
19934
|
/* harmony export */ });
|
|
19989
19935
|
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../bentley/lib/esm/SortedArray.js");
|
|
19990
19936
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -20059,7 +20005,7 @@ class OrderedSet extends ReadonlyOrderedSet {
|
|
|
20059
20005
|
"use strict";
|
|
20060
20006
|
__webpack_require__.r(__webpack_exports__);
|
|
20061
20007
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20062
|
-
/* harmony export */ PriorityQueue: () => (/* binding */ PriorityQueue)
|
|
20008
|
+
/* harmony export */ "PriorityQueue": () => (/* binding */ PriorityQueue)
|
|
20063
20009
|
/* harmony export */ });
|
|
20064
20010
|
/* harmony import */ var _SortedArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SortedArray */ "../bentley/lib/esm/SortedArray.js");
|
|
20065
20011
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -20211,7 +20157,7 @@ class PriorityQueue {
|
|
|
20211
20157
|
"use strict";
|
|
20212
20158
|
__webpack_require__.r(__webpack_exports__);
|
|
20213
20159
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20214
|
-
/* harmony export */ ProcessDetector: () => (/* binding */ ProcessDetector)
|
|
20160
|
+
/* harmony export */ "ProcessDetector": () => (/* binding */ ProcessDetector)
|
|
20215
20161
|
/* harmony export */ });
|
|
20216
20162
|
/*---------------------------------------------------------------------------------------------
|
|
20217
20163
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -20293,11 +20239,11 @@ class ProcessDetector {
|
|
|
20293
20239
|
"use strict";
|
|
20294
20240
|
__webpack_require__.r(__webpack_exports__);
|
|
20295
20241
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20296
|
-
/* harmony export */ DuplicatePolicy: () => (/* binding */ DuplicatePolicy),
|
|
20297
|
-
/* harmony export */ ReadonlySortedArray: () => (/* binding */ ReadonlySortedArray),
|
|
20298
|
-
/* harmony export */ SortedArray: () => (/* binding */ SortedArray),
|
|
20299
|
-
/* harmony export */ lowerBound: () => (/* binding */ lowerBound),
|
|
20300
|
-
/* harmony export */ shallowClone: () => (/* binding */ shallowClone)
|
|
20242
|
+
/* harmony export */ "DuplicatePolicy": () => (/* binding */ DuplicatePolicy),
|
|
20243
|
+
/* harmony export */ "ReadonlySortedArray": () => (/* binding */ ReadonlySortedArray),
|
|
20244
|
+
/* harmony export */ "SortedArray": () => (/* binding */ SortedArray),
|
|
20245
|
+
/* harmony export */ "lowerBound": () => (/* binding */ lowerBound),
|
|
20246
|
+
/* harmony export */ "shallowClone": () => (/* binding */ shallowClone)
|
|
20301
20247
|
/* harmony export */ });
|
|
20302
20248
|
/*---------------------------------------------------------------------------------------------
|
|
20303
20249
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -20620,9 +20566,9 @@ class SortedArray extends ReadonlySortedArray {
|
|
|
20620
20566
|
"use strict";
|
|
20621
20567
|
__webpack_require__.r(__webpack_exports__);
|
|
20622
20568
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20623
|
-
/* harmony export */ ErrorCategory: () => (/* binding */ ErrorCategory),
|
|
20624
|
-
/* harmony export */ StatusCategory: () => (/* binding */ StatusCategory),
|
|
20625
|
-
/* harmony export */ SuccessCategory: () => (/* binding */ SuccessCategory)
|
|
20569
|
+
/* harmony export */ "ErrorCategory": () => (/* binding */ ErrorCategory),
|
|
20570
|
+
/* harmony export */ "StatusCategory": () => (/* binding */ StatusCategory),
|
|
20571
|
+
/* harmony export */ "SuccessCategory": () => (/* binding */ SuccessCategory)
|
|
20626
20572
|
/* harmony export */ });
|
|
20627
20573
|
/* harmony import */ var _BentleyError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BentleyError */ "../bentley/lib/esm/BentleyError.js");
|
|
20628
20574
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -21093,9 +21039,9 @@ function lookupCategory(error) {
|
|
|
21093
21039
|
"use strict";
|
|
21094
21040
|
__webpack_require__.r(__webpack_exports__);
|
|
21095
21041
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21096
|
-
/* harmony export */ base64StringToUint8Array: () => (/* binding */ base64StringToUint8Array),
|
|
21097
|
-
/* harmony export */ utf8ToString: () => (/* binding */ utf8ToString),
|
|
21098
|
-
/* harmony export */ utf8ToStringPolyfill: () => (/* binding */ utf8ToStringPolyfill)
|
|
21042
|
+
/* harmony export */ "base64StringToUint8Array": () => (/* binding */ base64StringToUint8Array),
|
|
21043
|
+
/* harmony export */ "utf8ToString": () => (/* binding */ utf8ToString),
|
|
21044
|
+
/* harmony export */ "utf8ToStringPolyfill": () => (/* binding */ utf8ToStringPolyfill)
|
|
21099
21045
|
/* harmony export */ });
|
|
21100
21046
|
/*---------------------------------------------------------------------------------------------
|
|
21101
21047
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -21252,9 +21198,9 @@ function base64StringToUint8Array(base64) {
|
|
|
21252
21198
|
"use strict";
|
|
21253
21199
|
__webpack_require__.r(__webpack_exports__);
|
|
21254
21200
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21255
|
-
/* harmony export */ BeDuration: () => (/* binding */ BeDuration),
|
|
21256
|
-
/* harmony export */ BeTimePoint: () => (/* binding */ BeTimePoint),
|
|
21257
|
-
/* harmony export */ StopWatch: () => (/* binding */ StopWatch)
|
|
21201
|
+
/* harmony export */ "BeDuration": () => (/* binding */ BeDuration),
|
|
21202
|
+
/* harmony export */ "BeTimePoint": () => (/* binding */ BeTimePoint),
|
|
21203
|
+
/* harmony export */ "StopWatch": () => (/* binding */ StopWatch)
|
|
21258
21204
|
/* harmony export */ });
|
|
21259
21205
|
/*---------------------------------------------------------------------------------------------
|
|
21260
21206
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -21415,8 +21361,8 @@ class StopWatch {
|
|
|
21415
21361
|
"use strict";
|
|
21416
21362
|
__webpack_require__.r(__webpack_exports__);
|
|
21417
21363
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21418
|
-
/* harmony export */ SpanKind: () => (/* binding */ SpanKind),
|
|
21419
|
-
/* harmony export */ Tracing: () => (/* binding */ Tracing)
|
|
21364
|
+
/* harmony export */ "SpanKind": () => (/* binding */ SpanKind),
|
|
21365
|
+
/* harmony export */ "Tracing": () => (/* binding */ Tracing)
|
|
21420
21366
|
/* harmony export */ });
|
|
21421
21367
|
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../bentley/lib/esm/Logger.js");
|
|
21422
21368
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -21431,6 +21377,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21431
21377
|
/**
|
|
21432
21378
|
* Mirrors the SpanKind enum from [@opentelemetry/api](https://open-telemetry.github.io/opentelemetry-js/enums/_opentelemetry_api.SpanKind.html)
|
|
21433
21379
|
* @public
|
|
21380
|
+
* @deprecated in 4.4 - OpenTelemetry Tracing helpers will become internal in a future release. Apps should use `@opentelemetry/api` directly.
|
|
21434
21381
|
*/
|
|
21435
21382
|
var SpanKind;
|
|
21436
21383
|
(function (SpanKind) {
|
|
@@ -21486,9 +21433,11 @@ function* getFlatEntries(obj, path = "") {
|
|
|
21486
21433
|
function flattenObject(obj) {
|
|
21487
21434
|
return Object.fromEntries(getFlatEntries(obj));
|
|
21488
21435
|
}
|
|
21436
|
+
/* eslint-disable deprecation/deprecation -- lots of self-references here... */
|
|
21489
21437
|
/**
|
|
21490
21438
|
* Enables OpenTelemetry tracing in addition to traditional logging.
|
|
21491
21439
|
* @public
|
|
21440
|
+
* @deprecated in 4.4 - OpenTelemetry Tracing helpers will become internal in a future release. Apps should use `@opentelemetry/api` directly.
|
|
21492
21441
|
*/
|
|
21493
21442
|
class Tracing {
|
|
21494
21443
|
/**
|
|
@@ -21520,6 +21469,14 @@ class Tracing {
|
|
|
21520
21469
|
}
|
|
21521
21470
|
});
|
|
21522
21471
|
}
|
|
21472
|
+
/**
|
|
21473
|
+
* Adds a span event describing a runtime exception, as advised in OpenTelemetry documentation
|
|
21474
|
+
* @param e error (exception) object
|
|
21475
|
+
* @internal
|
|
21476
|
+
*/
|
|
21477
|
+
static recordException(e) {
|
|
21478
|
+
Tracing._openTelemetry?.trace.getSpan(Tracing._openTelemetry.context.active())?.recordException(e);
|
|
21479
|
+
}
|
|
21523
21480
|
/**
|
|
21524
21481
|
* Enable logging to OpenTelemetry. [[Tracing.withSpan]] will be enabled, all log entries will be attached to active span as span events.
|
|
21525
21482
|
* [IModelHost.startup]($backend) will call this automatically if the `enableOpenTelemetry` option is enabled and it succeeds in requiring `@opentelemetry/api`.
|
|
@@ -21569,6 +21526,7 @@ class Tracing {
|
|
|
21569
21526
|
Tracing._openTelemetry?.trace.getSpan(Tracing._openTelemetry.context.active())?.setAttributes(attributes);
|
|
21570
21527
|
}
|
|
21571
21528
|
}
|
|
21529
|
+
/* eslint-enable deprecation/deprecation */
|
|
21572
21530
|
|
|
21573
21531
|
|
|
21574
21532
|
/***/ }),
|
|
@@ -21582,7 +21540,7 @@ class Tracing {
|
|
|
21582
21540
|
"use strict";
|
|
21583
21541
|
__webpack_require__.r(__webpack_exports__);
|
|
21584
21542
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21585
|
-
/* harmony export */ TupleKeyedMap: () => (/* binding */ TupleKeyedMap)
|
|
21543
|
+
/* harmony export */ "TupleKeyedMap": () => (/* binding */ TupleKeyedMap)
|
|
21586
21544
|
/* harmony export */ });
|
|
21587
21545
|
/*---------------------------------------------------------------------------------------------
|
|
21588
21546
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -21695,11 +21653,11 @@ class TupleKeyedMap {
|
|
|
21695
21653
|
"use strict";
|
|
21696
21654
|
__webpack_require__.r(__webpack_exports__);
|
|
21697
21655
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21698
|
-
/* harmony export */ TypedArrayBuilder: () => (/* binding */ TypedArrayBuilder),
|
|
21699
|
-
/* harmony export */ Uint16ArrayBuilder: () => (/* binding */ Uint16ArrayBuilder),
|
|
21700
|
-
/* harmony export */ Uint32ArrayBuilder: () => (/* binding */ Uint32ArrayBuilder),
|
|
21701
|
-
/* harmony export */ Uint8ArrayBuilder: () => (/* binding */ Uint8ArrayBuilder),
|
|
21702
|
-
/* harmony export */ UintArrayBuilder: () => (/* binding */ UintArrayBuilder)
|
|
21656
|
+
/* harmony export */ "TypedArrayBuilder": () => (/* binding */ TypedArrayBuilder),
|
|
21657
|
+
/* harmony export */ "Uint16ArrayBuilder": () => (/* binding */ Uint16ArrayBuilder),
|
|
21658
|
+
/* harmony export */ "Uint32ArrayBuilder": () => (/* binding */ Uint32ArrayBuilder),
|
|
21659
|
+
/* harmony export */ "Uint8ArrayBuilder": () => (/* binding */ Uint8ArrayBuilder),
|
|
21660
|
+
/* harmony export */ "UintArrayBuilder": () => (/* binding */ UintArrayBuilder)
|
|
21703
21661
|
/* harmony export */ });
|
|
21704
21662
|
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
|
|
21705
21663
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -21913,7 +21871,7 @@ class UintArrayBuilder extends TypedArrayBuilder {
|
|
|
21913
21871
|
"use strict";
|
|
21914
21872
|
__webpack_require__.r(__webpack_exports__);
|
|
21915
21873
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21916
|
-
/* harmony export */ UnexpectedErrors: () => (/* binding */ UnexpectedErrors)
|
|
21874
|
+
/* harmony export */ "UnexpectedErrors": () => (/* binding */ UnexpectedErrors)
|
|
21917
21875
|
/* harmony export */ });
|
|
21918
21876
|
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../bentley/lib/esm/Logger.js");
|
|
21919
21877
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -21994,9 +21952,9 @@ UnexpectedErrors._handler = _a.errorLog; // default to error logging
|
|
|
21994
21952
|
"use strict";
|
|
21995
21953
|
__webpack_require__.r(__webpack_exports__);
|
|
21996
21954
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21997
|
-
/* harmony export */ asInstanceOf: () => (/* binding */ asInstanceOf),
|
|
21998
|
-
/* harmony export */ isInstanceOf: () => (/* binding */ isInstanceOf),
|
|
21999
|
-
/* harmony export */ omit: () => (/* binding */ omit)
|
|
21955
|
+
/* harmony export */ "asInstanceOf": () => (/* binding */ asInstanceOf),
|
|
21956
|
+
/* harmony export */ "isInstanceOf": () => (/* binding */ isInstanceOf),
|
|
21957
|
+
/* harmony export */ "omit": () => (/* binding */ omit)
|
|
22000
21958
|
/* harmony export */ });
|
|
22001
21959
|
/*---------------------------------------------------------------------------------------------
|
|
22002
21960
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -22045,7 +22003,7 @@ function omit(t, keys) {
|
|
|
22045
22003
|
"use strict";
|
|
22046
22004
|
__webpack_require__.r(__webpack_exports__);
|
|
22047
22005
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22048
|
-
/* harmony export */ YieldManager: () => (/* binding */ YieldManager)
|
|
22006
|
+
/* harmony export */ "YieldManager": () => (/* binding */ YieldManager)
|
|
22049
22007
|
/* harmony export */ });
|
|
22050
22008
|
/*---------------------------------------------------------------------------------------------
|
|
22051
22009
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -22098,95 +22056,95 @@ class YieldManager {
|
|
|
22098
22056
|
"use strict";
|
|
22099
22057
|
__webpack_require__.r(__webpack_exports__);
|
|
22100
22058
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22101
|
-
/* harmony export */ AbandonedError: () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.AbandonedError),
|
|
22102
|
-
/* harmony export */ BeDuration: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeDuration),
|
|
22103
|
-
/* harmony export */ BeEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEvent),
|
|
22104
|
-
/* harmony export */ BeEventList: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
|
|
22105
|
-
/* harmony export */ BeTimePoint: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeTimePoint),
|
|
22106
|
-
/* harmony export */ BeUiEvent: () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
|
|
22107
|
-
/* harmony export */ BentleyError: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
|
|
22108
|
-
/* harmony export */ BentleyLoggerCategory: () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
|
|
22109
|
-
/* harmony export */ BentleyStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
|
|
22110
|
-
/* harmony export */ BriefcaseStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BriefcaseStatus),
|
|
22111
|
-
/* harmony export */ ByteStream: () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
|
|
22112
|
-
/* harmony export */ ChangeSetStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
|
|
22113
|
-
/* harmony export */ CompressedId64Set: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
|
|
22114
|
-
/* harmony export */ DbOpcode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
|
|
22115
|
-
/* harmony export */ DbResult: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
|
|
22116
|
-
/* harmony export */ Dictionary: () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
|
|
22117
|
-
/* harmony export */ DisposableList: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
|
|
22118
|
-
/* harmony export */ DuplicatePolicy: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.DuplicatePolicy),
|
|
22119
|
-
/* harmony export */ Entry: () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.Entry),
|
|
22120
|
-
/* harmony export */ ErrorCategory: () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.ErrorCategory),
|
|
22121
|
-
/* harmony export */ GeoServiceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.GeoServiceStatus),
|
|
22122
|
-
/* harmony export */ Guid: () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Guid),
|
|
22123
|
-
/* harmony export */ HttpStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.HttpStatus),
|
|
22124
|
-
/* harmony export */ IModelHubStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelHubStatus),
|
|
22125
|
-
/* harmony export */ IModelStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelStatus),
|
|
22126
|
-
/* harmony export */ Id64: () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Id64),
|
|
22127
|
-
/* harmony export */ IndexMap: () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexMap),
|
|
22128
|
-
/* harmony export */ IndexedValue: () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexedValue),
|
|
22129
|
-
/* harmony export */ JsonUtils: () => (/* reexport safe */ _JsonUtils__WEBPACK_IMPORTED_MODULE_16__.JsonUtils),
|
|
22130
|
-
/* harmony export */ LRUCache: () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUCache),
|
|
22131
|
-
/* harmony export */ LRUDictionary: () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUDictionary),
|
|
22132
|
-
/* harmony export */ LRUMap: () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUMap),
|
|
22133
|
-
/* harmony export */ LogLevel: () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.LogLevel),
|
|
22134
|
-
/* harmony export */ Logger: () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.Logger),
|
|
22135
|
-
/* harmony export */ MutableCompressedId64Set: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.MutableCompressedId64Set),
|
|
22136
|
-
/* harmony export */ ObservableSet: () => (/* reexport safe */ _ObservableSet__WEBPACK_IMPORTED_MODULE_19__.ObservableSet),
|
|
22137
|
-
/* harmony export */ OneAtATimeAction: () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.OneAtATimeAction),
|
|
22138
|
-
/* harmony export */ OpenMode: () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.OpenMode),
|
|
22139
|
-
/* harmony export */ OrderedId64Array: () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.OrderedId64Array),
|
|
22140
|
-
/* harmony export */ OrderedId64Iterable: () => (/* reexport safe */ _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_21__.OrderedId64Iterable),
|
|
22141
|
-
/* harmony export */ OrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.OrderedSet),
|
|
22142
|
-
/* harmony export */ PerfLogger: () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.PerfLogger),
|
|
22143
|
-
/* harmony export */ PriorityQueue: () => (/* reexport safe */ _PriorityQueue__WEBPACK_IMPORTED_MODULE_24__.PriorityQueue),
|
|
22144
|
-
/* harmony export */ ProcessDetector: () => (/* reexport safe */ _ProcessDetector__WEBPACK_IMPORTED_MODULE_25__.ProcessDetector),
|
|
22145
|
-
/* harmony export */ ReadonlyOrderedSet: () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.ReadonlyOrderedSet),
|
|
22146
|
-
/* harmony export */ ReadonlySortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.ReadonlySortedArray),
|
|
22147
|
-
/* harmony export */ RealityDataStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
|
|
22148
|
-
/* harmony export */ RepositoryStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RepositoryStatus),
|
|
22149
|
-
/* harmony export */ RpcInterfaceStatus: () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
|
|
22150
|
-
/* harmony export */ SortedArray: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.SortedArray),
|
|
22151
|
-
/* harmony export */ SpanKind: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.SpanKind),
|
|
22152
|
-
/* harmony export */ StatusCategory: () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.StatusCategory),
|
|
22153
|
-
/* harmony export */ StopWatch: () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.StopWatch),
|
|
22154
|
-
/* harmony export */ SuccessCategory: () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.SuccessCategory),
|
|
22155
|
-
/* harmony export */ Tracing: () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.Tracing),
|
|
22156
|
-
/* harmony export */ TransientIdSequence: () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.TransientIdSequence),
|
|
22157
|
-
/* harmony export */ TupleKeyedMap: () => (/* reexport safe */ _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_30__.TupleKeyedMap),
|
|
22158
|
-
/* harmony export */ TypedArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.TypedArrayBuilder),
|
|
22159
|
-
/* harmony export */ Uint16ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint16ArrayBuilder),
|
|
22160
|
-
/* harmony export */ Uint32ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint32ArrayBuilder),
|
|
22161
|
-
/* harmony export */ Uint8ArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint8ArrayBuilder),
|
|
22162
|
-
/* harmony export */ UintArrayBuilder: () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.UintArrayBuilder),
|
|
22163
|
-
/* harmony export */ UnexpectedErrors: () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_32__.UnexpectedErrors),
|
|
22164
|
-
/* harmony export */ YieldManager: () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_34__.YieldManager),
|
|
22165
|
-
/* harmony export */ areEqualPossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
|
|
22166
|
-
/* harmony export */ asInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.asInstanceOf),
|
|
22167
|
-
/* harmony export */ assert: () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
|
|
22168
|
-
/* harmony export */ base64StringToUint8Array: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.base64StringToUint8Array),
|
|
22169
|
-
/* harmony export */ compareBooleans: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleans),
|
|
22170
|
-
/* harmony export */ compareBooleansOrUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleansOrUndefined),
|
|
22171
|
-
/* harmony export */ compareNumbers: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbers),
|
|
22172
|
-
/* harmony export */ compareNumbersOrUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbersOrUndefined),
|
|
22173
|
-
/* harmony export */ comparePossiblyUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.comparePossiblyUndefined),
|
|
22174
|
-
/* harmony export */ compareStrings: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStrings),
|
|
22175
|
-
/* harmony export */ compareStringsOrUndefined: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStringsOrUndefined),
|
|
22176
|
-
/* harmony export */ compareWithTolerance: () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareWithTolerance),
|
|
22177
|
-
/* harmony export */ dispose: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.dispose),
|
|
22178
|
-
/* harmony export */ disposeArray: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.disposeArray),
|
|
22179
|
-
/* harmony export */ isIDisposable: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
|
|
22180
|
-
/* harmony export */ isInstanceOf: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.isInstanceOf),
|
|
22181
|
-
/* harmony export */ isProperSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
|
|
22182
|
-
/* harmony export */ isSubclassOf: () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
|
|
22183
|
-
/* harmony export */ lowerBound: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.lowerBound),
|
|
22184
|
-
/* harmony export */ omit: () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.omit),
|
|
22185
|
-
/* harmony export */ partitionArray: () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_23__.partitionArray),
|
|
22186
|
-
/* harmony export */ shallowClone: () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.shallowClone),
|
|
22187
|
-
/* harmony export */ using: () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
|
|
22188
|
-
/* harmony export */ utf8ToString: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToString),
|
|
22189
|
-
/* harmony export */ utf8ToStringPolyfill: () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToStringPolyfill)
|
|
22059
|
+
/* harmony export */ "AbandonedError": () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.AbandonedError),
|
|
22060
|
+
/* harmony export */ "BeDuration": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeDuration),
|
|
22061
|
+
/* harmony export */ "BeEvent": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEvent),
|
|
22062
|
+
/* harmony export */ "BeEventList": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
|
|
22063
|
+
/* harmony export */ "BeTimePoint": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeTimePoint),
|
|
22064
|
+
/* harmony export */ "BeUiEvent": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
|
|
22065
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
|
|
22066
|
+
/* harmony export */ "BentleyLoggerCategory": () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
|
|
22067
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
|
|
22068
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BriefcaseStatus),
|
|
22069
|
+
/* harmony export */ "ByteStream": () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
|
|
22070
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
|
|
22071
|
+
/* harmony export */ "CompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
|
|
22072
|
+
/* harmony export */ "DbOpcode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
|
|
22073
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
|
|
22074
|
+
/* harmony export */ "Dictionary": () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
|
|
22075
|
+
/* harmony export */ "DisposableList": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
|
|
22076
|
+
/* harmony export */ "DuplicatePolicy": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.DuplicatePolicy),
|
|
22077
|
+
/* harmony export */ "Entry": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.Entry),
|
|
22078
|
+
/* harmony export */ "ErrorCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.ErrorCategory),
|
|
22079
|
+
/* harmony export */ "GeoServiceStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.GeoServiceStatus),
|
|
22080
|
+
/* harmony export */ "Guid": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Guid),
|
|
22081
|
+
/* harmony export */ "HttpStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.HttpStatus),
|
|
22082
|
+
/* harmony export */ "IModelHubStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelHubStatus),
|
|
22083
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelStatus),
|
|
22084
|
+
/* harmony export */ "Id64": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Id64),
|
|
22085
|
+
/* harmony export */ "IndexMap": () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexMap),
|
|
22086
|
+
/* harmony export */ "IndexedValue": () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexedValue),
|
|
22087
|
+
/* harmony export */ "JsonUtils": () => (/* reexport safe */ _JsonUtils__WEBPACK_IMPORTED_MODULE_16__.JsonUtils),
|
|
22088
|
+
/* harmony export */ "LRUCache": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUCache),
|
|
22089
|
+
/* harmony export */ "LRUDictionary": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUDictionary),
|
|
22090
|
+
/* harmony export */ "LRUMap": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUMap),
|
|
22091
|
+
/* harmony export */ "LogLevel": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.LogLevel),
|
|
22092
|
+
/* harmony export */ "Logger": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.Logger),
|
|
22093
|
+
/* harmony export */ "MutableCompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.MutableCompressedId64Set),
|
|
22094
|
+
/* harmony export */ "ObservableSet": () => (/* reexport safe */ _ObservableSet__WEBPACK_IMPORTED_MODULE_19__.ObservableSet),
|
|
22095
|
+
/* harmony export */ "OneAtATimeAction": () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.OneAtATimeAction),
|
|
22096
|
+
/* harmony export */ "OpenMode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.OpenMode),
|
|
22097
|
+
/* harmony export */ "OrderedId64Array": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.OrderedId64Array),
|
|
22098
|
+
/* harmony export */ "OrderedId64Iterable": () => (/* reexport safe */ _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_21__.OrderedId64Iterable),
|
|
22099
|
+
/* harmony export */ "OrderedSet": () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.OrderedSet),
|
|
22100
|
+
/* harmony export */ "PerfLogger": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.PerfLogger),
|
|
22101
|
+
/* harmony export */ "PriorityQueue": () => (/* reexport safe */ _PriorityQueue__WEBPACK_IMPORTED_MODULE_24__.PriorityQueue),
|
|
22102
|
+
/* harmony export */ "ProcessDetector": () => (/* reexport safe */ _ProcessDetector__WEBPACK_IMPORTED_MODULE_25__.ProcessDetector),
|
|
22103
|
+
/* harmony export */ "ReadonlyOrderedSet": () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.ReadonlyOrderedSet),
|
|
22104
|
+
/* harmony export */ "ReadonlySortedArray": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.ReadonlySortedArray),
|
|
22105
|
+
/* harmony export */ "RealityDataStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
|
|
22106
|
+
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RepositoryStatus),
|
|
22107
|
+
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
|
|
22108
|
+
/* harmony export */ "SortedArray": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.SortedArray),
|
|
22109
|
+
/* harmony export */ "SpanKind": () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.SpanKind),
|
|
22110
|
+
/* harmony export */ "StatusCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.StatusCategory),
|
|
22111
|
+
/* harmony export */ "StopWatch": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.StopWatch),
|
|
22112
|
+
/* harmony export */ "SuccessCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.SuccessCategory),
|
|
22113
|
+
/* harmony export */ "Tracing": () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.Tracing),
|
|
22114
|
+
/* harmony export */ "TransientIdSequence": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.TransientIdSequence),
|
|
22115
|
+
/* harmony export */ "TupleKeyedMap": () => (/* reexport safe */ _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_30__.TupleKeyedMap),
|
|
22116
|
+
/* harmony export */ "TypedArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.TypedArrayBuilder),
|
|
22117
|
+
/* harmony export */ "Uint16ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint16ArrayBuilder),
|
|
22118
|
+
/* harmony export */ "Uint32ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint32ArrayBuilder),
|
|
22119
|
+
/* harmony export */ "Uint8ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint8ArrayBuilder),
|
|
22120
|
+
/* harmony export */ "UintArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.UintArrayBuilder),
|
|
22121
|
+
/* harmony export */ "UnexpectedErrors": () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_32__.UnexpectedErrors),
|
|
22122
|
+
/* harmony export */ "YieldManager": () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_34__.YieldManager),
|
|
22123
|
+
/* harmony export */ "areEqualPossiblyUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
|
|
22124
|
+
/* harmony export */ "asInstanceOf": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.asInstanceOf),
|
|
22125
|
+
/* harmony export */ "assert": () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
|
|
22126
|
+
/* harmony export */ "base64StringToUint8Array": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.base64StringToUint8Array),
|
|
22127
|
+
/* harmony export */ "compareBooleans": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleans),
|
|
22128
|
+
/* harmony export */ "compareBooleansOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleansOrUndefined),
|
|
22129
|
+
/* harmony export */ "compareNumbers": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbers),
|
|
22130
|
+
/* harmony export */ "compareNumbersOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbersOrUndefined),
|
|
22131
|
+
/* harmony export */ "comparePossiblyUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.comparePossiblyUndefined),
|
|
22132
|
+
/* harmony export */ "compareStrings": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStrings),
|
|
22133
|
+
/* harmony export */ "compareStringsOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStringsOrUndefined),
|
|
22134
|
+
/* harmony export */ "compareWithTolerance": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareWithTolerance),
|
|
22135
|
+
/* harmony export */ "dispose": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.dispose),
|
|
22136
|
+
/* harmony export */ "disposeArray": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.disposeArray),
|
|
22137
|
+
/* harmony export */ "isIDisposable": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
|
|
22138
|
+
/* harmony export */ "isInstanceOf": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.isInstanceOf),
|
|
22139
|
+
/* harmony export */ "isProperSubclassOf": () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
|
|
22140
|
+
/* harmony export */ "isSubclassOf": () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
|
|
22141
|
+
/* harmony export */ "lowerBound": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.lowerBound),
|
|
22142
|
+
/* harmony export */ "omit": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.omit),
|
|
22143
|
+
/* harmony export */ "partitionArray": () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_23__.partitionArray),
|
|
22144
|
+
/* harmony export */ "shallowClone": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.shallowClone),
|
|
22145
|
+
/* harmony export */ "using": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
|
|
22146
|
+
/* harmony export */ "utf8ToString": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToString),
|
|
22147
|
+
/* harmony export */ "utf8ToStringPolyfill": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToStringPolyfill)
|
|
22190
22148
|
/* harmony export */ });
|
|
22191
22149
|
/* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../bentley/lib/esm/AccessToken.js");
|
|
22192
22150
|
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
|
|
@@ -22314,7 +22272,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22314
22272
|
"use strict";
|
|
22315
22273
|
__webpack_require__.r(__webpack_exports__);
|
|
22316
22274
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22317
|
-
/* harmony export */ partitionArray: () => (/* binding */ partitionArray)
|
|
22275
|
+
/* harmony export */ "partitionArray": () => (/* binding */ partitionArray)
|
|
22318
22276
|
/* harmony export */ });
|
|
22319
22277
|
/*---------------------------------------------------------------------------------------------
|
|
22320
22278
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -22379,9 +22337,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
22379
22337
|
};
|
|
22380
22338
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
22381
22339
|
exports.ITwinLocalization = void 0;
|
|
22382
|
-
const i18next_1 = __importDefault(__webpack_require__(/*! i18next */ "../../common/temp/node_modules/.pnpm/i18next@21.
|
|
22383
|
-
const i18next_browser_languagedetector_1 = __importDefault(__webpack_require__(/*! i18next-browser-languagedetector */ "../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.
|
|
22384
|
-
const i18next_http_backend_1 = __importDefault(__webpack_require__(/*! i18next-http-backend */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
22340
|
+
const i18next_1 = __importDefault(__webpack_require__(/*! i18next */ "../../common/temp/node_modules/.pnpm/i18next@21.9.1/node_modules/i18next/dist/cjs/i18next.js"));
|
|
22341
|
+
const i18next_browser_languagedetector_1 = __importDefault(__webpack_require__(/*! i18next-browser-languagedetector */ "../../common/temp/node_modules/.pnpm/i18next-browser-languagedetector@6.1.2/node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js"));
|
|
22342
|
+
const i18next_http_backend_1 = __importDefault(__webpack_require__(/*! i18next-http-backend */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/index.js"));
|
|
22385
22343
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../bentley/lib/esm/core-bentley.js");
|
|
22386
22344
|
const DEFAULT_MAX_RETRIES = 1; // a low number prevents wasted time and potential timeouts when requesting localization files throws an error
|
|
22387
22345
|
/** Supplies localizations for iTwin.js
|
|
@@ -22609,9 +22567,9 @@ TranslationLogger.type = "logger";
|
|
|
22609
22567
|
|
|
22610
22568
|
/***/ }),
|
|
22611
22569
|
|
|
22612
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22570
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayLikeToArray.js":
|
|
22613
22571
|
/*!**************************************************************************************************************************!*\
|
|
22614
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22572
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
|
|
22615
22573
|
\**************************************************************************************************************************/
|
|
22616
22574
|
/***/ ((module) => {
|
|
22617
22575
|
|
|
@@ -22624,9 +22582,9 @@ module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exp
|
|
|
22624
22582
|
|
|
22625
22583
|
/***/ }),
|
|
22626
22584
|
|
|
22627
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22585
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayWithHoles.js":
|
|
22628
22586
|
/*!************************************************************************************************************************!*\
|
|
22629
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22587
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
|
|
22630
22588
|
\************************************************************************************************************************/
|
|
22631
22589
|
/***/ ((module) => {
|
|
22632
22590
|
|
|
@@ -22637,9 +22595,9 @@ module.exports = _arrayWithHoles, module.exports.__esModule = true, module.expor
|
|
|
22637
22595
|
|
|
22638
22596
|
/***/ }),
|
|
22639
22597
|
|
|
22640
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22598
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/assertThisInitialized.js":
|
|
22641
22599
|
/*!*******************************************************************************************************************************!*\
|
|
22642
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22600
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/assertThisInitialized.js ***!
|
|
22643
22601
|
\*******************************************************************************************************************************/
|
|
22644
22602
|
/***/ ((module) => {
|
|
22645
22603
|
|
|
@@ -22653,9 +22611,9 @@ module.exports = _assertThisInitialized, module.exports.__esModule = true, modul
|
|
|
22653
22611
|
|
|
22654
22612
|
/***/ }),
|
|
22655
22613
|
|
|
22656
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22614
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/classCallCheck.js":
|
|
22657
22615
|
/*!************************************************************************************************************************!*\
|
|
22658
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22616
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/classCallCheck.js ***!
|
|
22659
22617
|
\************************************************************************************************************************/
|
|
22660
22618
|
/***/ ((module) => {
|
|
22661
22619
|
|
|
@@ -22668,13 +22626,13 @@ module.exports = _classCallCheck, module.exports.__esModule = true, module.expor
|
|
|
22668
22626
|
|
|
22669
22627
|
/***/ }),
|
|
22670
22628
|
|
|
22671
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22629
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/createClass.js":
|
|
22672
22630
|
/*!*********************************************************************************************************************!*\
|
|
22673
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22631
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/createClass.js ***!
|
|
22674
22632
|
\*********************************************************************************************************************/
|
|
22675
22633
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22676
22634
|
|
|
22677
|
-
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22635
|
+
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPropertyKey.js");
|
|
22678
22636
|
function _defineProperties(target, props) {
|
|
22679
22637
|
for (var i = 0; i < props.length; i++) {
|
|
22680
22638
|
var descriptor = props[i];
|
|
@@ -22696,13 +22654,13 @@ module.exports = _createClass, module.exports.__esModule = true, module.exports[
|
|
|
22696
22654
|
|
|
22697
22655
|
/***/ }),
|
|
22698
22656
|
|
|
22699
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22657
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/defineProperty.js":
|
|
22700
22658
|
/*!************************************************************************************************************************!*\
|
|
22701
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22659
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/defineProperty.js ***!
|
|
22702
22660
|
\************************************************************************************************************************/
|
|
22703
22661
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22704
22662
|
|
|
22705
|
-
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22663
|
+
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPropertyKey.js");
|
|
22706
22664
|
function _defineProperty(obj, key, value) {
|
|
22707
22665
|
key = toPropertyKey(key);
|
|
22708
22666
|
if (key in obj) {
|
|
@@ -22721,9 +22679,9 @@ module.exports = _defineProperty, module.exports.__esModule = true, module.expor
|
|
|
22721
22679
|
|
|
22722
22680
|
/***/ }),
|
|
22723
22681
|
|
|
22724
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22682
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/getPrototypeOf.js":
|
|
22725
22683
|
/*!************************************************************************************************************************!*\
|
|
22726
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22684
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/getPrototypeOf.js ***!
|
|
22727
22685
|
\************************************************************************************************************************/
|
|
22728
22686
|
/***/ ((module) => {
|
|
22729
22687
|
|
|
@@ -22737,13 +22695,13 @@ module.exports = _getPrototypeOf, module.exports.__esModule = true, module.expor
|
|
|
22737
22695
|
|
|
22738
22696
|
/***/ }),
|
|
22739
22697
|
|
|
22740
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22698
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/inherits.js":
|
|
22741
22699
|
/*!******************************************************************************************************************!*\
|
|
22742
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22700
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/inherits.js ***!
|
|
22743
22701
|
\******************************************************************************************************************/
|
|
22744
22702
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22745
22703
|
|
|
22746
|
-
var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22704
|
+
var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/setPrototypeOf.js");
|
|
22747
22705
|
function _inherits(subClass, superClass) {
|
|
22748
22706
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
22749
22707
|
throw new TypeError("Super expression must either be null or a function");
|
|
@@ -22764,9 +22722,9 @@ module.exports = _inherits, module.exports.__esModule = true, module.exports["de
|
|
|
22764
22722
|
|
|
22765
22723
|
/***/ }),
|
|
22766
22724
|
|
|
22767
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22725
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/iterableToArray.js":
|
|
22768
22726
|
/*!*************************************************************************************************************************!*\
|
|
22769
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22727
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/iterableToArray.js ***!
|
|
22770
22728
|
\*************************************************************************************************************************/
|
|
22771
22729
|
/***/ ((module) => {
|
|
22772
22730
|
|
|
@@ -22777,9 +22735,9 @@ module.exports = _iterableToArray, module.exports.__esModule = true, module.expo
|
|
|
22777
22735
|
|
|
22778
22736
|
/***/ }),
|
|
22779
22737
|
|
|
22780
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22738
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/nonIterableRest.js":
|
|
22781
22739
|
/*!*************************************************************************************************************************!*\
|
|
22782
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22740
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
|
|
22783
22741
|
\*************************************************************************************************************************/
|
|
22784
22742
|
/***/ ((module) => {
|
|
22785
22743
|
|
|
@@ -22790,14 +22748,14 @@ module.exports = _nonIterableRest, module.exports.__esModule = true, module.expo
|
|
|
22790
22748
|
|
|
22791
22749
|
/***/ }),
|
|
22792
22750
|
|
|
22793
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22751
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js":
|
|
22794
22752
|
/*!***********************************************************************************************************************************!*\
|
|
22795
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22753
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js ***!
|
|
22796
22754
|
\***********************************************************************************************************************************/
|
|
22797
22755
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22798
22756
|
|
|
22799
|
-
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22800
|
-
var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22757
|
+
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
|
|
22758
|
+
var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
|
|
22801
22759
|
function _possibleConstructorReturn(self, call) {
|
|
22802
22760
|
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
22803
22761
|
return call;
|
|
@@ -22810,9 +22768,9 @@ module.exports = _possibleConstructorReturn, module.exports.__esModule = true, m
|
|
|
22810
22768
|
|
|
22811
22769
|
/***/ }),
|
|
22812
22770
|
|
|
22813
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22771
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/setPrototypeOf.js":
|
|
22814
22772
|
/*!************************************************************************************************************************!*\
|
|
22815
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22773
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/setPrototypeOf.js ***!
|
|
22816
22774
|
\************************************************************************************************************************/
|
|
22817
22775
|
/***/ ((module) => {
|
|
22818
22776
|
|
|
@@ -22827,16 +22785,16 @@ module.exports = _setPrototypeOf, module.exports.__esModule = true, module.expor
|
|
|
22827
22785
|
|
|
22828
22786
|
/***/ }),
|
|
22829
22787
|
|
|
22830
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22788
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toArray.js":
|
|
22831
22789
|
/*!*****************************************************************************************************************!*\
|
|
22832
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22790
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toArray.js ***!
|
|
22833
22791
|
\*****************************************************************************************************************/
|
|
22834
22792
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22835
22793
|
|
|
22836
|
-
var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22837
|
-
var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22838
|
-
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22839
|
-
var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22794
|
+
var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayWithHoles.js");
|
|
22795
|
+
var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/iterableToArray.js");
|
|
22796
|
+
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js");
|
|
22797
|
+
var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/nonIterableRest.js");
|
|
22840
22798
|
function _toArray(arr) {
|
|
22841
22799
|
return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();
|
|
22842
22800
|
}
|
|
@@ -22844,46 +22802,46 @@ module.exports = _toArray, module.exports.__esModule = true, module.exports["def
|
|
|
22844
22802
|
|
|
22845
22803
|
/***/ }),
|
|
22846
22804
|
|
|
22847
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22805
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPrimitive.js":
|
|
22848
22806
|
/*!*********************************************************************************************************************!*\
|
|
22849
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22807
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPrimitive.js ***!
|
|
22850
22808
|
\*********************************************************************************************************************/
|
|
22851
22809
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22852
22810
|
|
|
22853
|
-
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22854
|
-
function
|
|
22855
|
-
if (
|
|
22856
|
-
var
|
|
22857
|
-
if (
|
|
22858
|
-
var
|
|
22859
|
-
if (
|
|
22811
|
+
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
|
|
22812
|
+
function toPrimitive(t, r) {
|
|
22813
|
+
if ("object" != _typeof(t) || !t) return t;
|
|
22814
|
+
var e = t[Symbol.toPrimitive];
|
|
22815
|
+
if (void 0 !== e) {
|
|
22816
|
+
var i = e.call(t, r || "default");
|
|
22817
|
+
if ("object" != _typeof(i)) return i;
|
|
22860
22818
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
22861
22819
|
}
|
|
22862
|
-
return (
|
|
22820
|
+
return ("string" === r ? String : Number)(t);
|
|
22863
22821
|
}
|
|
22864
|
-
module.exports =
|
|
22822
|
+
module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
22865
22823
|
|
|
22866
22824
|
/***/ }),
|
|
22867
22825
|
|
|
22868
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22826
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPropertyKey.js":
|
|
22869
22827
|
/*!***********************************************************************************************************************!*\
|
|
22870
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22828
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPropertyKey.js ***!
|
|
22871
22829
|
\***********************************************************************************************************************/
|
|
22872
22830
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22873
22831
|
|
|
22874
|
-
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22875
|
-
var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22876
|
-
function
|
|
22877
|
-
var
|
|
22878
|
-
return _typeof(
|
|
22832
|
+
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
|
|
22833
|
+
var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/toPrimitive.js");
|
|
22834
|
+
function toPropertyKey(t) {
|
|
22835
|
+
var i = toPrimitive(t, "string");
|
|
22836
|
+
return "symbol" == _typeof(i) ? i : String(i);
|
|
22879
22837
|
}
|
|
22880
|
-
module.exports =
|
|
22838
|
+
module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
22881
22839
|
|
|
22882
22840
|
/***/ }),
|
|
22883
22841
|
|
|
22884
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22842
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js":
|
|
22885
22843
|
/*!****************************************************************************************************************!*\
|
|
22886
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22844
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/typeof.js ***!
|
|
22887
22845
|
\****************************************************************************************************************/
|
|
22888
22846
|
/***/ ((module) => {
|
|
22889
22847
|
|
|
@@ -22900,13 +22858,13 @@ module.exports = _typeof, module.exports.__esModule = true, module.exports["defa
|
|
|
22900
22858
|
|
|
22901
22859
|
/***/ }),
|
|
22902
22860
|
|
|
22903
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22861
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js":
|
|
22904
22862
|
/*!************************************************************************************************************************************!*\
|
|
22905
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22863
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
|
|
22906
22864
|
\************************************************************************************************************************************/
|
|
22907
22865
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22908
22866
|
|
|
22909
|
-
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22867
|
+
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/arrayLikeToArray.js");
|
|
22910
22868
|
function _unsupportedIterableToArray(o, minLen) {
|
|
22911
22869
|
if (!o) return;
|
|
22912
22870
|
if (typeof o === "string") return arrayLikeToArray(o, minLen);
|
|
@@ -22919,9 +22877,9 @@ module.exports = _unsupportedIterableToArray, module.exports.__esModule = true,
|
|
|
22919
22877
|
|
|
22920
22878
|
/***/ }),
|
|
22921
22879
|
|
|
22922
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
22880
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/getFetch.js":
|
|
22923
22881
|
/*!*************************************************************************************************************************!*\
|
|
22924
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
22882
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/getFetch.js ***!
|
|
22925
22883
|
\*************************************************************************************************************************/
|
|
22926
22884
|
/***/ ((module, exports, __webpack_require__) => {
|
|
22927
22885
|
|
|
@@ -22946,9 +22904,9 @@ if ( true && (typeof window === 'undefined' || typeof window.document === 'undef
|
|
|
22946
22904
|
|
|
22947
22905
|
/***/ }),
|
|
22948
22906
|
|
|
22949
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
22907
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/index.js":
|
|
22950
22908
|
/*!**********************************************************************************************************************!*\
|
|
22951
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
22909
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/index.js ***!
|
|
22952
22910
|
\**********************************************************************************************************************/
|
|
22953
22911
|
/***/ ((module, exports, __webpack_require__) => {
|
|
22954
22912
|
|
|
@@ -22959,13 +22917,21 @@ Object.defineProperty(exports, "__esModule", ({
|
|
|
22959
22917
|
value: true
|
|
22960
22918
|
}));
|
|
22961
22919
|
exports["default"] = void 0;
|
|
22962
|
-
|
|
22963
|
-
var
|
|
22920
|
+
|
|
22921
|
+
var _utils = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js");
|
|
22922
|
+
|
|
22923
|
+
var _request = _interopRequireDefault(__webpack_require__(/*! ./request.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/request.js"));
|
|
22924
|
+
|
|
22964
22925
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22926
|
+
|
|
22965
22927
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
22928
|
+
|
|
22966
22929
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
22930
|
+
|
|
22967
22931
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
22932
|
+
|
|
22968
22933
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
22934
|
+
|
|
22969
22935
|
var getDefaults = function getDefaults() {
|
|
22970
22936
|
return {
|
|
22971
22937
|
loadPath: '/locales/{{lng}}/{{ns}}.json',
|
|
@@ -22992,26 +22958,32 @@ var getDefaults = function getDefaults() {
|
|
|
22992
22958
|
}
|
|
22993
22959
|
};
|
|
22994
22960
|
};
|
|
22961
|
+
|
|
22995
22962
|
var Backend = function () {
|
|
22996
22963
|
function Backend(services) {
|
|
22997
22964
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
22998
22965
|
var allOptions = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
22966
|
+
|
|
22999
22967
|
_classCallCheck(this, Backend);
|
|
22968
|
+
|
|
23000
22969
|
this.services = services;
|
|
23001
22970
|
this.options = options;
|
|
23002
22971
|
this.allOptions = allOptions;
|
|
23003
22972
|
this.type = 'backend';
|
|
23004
22973
|
this.init(services, options, allOptions);
|
|
23005
22974
|
}
|
|
22975
|
+
|
|
23006
22976
|
_createClass(Backend, [{
|
|
23007
22977
|
key: "init",
|
|
23008
22978
|
value: function init(services) {
|
|
23009
22979
|
var _this = this;
|
|
22980
|
+
|
|
23010
22981
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
23011
22982
|
var allOptions = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
23012
22983
|
this.services = services;
|
|
23013
22984
|
this.options = (0, _utils.defaults)(options, this.options || {}, getDefaults());
|
|
23014
22985
|
this.allOptions = allOptions;
|
|
22986
|
+
|
|
23015
22987
|
if (this.services && this.options.reloadInterval) {
|
|
23016
22988
|
setInterval(function () {
|
|
23017
22989
|
return _this.reload();
|
|
@@ -23032,17 +23004,22 @@ var Backend = function () {
|
|
|
23032
23004
|
key: "_readAny",
|
|
23033
23005
|
value: function _readAny(languages, loadUrlLanguages, namespaces, loadUrlNamespaces, callback) {
|
|
23034
23006
|
var _this2 = this;
|
|
23007
|
+
|
|
23035
23008
|
var loadPath = this.options.loadPath;
|
|
23009
|
+
|
|
23036
23010
|
if (typeof this.options.loadPath === 'function') {
|
|
23037
23011
|
loadPath = this.options.loadPath(languages, namespaces);
|
|
23038
23012
|
}
|
|
23013
|
+
|
|
23039
23014
|
loadPath = (0, _utils.makePromise)(loadPath);
|
|
23040
23015
|
loadPath.then(function (resolvedLoadPath) {
|
|
23041
23016
|
if (!resolvedLoadPath) return callback(null, {});
|
|
23017
|
+
|
|
23042
23018
|
var url = _this2.services.interpolator.interpolate(resolvedLoadPath, {
|
|
23043
23019
|
lng: languages.join('+'),
|
|
23044
23020
|
ns: namespaces.join('+')
|
|
23045
23021
|
});
|
|
23022
|
+
|
|
23046
23023
|
_this2.loadUrl(url, callback, loadUrlLanguages, loadUrlNamespaces);
|
|
23047
23024
|
});
|
|
23048
23025
|
}
|
|
@@ -23050,12 +23027,14 @@ var Backend = function () {
|
|
|
23050
23027
|
key: "loadUrl",
|
|
23051
23028
|
value: function loadUrl(url, callback, languages, namespaces) {
|
|
23052
23029
|
var _this3 = this;
|
|
23030
|
+
|
|
23053
23031
|
this.options.request(this.options, url, undefined, function (err, res) {
|
|
23054
23032
|
if (res && (res.status >= 500 && res.status < 600 || !res.status)) return callback('failed loading ' + url + '; status code: ' + res.status, true);
|
|
23055
23033
|
if (res && res.status >= 400 && res.status < 500) return callback('failed loading ' + url + '; status code: ' + res.status, false);
|
|
23056
23034
|
if (!res && err && err.message && err.message.indexOf('Failed to fetch') > -1) return callback('failed loading ' + url + ': ' + err.message, true);
|
|
23057
23035
|
if (err) return callback(err, false);
|
|
23058
23036
|
var ret, parseErr;
|
|
23037
|
+
|
|
23059
23038
|
try {
|
|
23060
23039
|
if (typeof res.data === 'string') {
|
|
23061
23040
|
ret = _this3.options.parse(res.data, languages, namespaces);
|
|
@@ -23065,6 +23044,7 @@ var Backend = function () {
|
|
|
23065
23044
|
} catch (e) {
|
|
23066
23045
|
parseErr = 'failed parsing ' + url + ' to json';
|
|
23067
23046
|
}
|
|
23047
|
+
|
|
23068
23048
|
if (parseErr) return callback(parseErr, false);
|
|
23069
23049
|
callback(null, ret);
|
|
23070
23050
|
});
|
|
@@ -23073,6 +23053,7 @@ var Backend = function () {
|
|
|
23073
23053
|
key: "create",
|
|
23074
23054
|
value: function create(languages, namespace, key, fallbackValue, callback) {
|
|
23075
23055
|
var _this4 = this;
|
|
23056
|
+
|
|
23076
23057
|
if (!this.options.addPath) return;
|
|
23077
23058
|
if (typeof languages === 'string') languages = [languages];
|
|
23078
23059
|
var payload = this.options.parsePayload(namespace, key, fallbackValue);
|
|
@@ -23081,17 +23062,21 @@ var Backend = function () {
|
|
|
23081
23062
|
var resArray = [];
|
|
23082
23063
|
languages.forEach(function (lng) {
|
|
23083
23064
|
var addPath = _this4.options.addPath;
|
|
23065
|
+
|
|
23084
23066
|
if (typeof _this4.options.addPath === 'function') {
|
|
23085
23067
|
addPath = _this4.options.addPath(lng, namespace);
|
|
23086
23068
|
}
|
|
23069
|
+
|
|
23087
23070
|
var url = _this4.services.interpolator.interpolate(addPath, {
|
|
23088
23071
|
lng: lng,
|
|
23089
23072
|
ns: namespace
|
|
23090
23073
|
});
|
|
23074
|
+
|
|
23091
23075
|
_this4.options.request(_this4.options, url, payload, function (data, res) {
|
|
23092
23076
|
finished += 1;
|
|
23093
23077
|
dataArray.push(data);
|
|
23094
23078
|
resArray.push(res);
|
|
23079
|
+
|
|
23095
23080
|
if (finished === languages.length) {
|
|
23096
23081
|
if (callback) callback(dataArray, resArray);
|
|
23097
23082
|
}
|
|
@@ -23102,20 +23087,22 @@ var Backend = function () {
|
|
|
23102
23087
|
key: "reload",
|
|
23103
23088
|
value: function reload() {
|
|
23104
23089
|
var _this5 = this;
|
|
23090
|
+
|
|
23105
23091
|
var _this$services = this.services,
|
|
23106
|
-
|
|
23107
|
-
|
|
23108
|
-
|
|
23092
|
+
backendConnector = _this$services.backendConnector,
|
|
23093
|
+
languageUtils = _this$services.languageUtils,
|
|
23094
|
+
logger = _this$services.logger;
|
|
23109
23095
|
var currentLanguage = backendConnector.language;
|
|
23110
23096
|
if (currentLanguage && currentLanguage.toLowerCase() === 'cimode') return;
|
|
23111
|
-
|
|
23112
23097
|
var toLoad = [];
|
|
23098
|
+
|
|
23113
23099
|
var append = function append(lng) {
|
|
23114
23100
|
var lngs = languageUtils.toResolveHierarchy(lng);
|
|
23115
23101
|
lngs.forEach(function (l) {
|
|
23116
23102
|
if (toLoad.indexOf(l) < 0) toLoad.push(l);
|
|
23117
23103
|
});
|
|
23118
23104
|
};
|
|
23105
|
+
|
|
23119
23106
|
append(currentLanguage);
|
|
23120
23107
|
if (this.allOptions.preload) this.allOptions.preload.forEach(function (l) {
|
|
23121
23108
|
return append(l);
|
|
@@ -23131,8 +23118,10 @@ var Backend = function () {
|
|
|
23131
23118
|
});
|
|
23132
23119
|
}
|
|
23133
23120
|
}]);
|
|
23121
|
+
|
|
23134
23122
|
return Backend;
|
|
23135
23123
|
}();
|
|
23124
|
+
|
|
23136
23125
|
Backend.type = 'backend';
|
|
23137
23126
|
var _default = Backend;
|
|
23138
23127
|
exports["default"] = _default;
|
|
@@ -23140,9 +23129,9 @@ module.exports = exports.default;
|
|
|
23140
23129
|
|
|
23141
23130
|
/***/ }),
|
|
23142
23131
|
|
|
23143
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
23132
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/request.js":
|
|
23144
23133
|
/*!************************************************************************************************************************!*\
|
|
23145
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
23134
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/request.js ***!
|
|
23146
23135
|
\************************************************************************************************************************/
|
|
23147
23136
|
/***/ ((module, exports, __webpack_require__) => {
|
|
23148
23137
|
|
|
@@ -23153,12 +23142,19 @@ Object.defineProperty(exports, "__esModule", ({
|
|
|
23153
23142
|
value: true
|
|
23154
23143
|
}));
|
|
23155
23144
|
exports["default"] = void 0;
|
|
23156
|
-
|
|
23157
|
-
var
|
|
23145
|
+
|
|
23146
|
+
var _utils = __webpack_require__(/*! ./utils.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js");
|
|
23147
|
+
|
|
23148
|
+
var fetchNode = _interopRequireWildcard(__webpack_require__(/*! ./getFetch.js */ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/getFetch.js"));
|
|
23149
|
+
|
|
23158
23150
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
23151
|
+
|
|
23159
23152
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23153
|
+
|
|
23160
23154
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
23155
|
+
|
|
23161
23156
|
var fetchApi;
|
|
23157
|
+
|
|
23162
23158
|
if (typeof fetch === 'function') {
|
|
23163
23159
|
if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.fetch) {
|
|
23164
23160
|
fetchApi = __webpack_require__.g.fetch;
|
|
@@ -23168,7 +23164,9 @@ if (typeof fetch === 'function') {
|
|
|
23168
23164
|
fetchApi = fetch;
|
|
23169
23165
|
}
|
|
23170
23166
|
}
|
|
23167
|
+
|
|
23171
23168
|
var XmlHttpRequestApi;
|
|
23169
|
+
|
|
23172
23170
|
if ((0, _utils.hasXMLHttpRequest)()) {
|
|
23173
23171
|
if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.XMLHttpRequest) {
|
|
23174
23172
|
XmlHttpRequestApi = __webpack_require__.g.XMLHttpRequest;
|
|
@@ -23176,7 +23174,9 @@ if ((0, _utils.hasXMLHttpRequest)()) {
|
|
|
23176
23174
|
XmlHttpRequestApi = window.XMLHttpRequest;
|
|
23177
23175
|
}
|
|
23178
23176
|
}
|
|
23177
|
+
|
|
23179
23178
|
var ActiveXObjectApi;
|
|
23179
|
+
|
|
23180
23180
|
if (typeof ActiveXObject === 'function') {
|
|
23181
23181
|
if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.ActiveXObject) {
|
|
23182
23182
|
ActiveXObjectApi = __webpack_require__.g.ActiveXObject;
|
|
@@ -23184,19 +23184,25 @@ if (typeof ActiveXObject === 'function') {
|
|
|
23184
23184
|
ActiveXObjectApi = window.ActiveXObject;
|
|
23185
23185
|
}
|
|
23186
23186
|
}
|
|
23187
|
+
|
|
23187
23188
|
if (!fetchApi && fetchNode && !XmlHttpRequestApi && !ActiveXObjectApi) fetchApi = fetchNode.default || fetchNode;
|
|
23188
23189
|
if (typeof fetchApi !== 'function') fetchApi = undefined;
|
|
23190
|
+
|
|
23189
23191
|
var addQueryString = function addQueryString(url, params) {
|
|
23190
23192
|
if (params && _typeof(params) === 'object') {
|
|
23191
23193
|
var queryString = '';
|
|
23194
|
+
|
|
23192
23195
|
for (var paramName in params) {
|
|
23193
23196
|
queryString += '&' + encodeURIComponent(paramName) + '=' + encodeURIComponent(params[paramName]);
|
|
23194
23197
|
}
|
|
23198
|
+
|
|
23195
23199
|
if (!queryString) return url;
|
|
23196
23200
|
url = url + (url.indexOf('?') !== -1 ? '&' : '?') + queryString.slice(1);
|
|
23197
23201
|
}
|
|
23202
|
+
|
|
23198
23203
|
return url;
|
|
23199
23204
|
};
|
|
23205
|
+
|
|
23200
23206
|
var fetchIt = function fetchIt(url, fetchOptions, callback) {
|
|
23201
23207
|
fetchApi(url, fetchOptions).then(function (response) {
|
|
23202
23208
|
if (!response.ok) return callback(response.statusText || 'Error', {
|
|
@@ -23210,12 +23216,14 @@ var fetchIt = function fetchIt(url, fetchOptions, callback) {
|
|
|
23210
23216
|
}).catch(callback);
|
|
23211
23217
|
}).catch(callback);
|
|
23212
23218
|
};
|
|
23219
|
+
|
|
23213
23220
|
var omitFetchOptions = false;
|
|
23214
23221
|
|
|
23215
23222
|
var requestWithFetch = function requestWithFetch(options, url, payload, callback) {
|
|
23216
23223
|
if (options.queryStringParams) {
|
|
23217
23224
|
url = addQueryString(url, options.queryStringParams);
|
|
23218
23225
|
}
|
|
23226
|
+
|
|
23219
23227
|
var headers = (0, _utils.defaults)({}, typeof options.customHeaders === 'function' ? options.customHeaders() : options.customHeaders);
|
|
23220
23228
|
if (payload) headers['Content-Type'] = 'application/json';
|
|
23221
23229
|
var reqOptions = typeof options.requestOptions === 'function' ? options.requestOptions(payload) : options.requestOptions;
|
|
@@ -23224,12 +23232,14 @@ var requestWithFetch = function requestWithFetch(options, url, payload, callback
|
|
|
23224
23232
|
body: payload ? options.stringify(payload) : undefined,
|
|
23225
23233
|
headers: headers
|
|
23226
23234
|
}, omitFetchOptions ? {} : reqOptions);
|
|
23235
|
+
|
|
23227
23236
|
try {
|
|
23228
23237
|
fetchIt(url, fetchOptions, callback);
|
|
23229
23238
|
} catch (e) {
|
|
23230
23239
|
if (!reqOptions || Object.keys(reqOptions).length === 0 || !e.message || e.message.indexOf('not implemented') < 0) {
|
|
23231
23240
|
return callback(e);
|
|
23232
23241
|
}
|
|
23242
|
+
|
|
23233
23243
|
try {
|
|
23234
23244
|
Object.keys(reqOptions).forEach(function (opt) {
|
|
23235
23245
|
delete fetchOptions[opt];
|
|
@@ -23246,68 +23256,86 @@ var requestWithXmlHttpRequest = function requestWithXmlHttpRequest(options, url,
|
|
|
23246
23256
|
if (payload && _typeof(payload) === 'object') {
|
|
23247
23257
|
payload = addQueryString('', payload).slice(1);
|
|
23248
23258
|
}
|
|
23259
|
+
|
|
23249
23260
|
if (options.queryStringParams) {
|
|
23250
23261
|
url = addQueryString(url, options.queryStringParams);
|
|
23251
23262
|
}
|
|
23263
|
+
|
|
23252
23264
|
try {
|
|
23253
23265
|
var x;
|
|
23266
|
+
|
|
23254
23267
|
if (XmlHttpRequestApi) {
|
|
23255
23268
|
x = new XmlHttpRequestApi();
|
|
23256
23269
|
} else {
|
|
23257
23270
|
x = new ActiveXObjectApi('MSXML2.XMLHTTP.3.0');
|
|
23258
23271
|
}
|
|
23272
|
+
|
|
23259
23273
|
x.open(payload ? 'POST' : 'GET', url, 1);
|
|
23274
|
+
|
|
23260
23275
|
if (!options.crossDomain) {
|
|
23261
23276
|
x.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
|
|
23262
23277
|
}
|
|
23278
|
+
|
|
23263
23279
|
x.withCredentials = !!options.withCredentials;
|
|
23280
|
+
|
|
23264
23281
|
if (payload) {
|
|
23265
23282
|
x.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
|
23266
23283
|
}
|
|
23284
|
+
|
|
23267
23285
|
if (x.overrideMimeType) {
|
|
23268
23286
|
x.overrideMimeType('application/json');
|
|
23269
23287
|
}
|
|
23288
|
+
|
|
23270
23289
|
var h = options.customHeaders;
|
|
23271
23290
|
h = typeof h === 'function' ? h() : h;
|
|
23291
|
+
|
|
23272
23292
|
if (h) {
|
|
23273
23293
|
for (var i in h) {
|
|
23274
23294
|
x.setRequestHeader(i, h[i]);
|
|
23275
23295
|
}
|
|
23276
23296
|
}
|
|
23297
|
+
|
|
23277
23298
|
x.onreadystatechange = function () {
|
|
23278
23299
|
x.readyState > 3 && callback(x.status >= 400 ? x.statusText : null, {
|
|
23279
23300
|
status: x.status,
|
|
23280
23301
|
data: x.responseText
|
|
23281
23302
|
});
|
|
23282
23303
|
};
|
|
23304
|
+
|
|
23283
23305
|
x.send(payload);
|
|
23284
23306
|
} catch (e) {
|
|
23285
23307
|
console && console.log(e);
|
|
23286
23308
|
}
|
|
23287
23309
|
};
|
|
23310
|
+
|
|
23288
23311
|
var request = function request(options, url, payload, callback) {
|
|
23289
23312
|
if (typeof payload === 'function') {
|
|
23290
23313
|
callback = payload;
|
|
23291
23314
|
payload = undefined;
|
|
23292
23315
|
}
|
|
23316
|
+
|
|
23293
23317
|
callback = callback || function () {};
|
|
23318
|
+
|
|
23294
23319
|
if (fetchApi) {
|
|
23295
23320
|
return requestWithFetch(options, url, payload, callback);
|
|
23296
23321
|
}
|
|
23322
|
+
|
|
23297
23323
|
if ((0, _utils.hasXMLHttpRequest)() || typeof ActiveXObject === 'function') {
|
|
23298
23324
|
return requestWithXmlHttpRequest(options, url, payload, callback);
|
|
23299
23325
|
}
|
|
23326
|
+
|
|
23300
23327
|
callback(new Error('No fetch and no xhr implementation found!'));
|
|
23301
23328
|
};
|
|
23329
|
+
|
|
23302
23330
|
var _default = request;
|
|
23303
23331
|
exports["default"] = _default;
|
|
23304
23332
|
module.exports = exports.default;
|
|
23305
23333
|
|
|
23306
23334
|
/***/ }),
|
|
23307
23335
|
|
|
23308
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
23336
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js":
|
|
23309
23337
|
/*!**********************************************************************************************************************!*\
|
|
23310
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
23338
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js ***!
|
|
23311
23339
|
\**********************************************************************************************************************/
|
|
23312
23340
|
/***/ ((__unused_webpack_module, exports) => {
|
|
23313
23341
|
|
|
@@ -23320,10 +23348,13 @@ Object.defineProperty(exports, "__esModule", ({
|
|
|
23320
23348
|
exports.defaults = defaults;
|
|
23321
23349
|
exports.hasXMLHttpRequest = hasXMLHttpRequest;
|
|
23322
23350
|
exports.makePromise = makePromise;
|
|
23351
|
+
|
|
23323
23352
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
23353
|
+
|
|
23324
23354
|
var arr = [];
|
|
23325
23355
|
var each = arr.forEach;
|
|
23326
23356
|
var slice = arr.slice;
|
|
23357
|
+
|
|
23327
23358
|
function defaults(obj) {
|
|
23328
23359
|
each.call(slice.call(arguments, 1), function (source) {
|
|
23329
23360
|
if (source) {
|
|
@@ -23334,6 +23365,7 @@ function defaults(obj) {
|
|
|
23334
23365
|
});
|
|
23335
23366
|
return obj;
|
|
23336
23367
|
}
|
|
23368
|
+
|
|
23337
23369
|
function hasXMLHttpRequest() {
|
|
23338
23370
|
return typeof XMLHttpRequest === 'function' || (typeof XMLHttpRequest === "undefined" ? "undefined" : _typeof(XMLHttpRequest)) === 'object';
|
|
23339
23371
|
}
|
|
@@ -23346,9 +23378,133 @@ function makePromise(maybePromise) {
|
|
|
23346
23378
|
if (isPromise(maybePromise)) {
|
|
23347
23379
|
return maybePromise;
|
|
23348
23380
|
}
|
|
23381
|
+
|
|
23349
23382
|
return Promise.resolve(maybePromise);
|
|
23350
23383
|
}
|
|
23351
23384
|
|
|
23385
|
+
/***/ }),
|
|
23386
|
+
|
|
23387
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
23388
|
+
/*!****************************************************************************************************************************!*\
|
|
23389
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
23390
|
+
\****************************************************************************************************************************/
|
|
23391
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23392
|
+
|
|
23393
|
+
"use strict";
|
|
23394
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23395
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23396
|
+
/* harmony export */ "default": () => (/* binding */ _classCallCheck)
|
|
23397
|
+
/* harmony export */ });
|
|
23398
|
+
function _classCallCheck(instance, Constructor) {
|
|
23399
|
+
if (!(instance instanceof Constructor)) {
|
|
23400
|
+
throw new TypeError("Cannot call a class as a function");
|
|
23401
|
+
}
|
|
23402
|
+
}
|
|
23403
|
+
|
|
23404
|
+
/***/ }),
|
|
23405
|
+
|
|
23406
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
23407
|
+
/*!*************************************************************************************************************************!*\
|
|
23408
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
23409
|
+
\*************************************************************************************************************************/
|
|
23410
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23411
|
+
|
|
23412
|
+
"use strict";
|
|
23413
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23414
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23415
|
+
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
23416
|
+
/* harmony export */ });
|
|
23417
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
23418
|
+
|
|
23419
|
+
function _defineProperties(target, props) {
|
|
23420
|
+
for (var i = 0; i < props.length; i++) {
|
|
23421
|
+
var descriptor = props[i];
|
|
23422
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
23423
|
+
descriptor.configurable = true;
|
|
23424
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
23425
|
+
Object.defineProperty(target, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(descriptor.key), descriptor);
|
|
23426
|
+
}
|
|
23427
|
+
}
|
|
23428
|
+
function _createClass(Constructor, protoProps, staticProps) {
|
|
23429
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
23430
|
+
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
23431
|
+
Object.defineProperty(Constructor, "prototype", {
|
|
23432
|
+
writable: false
|
|
23433
|
+
});
|
|
23434
|
+
return Constructor;
|
|
23435
|
+
}
|
|
23436
|
+
|
|
23437
|
+
/***/ }),
|
|
23438
|
+
|
|
23439
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
23440
|
+
/*!*************************************************************************************************************************!*\
|
|
23441
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
23442
|
+
\*************************************************************************************************************************/
|
|
23443
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23444
|
+
|
|
23445
|
+
"use strict";
|
|
23446
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23447
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23448
|
+
/* harmony export */ "default": () => (/* binding */ toPrimitive)
|
|
23449
|
+
/* harmony export */ });
|
|
23450
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
23451
|
+
|
|
23452
|
+
function toPrimitive(t, r) {
|
|
23453
|
+
if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(t) || !t) return t;
|
|
23454
|
+
var e = t[Symbol.toPrimitive];
|
|
23455
|
+
if (void 0 !== e) {
|
|
23456
|
+
var i = e.call(t, r || "default");
|
|
23457
|
+
if ("object" != (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i)) return i;
|
|
23458
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
23459
|
+
}
|
|
23460
|
+
return ("string" === r ? String : Number)(t);
|
|
23461
|
+
}
|
|
23462
|
+
|
|
23463
|
+
/***/ }),
|
|
23464
|
+
|
|
23465
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
23466
|
+
/*!***************************************************************************************************************************!*\
|
|
23467
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
23468
|
+
\***************************************************************************************************************************/
|
|
23469
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23470
|
+
|
|
23471
|
+
"use strict";
|
|
23472
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23473
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23474
|
+
/* harmony export */ "default": () => (/* binding */ toPropertyKey)
|
|
23475
|
+
/* harmony export */ });
|
|
23476
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
23477
|
+
/* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
|
|
23478
|
+
|
|
23479
|
+
|
|
23480
|
+
function toPropertyKey(t) {
|
|
23481
|
+
var i = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(t, "string");
|
|
23482
|
+
return "symbol" == (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(i) ? i : String(i);
|
|
23483
|
+
}
|
|
23484
|
+
|
|
23485
|
+
/***/ }),
|
|
23486
|
+
|
|
23487
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
23488
|
+
/*!********************************************************************************************************************!*\
|
|
23489
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.8/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
23490
|
+
\********************************************************************************************************************/
|
|
23491
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23492
|
+
|
|
23493
|
+
"use strict";
|
|
23494
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23495
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23496
|
+
/* harmony export */ "default": () => (/* binding */ _typeof)
|
|
23497
|
+
/* harmony export */ });
|
|
23498
|
+
function _typeof(o) {
|
|
23499
|
+
"@babel/helpers - typeof";
|
|
23500
|
+
|
|
23501
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
23502
|
+
return typeof o;
|
|
23503
|
+
} : function (o) {
|
|
23504
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
23505
|
+
}, _typeof(o);
|
|
23506
|
+
}
|
|
23507
|
+
|
|
23352
23508
|
/***/ })
|
|
23353
23509
|
|
|
23354
23510
|
/******/ });
|