@itwin/core-i18n 4.4.0-dev.4 → 4.4.0-dev.5
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.
|
@@ -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.4/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.4/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.4/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.4/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.4/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.4/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.4/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.4/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.4/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.4/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.4/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
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -21582,7 +21528,7 @@ class Tracing {
|
|
|
21582
21528
|
"use strict";
|
|
21583
21529
|
__webpack_require__.r(__webpack_exports__);
|
|
21584
21530
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21585
|
-
/* harmony export */ TupleKeyedMap: () => (/* binding */ TupleKeyedMap)
|
|
21531
|
+
/* harmony export */ "TupleKeyedMap": () => (/* binding */ TupleKeyedMap)
|
|
21586
21532
|
/* harmony export */ });
|
|
21587
21533
|
/*---------------------------------------------------------------------------------------------
|
|
21588
21534
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -21695,11 +21641,11 @@ class TupleKeyedMap {
|
|
|
21695
21641
|
"use strict";
|
|
21696
21642
|
__webpack_require__.r(__webpack_exports__);
|
|
21697
21643
|
/* 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)
|
|
21644
|
+
/* harmony export */ "TypedArrayBuilder": () => (/* binding */ TypedArrayBuilder),
|
|
21645
|
+
/* harmony export */ "Uint16ArrayBuilder": () => (/* binding */ Uint16ArrayBuilder),
|
|
21646
|
+
/* harmony export */ "Uint32ArrayBuilder": () => (/* binding */ Uint32ArrayBuilder),
|
|
21647
|
+
/* harmony export */ "Uint8ArrayBuilder": () => (/* binding */ Uint8ArrayBuilder),
|
|
21648
|
+
/* harmony export */ "UintArrayBuilder": () => (/* binding */ UintArrayBuilder)
|
|
21703
21649
|
/* harmony export */ });
|
|
21704
21650
|
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
|
|
21705
21651
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -21913,7 +21859,7 @@ class UintArrayBuilder extends TypedArrayBuilder {
|
|
|
21913
21859
|
"use strict";
|
|
21914
21860
|
__webpack_require__.r(__webpack_exports__);
|
|
21915
21861
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21916
|
-
/* harmony export */ UnexpectedErrors: () => (/* binding */ UnexpectedErrors)
|
|
21862
|
+
/* harmony export */ "UnexpectedErrors": () => (/* binding */ UnexpectedErrors)
|
|
21917
21863
|
/* harmony export */ });
|
|
21918
21864
|
/* harmony import */ var _Logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logger */ "../bentley/lib/esm/Logger.js");
|
|
21919
21865
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -21994,9 +21940,9 @@ UnexpectedErrors._handler = _a.errorLog; // default to error logging
|
|
|
21994
21940
|
"use strict";
|
|
21995
21941
|
__webpack_require__.r(__webpack_exports__);
|
|
21996
21942
|
/* 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)
|
|
21943
|
+
/* harmony export */ "asInstanceOf": () => (/* binding */ asInstanceOf),
|
|
21944
|
+
/* harmony export */ "isInstanceOf": () => (/* binding */ isInstanceOf),
|
|
21945
|
+
/* harmony export */ "omit": () => (/* binding */ omit)
|
|
22000
21946
|
/* harmony export */ });
|
|
22001
21947
|
/*---------------------------------------------------------------------------------------------
|
|
22002
21948
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -22045,7 +21991,7 @@ function omit(t, keys) {
|
|
|
22045
21991
|
"use strict";
|
|
22046
21992
|
__webpack_require__.r(__webpack_exports__);
|
|
22047
21993
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22048
|
-
/* harmony export */ YieldManager: () => (/* binding */ YieldManager)
|
|
21994
|
+
/* harmony export */ "YieldManager": () => (/* binding */ YieldManager)
|
|
22049
21995
|
/* harmony export */ });
|
|
22050
21996
|
/*---------------------------------------------------------------------------------------------
|
|
22051
21997
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -22098,95 +22044,95 @@ class YieldManager {
|
|
|
22098
22044
|
"use strict";
|
|
22099
22045
|
__webpack_require__.r(__webpack_exports__);
|
|
22100
22046
|
/* 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)
|
|
22047
|
+
/* harmony export */ "AbandonedError": () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.AbandonedError),
|
|
22048
|
+
/* harmony export */ "BeDuration": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeDuration),
|
|
22049
|
+
/* harmony export */ "BeEvent": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEvent),
|
|
22050
|
+
/* harmony export */ "BeEventList": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeEventList),
|
|
22051
|
+
/* harmony export */ "BeTimePoint": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.BeTimePoint),
|
|
22052
|
+
/* harmony export */ "BeUiEvent": () => (/* reexport safe */ _BeEvent__WEBPACK_IMPORTED_MODULE_2__.BeUiEvent),
|
|
22053
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyError),
|
|
22054
|
+
/* harmony export */ "BentleyLoggerCategory": () => (/* reexport safe */ _BentleyLoggerCategory__WEBPACK_IMPORTED_MODULE_4__.BentleyLoggerCategory),
|
|
22055
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BentleyStatus),
|
|
22056
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.BriefcaseStatus),
|
|
22057
|
+
/* harmony export */ "ByteStream": () => (/* reexport safe */ _ByteStream__WEBPACK_IMPORTED_MODULE_7__.ByteStream),
|
|
22058
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.ChangeSetStatus),
|
|
22059
|
+
/* harmony export */ "CompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.CompressedId64Set),
|
|
22060
|
+
/* harmony export */ "DbOpcode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbOpcode),
|
|
22061
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.DbResult),
|
|
22062
|
+
/* harmony export */ "Dictionary": () => (/* reexport safe */ _Dictionary__WEBPACK_IMPORTED_MODULE_11__.Dictionary),
|
|
22063
|
+
/* harmony export */ "DisposableList": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.DisposableList),
|
|
22064
|
+
/* harmony export */ "DuplicatePolicy": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.DuplicatePolicy),
|
|
22065
|
+
/* harmony export */ "Entry": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.Entry),
|
|
22066
|
+
/* harmony export */ "ErrorCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.ErrorCategory),
|
|
22067
|
+
/* harmony export */ "GeoServiceStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.GeoServiceStatus),
|
|
22068
|
+
/* harmony export */ "Guid": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Guid),
|
|
22069
|
+
/* harmony export */ "HttpStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.HttpStatus),
|
|
22070
|
+
/* harmony export */ "IModelHubStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelHubStatus),
|
|
22071
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.IModelStatus),
|
|
22072
|
+
/* harmony export */ "Id64": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.Id64),
|
|
22073
|
+
/* harmony export */ "IndexMap": () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexMap),
|
|
22074
|
+
/* harmony export */ "IndexedValue": () => (/* reexport safe */ _IndexMap__WEBPACK_IMPORTED_MODULE_14__.IndexedValue),
|
|
22075
|
+
/* harmony export */ "JsonUtils": () => (/* reexport safe */ _JsonUtils__WEBPACK_IMPORTED_MODULE_16__.JsonUtils),
|
|
22076
|
+
/* harmony export */ "LRUCache": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUCache),
|
|
22077
|
+
/* harmony export */ "LRUDictionary": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUDictionary),
|
|
22078
|
+
/* harmony export */ "LRUMap": () => (/* reexport safe */ _LRUMap__WEBPACK_IMPORTED_MODULE_18__.LRUMap),
|
|
22079
|
+
/* harmony export */ "LogLevel": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.LogLevel),
|
|
22080
|
+
/* harmony export */ "Logger": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.Logger),
|
|
22081
|
+
/* harmony export */ "MutableCompressedId64Set": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.MutableCompressedId64Set),
|
|
22082
|
+
/* harmony export */ "ObservableSet": () => (/* reexport safe */ _ObservableSet__WEBPACK_IMPORTED_MODULE_19__.ObservableSet),
|
|
22083
|
+
/* harmony export */ "OneAtATimeAction": () => (/* reexport safe */ _OneAtATimeAction__WEBPACK_IMPORTED_MODULE_20__.OneAtATimeAction),
|
|
22084
|
+
/* harmony export */ "OpenMode": () => (/* reexport safe */ _BeSQLite__WEBPACK_IMPORTED_MODULE_6__.OpenMode),
|
|
22085
|
+
/* harmony export */ "OrderedId64Array": () => (/* reexport safe */ _CompressedId64Set__WEBPACK_IMPORTED_MODULE_10__.OrderedId64Array),
|
|
22086
|
+
/* harmony export */ "OrderedId64Iterable": () => (/* reexport safe */ _OrderedId64Iterable__WEBPACK_IMPORTED_MODULE_21__.OrderedId64Iterable),
|
|
22087
|
+
/* harmony export */ "OrderedSet": () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.OrderedSet),
|
|
22088
|
+
/* harmony export */ "PerfLogger": () => (/* reexport safe */ _Logger__WEBPACK_IMPORTED_MODULE_17__.PerfLogger),
|
|
22089
|
+
/* harmony export */ "PriorityQueue": () => (/* reexport safe */ _PriorityQueue__WEBPACK_IMPORTED_MODULE_24__.PriorityQueue),
|
|
22090
|
+
/* harmony export */ "ProcessDetector": () => (/* reexport safe */ _ProcessDetector__WEBPACK_IMPORTED_MODULE_25__.ProcessDetector),
|
|
22091
|
+
/* harmony export */ "ReadonlyOrderedSet": () => (/* reexport safe */ _OrderedSet__WEBPACK_IMPORTED_MODULE_22__.ReadonlyOrderedSet),
|
|
22092
|
+
/* harmony export */ "ReadonlySortedArray": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.ReadonlySortedArray),
|
|
22093
|
+
/* harmony export */ "RealityDataStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RealityDataStatus),
|
|
22094
|
+
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RepositoryStatus),
|
|
22095
|
+
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _BentleyError__WEBPACK_IMPORTED_MODULE_3__.RpcInterfaceStatus),
|
|
22096
|
+
/* harmony export */ "SortedArray": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.SortedArray),
|
|
22097
|
+
/* harmony export */ "SpanKind": () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.SpanKind),
|
|
22098
|
+
/* harmony export */ "StatusCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.StatusCategory),
|
|
22099
|
+
/* harmony export */ "StopWatch": () => (/* reexport safe */ _Time__WEBPACK_IMPORTED_MODULE_28__.StopWatch),
|
|
22100
|
+
/* harmony export */ "SuccessCategory": () => (/* reexport safe */ _StatusCategory__WEBPACK_IMPORTED_MODULE_5__.SuccessCategory),
|
|
22101
|
+
/* harmony export */ "Tracing": () => (/* reexport safe */ _Tracing__WEBPACK_IMPORTED_MODULE_29__.Tracing),
|
|
22102
|
+
/* harmony export */ "TransientIdSequence": () => (/* reexport safe */ _Id__WEBPACK_IMPORTED_MODULE_13__.TransientIdSequence),
|
|
22103
|
+
/* harmony export */ "TupleKeyedMap": () => (/* reexport safe */ _TupleKeyedMap__WEBPACK_IMPORTED_MODULE_30__.TupleKeyedMap),
|
|
22104
|
+
/* harmony export */ "TypedArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.TypedArrayBuilder),
|
|
22105
|
+
/* harmony export */ "Uint16ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint16ArrayBuilder),
|
|
22106
|
+
/* harmony export */ "Uint32ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint32ArrayBuilder),
|
|
22107
|
+
/* harmony export */ "Uint8ArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.Uint8ArrayBuilder),
|
|
22108
|
+
/* harmony export */ "UintArrayBuilder": () => (/* reexport safe */ _TypedArrayBuilder__WEBPACK_IMPORTED_MODULE_31__.UintArrayBuilder),
|
|
22109
|
+
/* harmony export */ "UnexpectedErrors": () => (/* reexport safe */ _UnexpectedErrors__WEBPACK_IMPORTED_MODULE_32__.UnexpectedErrors),
|
|
22110
|
+
/* harmony export */ "YieldManager": () => (/* reexport safe */ _YieldManager__WEBPACK_IMPORTED_MODULE_34__.YieldManager),
|
|
22111
|
+
/* harmony export */ "areEqualPossiblyUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.areEqualPossiblyUndefined),
|
|
22112
|
+
/* harmony export */ "asInstanceOf": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.asInstanceOf),
|
|
22113
|
+
/* harmony export */ "assert": () => (/* reexport safe */ _Assert__WEBPACK_IMPORTED_MODULE_1__.assert),
|
|
22114
|
+
/* harmony export */ "base64StringToUint8Array": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.base64StringToUint8Array),
|
|
22115
|
+
/* harmony export */ "compareBooleans": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleans),
|
|
22116
|
+
/* harmony export */ "compareBooleansOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareBooleansOrUndefined),
|
|
22117
|
+
/* harmony export */ "compareNumbers": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbers),
|
|
22118
|
+
/* harmony export */ "compareNumbersOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareNumbersOrUndefined),
|
|
22119
|
+
/* harmony export */ "comparePossiblyUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.comparePossiblyUndefined),
|
|
22120
|
+
/* harmony export */ "compareStrings": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStrings),
|
|
22121
|
+
/* harmony export */ "compareStringsOrUndefined": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareStringsOrUndefined),
|
|
22122
|
+
/* harmony export */ "compareWithTolerance": () => (/* reexport safe */ _Compare__WEBPACK_IMPORTED_MODULE_9__.compareWithTolerance),
|
|
22123
|
+
/* harmony export */ "dispose": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.dispose),
|
|
22124
|
+
/* harmony export */ "disposeArray": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.disposeArray),
|
|
22125
|
+
/* harmony export */ "isIDisposable": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.isIDisposable),
|
|
22126
|
+
/* harmony export */ "isInstanceOf": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.isInstanceOf),
|
|
22127
|
+
/* harmony export */ "isProperSubclassOf": () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isProperSubclassOf),
|
|
22128
|
+
/* harmony export */ "isSubclassOf": () => (/* reexport safe */ _ClassUtils__WEBPACK_IMPORTED_MODULE_8__.isSubclassOf),
|
|
22129
|
+
/* harmony export */ "lowerBound": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.lowerBound),
|
|
22130
|
+
/* harmony export */ "omit": () => (/* reexport safe */ _UtilityTypes__WEBPACK_IMPORTED_MODULE_33__.omit),
|
|
22131
|
+
/* harmony export */ "partitionArray": () => (/* reexport safe */ _partitionArray__WEBPACK_IMPORTED_MODULE_23__.partitionArray),
|
|
22132
|
+
/* harmony export */ "shallowClone": () => (/* reexport safe */ _SortedArray__WEBPACK_IMPORTED_MODULE_26__.shallowClone),
|
|
22133
|
+
/* harmony export */ "using": () => (/* reexport safe */ _Disposable__WEBPACK_IMPORTED_MODULE_12__.using),
|
|
22134
|
+
/* harmony export */ "utf8ToString": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToString),
|
|
22135
|
+
/* harmony export */ "utf8ToStringPolyfill": () => (/* reexport safe */ _StringUtils__WEBPACK_IMPORTED_MODULE_27__.utf8ToStringPolyfill)
|
|
22190
22136
|
/* harmony export */ });
|
|
22191
22137
|
/* harmony import */ var _AccessToken__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AccessToken */ "../bentley/lib/esm/AccessToken.js");
|
|
22192
22138
|
/* harmony import */ var _Assert__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Assert */ "../bentley/lib/esm/Assert.js");
|
|
@@ -22314,7 +22260,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22314
22260
|
"use strict";
|
|
22315
22261
|
__webpack_require__.r(__webpack_exports__);
|
|
22316
22262
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22317
|
-
/* harmony export */ partitionArray: () => (/* binding */ partitionArray)
|
|
22263
|
+
/* harmony export */ "partitionArray": () => (/* binding */ partitionArray)
|
|
22318
22264
|
/* harmony export */ });
|
|
22319
22265
|
/*---------------------------------------------------------------------------------------------
|
|
22320
22266
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
@@ -22379,9 +22325,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
22379
22325
|
};
|
|
22380
22326
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
22381
22327
|
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.
|
|
22328
|
+
const i18next_1 = __importDefault(__webpack_require__(/*! i18next */ "../../common/temp/node_modules/.pnpm/i18next@21.9.1/node_modules/i18next/dist/cjs/i18next.js"));
|
|
22329
|
+
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"));
|
|
22330
|
+
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
22331
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../bentley/lib/esm/core-bentley.js");
|
|
22386
22332
|
const DEFAULT_MAX_RETRIES = 1; // a low number prevents wasted time and potential timeouts when requesting localization files throws an error
|
|
22387
22333
|
/** Supplies localizations for iTwin.js
|
|
@@ -22609,9 +22555,9 @@ TranslationLogger.type = "logger";
|
|
|
22609
22555
|
|
|
22610
22556
|
/***/ }),
|
|
22611
22557
|
|
|
22612
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22558
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/arrayLikeToArray.js":
|
|
22613
22559
|
/*!**************************************************************************************************************************!*\
|
|
22614
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22560
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
|
|
22615
22561
|
\**************************************************************************************************************************/
|
|
22616
22562
|
/***/ ((module) => {
|
|
22617
22563
|
|
|
@@ -22624,9 +22570,9 @@ module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exp
|
|
|
22624
22570
|
|
|
22625
22571
|
/***/ }),
|
|
22626
22572
|
|
|
22627
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22573
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/arrayWithHoles.js":
|
|
22628
22574
|
/*!************************************************************************************************************************!*\
|
|
22629
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22575
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
|
|
22630
22576
|
\************************************************************************************************************************/
|
|
22631
22577
|
/***/ ((module) => {
|
|
22632
22578
|
|
|
@@ -22637,9 +22583,9 @@ module.exports = _arrayWithHoles, module.exports.__esModule = true, module.expor
|
|
|
22637
22583
|
|
|
22638
22584
|
/***/ }),
|
|
22639
22585
|
|
|
22640
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22586
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/assertThisInitialized.js":
|
|
22641
22587
|
/*!*******************************************************************************************************************************!*\
|
|
22642
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22588
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/assertThisInitialized.js ***!
|
|
22643
22589
|
\*******************************************************************************************************************************/
|
|
22644
22590
|
/***/ ((module) => {
|
|
22645
22591
|
|
|
@@ -22653,9 +22599,9 @@ module.exports = _assertThisInitialized, module.exports.__esModule = true, modul
|
|
|
22653
22599
|
|
|
22654
22600
|
/***/ }),
|
|
22655
22601
|
|
|
22656
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22602
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/classCallCheck.js":
|
|
22657
22603
|
/*!************************************************************************************************************************!*\
|
|
22658
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22604
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/classCallCheck.js ***!
|
|
22659
22605
|
\************************************************************************************************************************/
|
|
22660
22606
|
/***/ ((module) => {
|
|
22661
22607
|
|
|
@@ -22668,13 +22614,13 @@ module.exports = _classCallCheck, module.exports.__esModule = true, module.expor
|
|
|
22668
22614
|
|
|
22669
22615
|
/***/ }),
|
|
22670
22616
|
|
|
22671
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22617
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/createClass.js":
|
|
22672
22618
|
/*!*********************************************************************************************************************!*\
|
|
22673
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22619
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/createClass.js ***!
|
|
22674
22620
|
\*********************************************************************************************************************/
|
|
22675
22621
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22676
22622
|
|
|
22677
|
-
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22623
|
+
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/toPropertyKey.js");
|
|
22678
22624
|
function _defineProperties(target, props) {
|
|
22679
22625
|
for (var i = 0; i < props.length; i++) {
|
|
22680
22626
|
var descriptor = props[i];
|
|
@@ -22696,13 +22642,13 @@ module.exports = _createClass, module.exports.__esModule = true, module.exports[
|
|
|
22696
22642
|
|
|
22697
22643
|
/***/ }),
|
|
22698
22644
|
|
|
22699
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22645
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/defineProperty.js":
|
|
22700
22646
|
/*!************************************************************************************************************************!*\
|
|
22701
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22647
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/defineProperty.js ***!
|
|
22702
22648
|
\************************************************************************************************************************/
|
|
22703
22649
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22704
22650
|
|
|
22705
|
-
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22651
|
+
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/toPropertyKey.js");
|
|
22706
22652
|
function _defineProperty(obj, key, value) {
|
|
22707
22653
|
key = toPropertyKey(key);
|
|
22708
22654
|
if (key in obj) {
|
|
@@ -22721,9 +22667,9 @@ module.exports = _defineProperty, module.exports.__esModule = true, module.expor
|
|
|
22721
22667
|
|
|
22722
22668
|
/***/ }),
|
|
22723
22669
|
|
|
22724
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22670
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/getPrototypeOf.js":
|
|
22725
22671
|
/*!************************************************************************************************************************!*\
|
|
22726
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22672
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/getPrototypeOf.js ***!
|
|
22727
22673
|
\************************************************************************************************************************/
|
|
22728
22674
|
/***/ ((module) => {
|
|
22729
22675
|
|
|
@@ -22737,13 +22683,13 @@ module.exports = _getPrototypeOf, module.exports.__esModule = true, module.expor
|
|
|
22737
22683
|
|
|
22738
22684
|
/***/ }),
|
|
22739
22685
|
|
|
22740
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22686
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/inherits.js":
|
|
22741
22687
|
/*!******************************************************************************************************************!*\
|
|
22742
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22688
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/inherits.js ***!
|
|
22743
22689
|
\******************************************************************************************************************/
|
|
22744
22690
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22745
22691
|
|
|
22746
|
-
var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22692
|
+
var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/setPrototypeOf.js");
|
|
22747
22693
|
function _inherits(subClass, superClass) {
|
|
22748
22694
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
22749
22695
|
throw new TypeError("Super expression must either be null or a function");
|
|
@@ -22764,9 +22710,9 @@ module.exports = _inherits, module.exports.__esModule = true, module.exports["de
|
|
|
22764
22710
|
|
|
22765
22711
|
/***/ }),
|
|
22766
22712
|
|
|
22767
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22713
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/iterableToArray.js":
|
|
22768
22714
|
/*!*************************************************************************************************************************!*\
|
|
22769
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22715
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/iterableToArray.js ***!
|
|
22770
22716
|
\*************************************************************************************************************************/
|
|
22771
22717
|
/***/ ((module) => {
|
|
22772
22718
|
|
|
@@ -22777,9 +22723,9 @@ module.exports = _iterableToArray, module.exports.__esModule = true, module.expo
|
|
|
22777
22723
|
|
|
22778
22724
|
/***/ }),
|
|
22779
22725
|
|
|
22780
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22726
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/nonIterableRest.js":
|
|
22781
22727
|
/*!*************************************************************************************************************************!*\
|
|
22782
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22728
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
|
|
22783
22729
|
\*************************************************************************************************************************/
|
|
22784
22730
|
/***/ ((module) => {
|
|
22785
22731
|
|
|
@@ -22790,14 +22736,14 @@ module.exports = _nonIterableRest, module.exports.__esModule = true, module.expo
|
|
|
22790
22736
|
|
|
22791
22737
|
/***/ }),
|
|
22792
22738
|
|
|
22793
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22739
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js":
|
|
22794
22740
|
/*!***********************************************************************************************************************************!*\
|
|
22795
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22741
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js ***!
|
|
22796
22742
|
\***********************************************************************************************************************************/
|
|
22797
22743
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22798
22744
|
|
|
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.
|
|
22745
|
+
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
|
|
22746
|
+
var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/assertThisInitialized.js");
|
|
22801
22747
|
function _possibleConstructorReturn(self, call) {
|
|
22802
22748
|
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
22803
22749
|
return call;
|
|
@@ -22810,9 +22756,9 @@ module.exports = _possibleConstructorReturn, module.exports.__esModule = true, m
|
|
|
22810
22756
|
|
|
22811
22757
|
/***/ }),
|
|
22812
22758
|
|
|
22813
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22759
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/setPrototypeOf.js":
|
|
22814
22760
|
/*!************************************************************************************************************************!*\
|
|
22815
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22761
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/setPrototypeOf.js ***!
|
|
22816
22762
|
\************************************************************************************************************************/
|
|
22817
22763
|
/***/ ((module) => {
|
|
22818
22764
|
|
|
@@ -22827,16 +22773,16 @@ module.exports = _setPrototypeOf, module.exports.__esModule = true, module.expor
|
|
|
22827
22773
|
|
|
22828
22774
|
/***/ }),
|
|
22829
22775
|
|
|
22830
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22776
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/toArray.js":
|
|
22831
22777
|
/*!*****************************************************************************************************************!*\
|
|
22832
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22778
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/toArray.js ***!
|
|
22833
22779
|
\*****************************************************************************************************************/
|
|
22834
22780
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22835
22781
|
|
|
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.
|
|
22782
|
+
var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/arrayWithHoles.js");
|
|
22783
|
+
var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/iterableToArray.js");
|
|
22784
|
+
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js");
|
|
22785
|
+
var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/nonIterableRest.js");
|
|
22840
22786
|
function _toArray(arr) {
|
|
22841
22787
|
return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();
|
|
22842
22788
|
}
|
|
@@ -22844,13 +22790,13 @@ module.exports = _toArray, module.exports.__esModule = true, module.exports["def
|
|
|
22844
22790
|
|
|
22845
22791
|
/***/ }),
|
|
22846
22792
|
|
|
22847
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22793
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/toPrimitive.js":
|
|
22848
22794
|
/*!*********************************************************************************************************************!*\
|
|
22849
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22795
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/toPrimitive.js ***!
|
|
22850
22796
|
\*********************************************************************************************************************/
|
|
22851
22797
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22852
22798
|
|
|
22853
|
-
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22799
|
+
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
|
|
22854
22800
|
function _toPrimitive(input, hint) {
|
|
22855
22801
|
if (_typeof(input) !== "object" || input === null) return input;
|
|
22856
22802
|
var prim = input[Symbol.toPrimitive];
|
|
@@ -22865,14 +22811,14 @@ module.exports = _toPrimitive, module.exports.__esModule = true, module.exports[
|
|
|
22865
22811
|
|
|
22866
22812
|
/***/ }),
|
|
22867
22813
|
|
|
22868
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22814
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/toPropertyKey.js":
|
|
22869
22815
|
/*!***********************************************************************************************************************!*\
|
|
22870
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22816
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/toPropertyKey.js ***!
|
|
22871
22817
|
\***********************************************************************************************************************/
|
|
22872
22818
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22873
22819
|
|
|
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.
|
|
22820
|
+
var _typeof = (__webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/typeof.js")["default"]);
|
|
22821
|
+
var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/toPrimitive.js");
|
|
22876
22822
|
function _toPropertyKey(arg) {
|
|
22877
22823
|
var key = toPrimitive(arg, "string");
|
|
22878
22824
|
return _typeof(key) === "symbol" ? key : String(key);
|
|
@@ -22881,9 +22827,9 @@ module.exports = _toPropertyKey, module.exports.__esModule = true, module.export
|
|
|
22881
22827
|
|
|
22882
22828
|
/***/ }),
|
|
22883
22829
|
|
|
22884
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22830
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/typeof.js":
|
|
22885
22831
|
/*!****************************************************************************************************************!*\
|
|
22886
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22832
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/typeof.js ***!
|
|
22887
22833
|
\****************************************************************************************************************/
|
|
22888
22834
|
/***/ ((module) => {
|
|
22889
22835
|
|
|
@@ -22900,13 +22846,13 @@ module.exports = _typeof, module.exports.__esModule = true, module.exports["defa
|
|
|
22900
22846
|
|
|
22901
22847
|
/***/ }),
|
|
22902
22848
|
|
|
22903
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22849
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js":
|
|
22904
22850
|
/*!************************************************************************************************************************************!*\
|
|
22905
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22851
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
|
|
22906
22852
|
\************************************************************************************************************************************/
|
|
22907
22853
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
22908
22854
|
|
|
22909
|
-
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.
|
|
22855
|
+
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/arrayLikeToArray.js");
|
|
22910
22856
|
function _unsupportedIterableToArray(o, minLen) {
|
|
22911
22857
|
if (!o) return;
|
|
22912
22858
|
if (typeof o === "string") return arrayLikeToArray(o, minLen);
|
|
@@ -22919,9 +22865,9 @@ module.exports = _unsupportedIterableToArray, module.exports.__esModule = true,
|
|
|
22919
22865
|
|
|
22920
22866
|
/***/ }),
|
|
22921
22867
|
|
|
22922
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
22868
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/getFetch.js":
|
|
22923
22869
|
/*!*************************************************************************************************************************!*\
|
|
22924
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
22870
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/getFetch.js ***!
|
|
22925
22871
|
\*************************************************************************************************************************/
|
|
22926
22872
|
/***/ ((module, exports, __webpack_require__) => {
|
|
22927
22873
|
|
|
@@ -22946,9 +22892,9 @@ if ( true && (typeof window === 'undefined' || typeof window.document === 'undef
|
|
|
22946
22892
|
|
|
22947
22893
|
/***/ }),
|
|
22948
22894
|
|
|
22949
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
22895
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/index.js":
|
|
22950
22896
|
/*!**********************************************************************************************************************!*\
|
|
22951
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
22897
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/index.js ***!
|
|
22952
22898
|
\**********************************************************************************************************************/
|
|
22953
22899
|
/***/ ((module, exports, __webpack_require__) => {
|
|
22954
22900
|
|
|
@@ -22959,13 +22905,21 @@ Object.defineProperty(exports, "__esModule", ({
|
|
|
22959
22905
|
value: true
|
|
22960
22906
|
}));
|
|
22961
22907
|
exports["default"] = void 0;
|
|
22962
|
-
|
|
22963
|
-
var
|
|
22908
|
+
|
|
22909
|
+
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");
|
|
22910
|
+
|
|
22911
|
+
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"));
|
|
22912
|
+
|
|
22964
22913
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22914
|
+
|
|
22965
22915
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
22916
|
+
|
|
22966
22917
|
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); } }
|
|
22918
|
+
|
|
22967
22919
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
22920
|
+
|
|
22968
22921
|
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; }
|
|
22922
|
+
|
|
22969
22923
|
var getDefaults = function getDefaults() {
|
|
22970
22924
|
return {
|
|
22971
22925
|
loadPath: '/locales/{{lng}}/{{ns}}.json',
|
|
@@ -22992,26 +22946,32 @@ var getDefaults = function getDefaults() {
|
|
|
22992
22946
|
}
|
|
22993
22947
|
};
|
|
22994
22948
|
};
|
|
22949
|
+
|
|
22995
22950
|
var Backend = function () {
|
|
22996
22951
|
function Backend(services) {
|
|
22997
22952
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
22998
22953
|
var allOptions = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
22954
|
+
|
|
22999
22955
|
_classCallCheck(this, Backend);
|
|
22956
|
+
|
|
23000
22957
|
this.services = services;
|
|
23001
22958
|
this.options = options;
|
|
23002
22959
|
this.allOptions = allOptions;
|
|
23003
22960
|
this.type = 'backend';
|
|
23004
22961
|
this.init(services, options, allOptions);
|
|
23005
22962
|
}
|
|
22963
|
+
|
|
23006
22964
|
_createClass(Backend, [{
|
|
23007
22965
|
key: "init",
|
|
23008
22966
|
value: function init(services) {
|
|
23009
22967
|
var _this = this;
|
|
22968
|
+
|
|
23010
22969
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
23011
22970
|
var allOptions = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
23012
22971
|
this.services = services;
|
|
23013
22972
|
this.options = (0, _utils.defaults)(options, this.options || {}, getDefaults());
|
|
23014
22973
|
this.allOptions = allOptions;
|
|
22974
|
+
|
|
23015
22975
|
if (this.services && this.options.reloadInterval) {
|
|
23016
22976
|
setInterval(function () {
|
|
23017
22977
|
return _this.reload();
|
|
@@ -23032,17 +22992,22 @@ var Backend = function () {
|
|
|
23032
22992
|
key: "_readAny",
|
|
23033
22993
|
value: function _readAny(languages, loadUrlLanguages, namespaces, loadUrlNamespaces, callback) {
|
|
23034
22994
|
var _this2 = this;
|
|
22995
|
+
|
|
23035
22996
|
var loadPath = this.options.loadPath;
|
|
22997
|
+
|
|
23036
22998
|
if (typeof this.options.loadPath === 'function') {
|
|
23037
22999
|
loadPath = this.options.loadPath(languages, namespaces);
|
|
23038
23000
|
}
|
|
23001
|
+
|
|
23039
23002
|
loadPath = (0, _utils.makePromise)(loadPath);
|
|
23040
23003
|
loadPath.then(function (resolvedLoadPath) {
|
|
23041
23004
|
if (!resolvedLoadPath) return callback(null, {});
|
|
23005
|
+
|
|
23042
23006
|
var url = _this2.services.interpolator.interpolate(resolvedLoadPath, {
|
|
23043
23007
|
lng: languages.join('+'),
|
|
23044
23008
|
ns: namespaces.join('+')
|
|
23045
23009
|
});
|
|
23010
|
+
|
|
23046
23011
|
_this2.loadUrl(url, callback, loadUrlLanguages, loadUrlNamespaces);
|
|
23047
23012
|
});
|
|
23048
23013
|
}
|
|
@@ -23050,12 +23015,14 @@ var Backend = function () {
|
|
|
23050
23015
|
key: "loadUrl",
|
|
23051
23016
|
value: function loadUrl(url, callback, languages, namespaces) {
|
|
23052
23017
|
var _this3 = this;
|
|
23018
|
+
|
|
23053
23019
|
this.options.request(this.options, url, undefined, function (err, res) {
|
|
23054
23020
|
if (res && (res.status >= 500 && res.status < 600 || !res.status)) return callback('failed loading ' + url + '; status code: ' + res.status, true);
|
|
23055
23021
|
if (res && res.status >= 400 && res.status < 500) return callback('failed loading ' + url + '; status code: ' + res.status, false);
|
|
23056
23022
|
if (!res && err && err.message && err.message.indexOf('Failed to fetch') > -1) return callback('failed loading ' + url + ': ' + err.message, true);
|
|
23057
23023
|
if (err) return callback(err, false);
|
|
23058
23024
|
var ret, parseErr;
|
|
23025
|
+
|
|
23059
23026
|
try {
|
|
23060
23027
|
if (typeof res.data === 'string') {
|
|
23061
23028
|
ret = _this3.options.parse(res.data, languages, namespaces);
|
|
@@ -23065,6 +23032,7 @@ var Backend = function () {
|
|
|
23065
23032
|
} catch (e) {
|
|
23066
23033
|
parseErr = 'failed parsing ' + url + ' to json';
|
|
23067
23034
|
}
|
|
23035
|
+
|
|
23068
23036
|
if (parseErr) return callback(parseErr, false);
|
|
23069
23037
|
callback(null, ret);
|
|
23070
23038
|
});
|
|
@@ -23073,6 +23041,7 @@ var Backend = function () {
|
|
|
23073
23041
|
key: "create",
|
|
23074
23042
|
value: function create(languages, namespace, key, fallbackValue, callback) {
|
|
23075
23043
|
var _this4 = this;
|
|
23044
|
+
|
|
23076
23045
|
if (!this.options.addPath) return;
|
|
23077
23046
|
if (typeof languages === 'string') languages = [languages];
|
|
23078
23047
|
var payload = this.options.parsePayload(namespace, key, fallbackValue);
|
|
@@ -23081,17 +23050,21 @@ var Backend = function () {
|
|
|
23081
23050
|
var resArray = [];
|
|
23082
23051
|
languages.forEach(function (lng) {
|
|
23083
23052
|
var addPath = _this4.options.addPath;
|
|
23053
|
+
|
|
23084
23054
|
if (typeof _this4.options.addPath === 'function') {
|
|
23085
23055
|
addPath = _this4.options.addPath(lng, namespace);
|
|
23086
23056
|
}
|
|
23057
|
+
|
|
23087
23058
|
var url = _this4.services.interpolator.interpolate(addPath, {
|
|
23088
23059
|
lng: lng,
|
|
23089
23060
|
ns: namespace
|
|
23090
23061
|
});
|
|
23062
|
+
|
|
23091
23063
|
_this4.options.request(_this4.options, url, payload, function (data, res) {
|
|
23092
23064
|
finished += 1;
|
|
23093
23065
|
dataArray.push(data);
|
|
23094
23066
|
resArray.push(res);
|
|
23067
|
+
|
|
23095
23068
|
if (finished === languages.length) {
|
|
23096
23069
|
if (callback) callback(dataArray, resArray);
|
|
23097
23070
|
}
|
|
@@ -23102,20 +23075,22 @@ var Backend = function () {
|
|
|
23102
23075
|
key: "reload",
|
|
23103
23076
|
value: function reload() {
|
|
23104
23077
|
var _this5 = this;
|
|
23078
|
+
|
|
23105
23079
|
var _this$services = this.services,
|
|
23106
|
-
|
|
23107
|
-
|
|
23108
|
-
|
|
23080
|
+
backendConnector = _this$services.backendConnector,
|
|
23081
|
+
languageUtils = _this$services.languageUtils,
|
|
23082
|
+
logger = _this$services.logger;
|
|
23109
23083
|
var currentLanguage = backendConnector.language;
|
|
23110
23084
|
if (currentLanguage && currentLanguage.toLowerCase() === 'cimode') return;
|
|
23111
|
-
|
|
23112
23085
|
var toLoad = [];
|
|
23086
|
+
|
|
23113
23087
|
var append = function append(lng) {
|
|
23114
23088
|
var lngs = languageUtils.toResolveHierarchy(lng);
|
|
23115
23089
|
lngs.forEach(function (l) {
|
|
23116
23090
|
if (toLoad.indexOf(l) < 0) toLoad.push(l);
|
|
23117
23091
|
});
|
|
23118
23092
|
};
|
|
23093
|
+
|
|
23119
23094
|
append(currentLanguage);
|
|
23120
23095
|
if (this.allOptions.preload) this.allOptions.preload.forEach(function (l) {
|
|
23121
23096
|
return append(l);
|
|
@@ -23131,8 +23106,10 @@ var Backend = function () {
|
|
|
23131
23106
|
});
|
|
23132
23107
|
}
|
|
23133
23108
|
}]);
|
|
23109
|
+
|
|
23134
23110
|
return Backend;
|
|
23135
23111
|
}();
|
|
23112
|
+
|
|
23136
23113
|
Backend.type = 'backend';
|
|
23137
23114
|
var _default = Backend;
|
|
23138
23115
|
exports["default"] = _default;
|
|
@@ -23140,9 +23117,9 @@ module.exports = exports.default;
|
|
|
23140
23117
|
|
|
23141
23118
|
/***/ }),
|
|
23142
23119
|
|
|
23143
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
23120
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/request.js":
|
|
23144
23121
|
/*!************************************************************************************************************************!*\
|
|
23145
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
23122
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/request.js ***!
|
|
23146
23123
|
\************************************************************************************************************************/
|
|
23147
23124
|
/***/ ((module, exports, __webpack_require__) => {
|
|
23148
23125
|
|
|
@@ -23153,12 +23130,19 @@ Object.defineProperty(exports, "__esModule", ({
|
|
|
23153
23130
|
value: true
|
|
23154
23131
|
}));
|
|
23155
23132
|
exports["default"] = void 0;
|
|
23156
|
-
|
|
23157
|
-
var
|
|
23133
|
+
|
|
23134
|
+
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");
|
|
23135
|
+
|
|
23136
|
+
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"));
|
|
23137
|
+
|
|
23158
23138
|
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); }
|
|
23139
|
+
|
|
23159
23140
|
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; }
|
|
23141
|
+
|
|
23160
23142
|
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); }
|
|
23143
|
+
|
|
23161
23144
|
var fetchApi;
|
|
23145
|
+
|
|
23162
23146
|
if (typeof fetch === 'function') {
|
|
23163
23147
|
if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.fetch) {
|
|
23164
23148
|
fetchApi = __webpack_require__.g.fetch;
|
|
@@ -23168,7 +23152,9 @@ if (typeof fetch === 'function') {
|
|
|
23168
23152
|
fetchApi = fetch;
|
|
23169
23153
|
}
|
|
23170
23154
|
}
|
|
23155
|
+
|
|
23171
23156
|
var XmlHttpRequestApi;
|
|
23157
|
+
|
|
23172
23158
|
if ((0, _utils.hasXMLHttpRequest)()) {
|
|
23173
23159
|
if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.XMLHttpRequest) {
|
|
23174
23160
|
XmlHttpRequestApi = __webpack_require__.g.XMLHttpRequest;
|
|
@@ -23176,7 +23162,9 @@ if ((0, _utils.hasXMLHttpRequest)()) {
|
|
|
23176
23162
|
XmlHttpRequestApi = window.XMLHttpRequest;
|
|
23177
23163
|
}
|
|
23178
23164
|
}
|
|
23165
|
+
|
|
23179
23166
|
var ActiveXObjectApi;
|
|
23167
|
+
|
|
23180
23168
|
if (typeof ActiveXObject === 'function') {
|
|
23181
23169
|
if (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.ActiveXObject) {
|
|
23182
23170
|
ActiveXObjectApi = __webpack_require__.g.ActiveXObject;
|
|
@@ -23184,19 +23172,25 @@ if (typeof ActiveXObject === 'function') {
|
|
|
23184
23172
|
ActiveXObjectApi = window.ActiveXObject;
|
|
23185
23173
|
}
|
|
23186
23174
|
}
|
|
23175
|
+
|
|
23187
23176
|
if (!fetchApi && fetchNode && !XmlHttpRequestApi && !ActiveXObjectApi) fetchApi = fetchNode.default || fetchNode;
|
|
23188
23177
|
if (typeof fetchApi !== 'function') fetchApi = undefined;
|
|
23178
|
+
|
|
23189
23179
|
var addQueryString = function addQueryString(url, params) {
|
|
23190
23180
|
if (params && _typeof(params) === 'object') {
|
|
23191
23181
|
var queryString = '';
|
|
23182
|
+
|
|
23192
23183
|
for (var paramName in params) {
|
|
23193
23184
|
queryString += '&' + encodeURIComponent(paramName) + '=' + encodeURIComponent(params[paramName]);
|
|
23194
23185
|
}
|
|
23186
|
+
|
|
23195
23187
|
if (!queryString) return url;
|
|
23196
23188
|
url = url + (url.indexOf('?') !== -1 ? '&' : '?') + queryString.slice(1);
|
|
23197
23189
|
}
|
|
23190
|
+
|
|
23198
23191
|
return url;
|
|
23199
23192
|
};
|
|
23193
|
+
|
|
23200
23194
|
var fetchIt = function fetchIt(url, fetchOptions, callback) {
|
|
23201
23195
|
fetchApi(url, fetchOptions).then(function (response) {
|
|
23202
23196
|
if (!response.ok) return callback(response.statusText || 'Error', {
|
|
@@ -23210,12 +23204,14 @@ var fetchIt = function fetchIt(url, fetchOptions, callback) {
|
|
|
23210
23204
|
}).catch(callback);
|
|
23211
23205
|
}).catch(callback);
|
|
23212
23206
|
};
|
|
23207
|
+
|
|
23213
23208
|
var omitFetchOptions = false;
|
|
23214
23209
|
|
|
23215
23210
|
var requestWithFetch = function requestWithFetch(options, url, payload, callback) {
|
|
23216
23211
|
if (options.queryStringParams) {
|
|
23217
23212
|
url = addQueryString(url, options.queryStringParams);
|
|
23218
23213
|
}
|
|
23214
|
+
|
|
23219
23215
|
var headers = (0, _utils.defaults)({}, typeof options.customHeaders === 'function' ? options.customHeaders() : options.customHeaders);
|
|
23220
23216
|
if (payload) headers['Content-Type'] = 'application/json';
|
|
23221
23217
|
var reqOptions = typeof options.requestOptions === 'function' ? options.requestOptions(payload) : options.requestOptions;
|
|
@@ -23224,12 +23220,14 @@ var requestWithFetch = function requestWithFetch(options, url, payload, callback
|
|
|
23224
23220
|
body: payload ? options.stringify(payload) : undefined,
|
|
23225
23221
|
headers: headers
|
|
23226
23222
|
}, omitFetchOptions ? {} : reqOptions);
|
|
23223
|
+
|
|
23227
23224
|
try {
|
|
23228
23225
|
fetchIt(url, fetchOptions, callback);
|
|
23229
23226
|
} catch (e) {
|
|
23230
23227
|
if (!reqOptions || Object.keys(reqOptions).length === 0 || !e.message || e.message.indexOf('not implemented') < 0) {
|
|
23231
23228
|
return callback(e);
|
|
23232
23229
|
}
|
|
23230
|
+
|
|
23233
23231
|
try {
|
|
23234
23232
|
Object.keys(reqOptions).forEach(function (opt) {
|
|
23235
23233
|
delete fetchOptions[opt];
|
|
@@ -23246,68 +23244,86 @@ var requestWithXmlHttpRequest = function requestWithXmlHttpRequest(options, url,
|
|
|
23246
23244
|
if (payload && _typeof(payload) === 'object') {
|
|
23247
23245
|
payload = addQueryString('', payload).slice(1);
|
|
23248
23246
|
}
|
|
23247
|
+
|
|
23249
23248
|
if (options.queryStringParams) {
|
|
23250
23249
|
url = addQueryString(url, options.queryStringParams);
|
|
23251
23250
|
}
|
|
23251
|
+
|
|
23252
23252
|
try {
|
|
23253
23253
|
var x;
|
|
23254
|
+
|
|
23254
23255
|
if (XmlHttpRequestApi) {
|
|
23255
23256
|
x = new XmlHttpRequestApi();
|
|
23256
23257
|
} else {
|
|
23257
23258
|
x = new ActiveXObjectApi('MSXML2.XMLHTTP.3.0');
|
|
23258
23259
|
}
|
|
23260
|
+
|
|
23259
23261
|
x.open(payload ? 'POST' : 'GET', url, 1);
|
|
23262
|
+
|
|
23260
23263
|
if (!options.crossDomain) {
|
|
23261
23264
|
x.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
|
|
23262
23265
|
}
|
|
23266
|
+
|
|
23263
23267
|
x.withCredentials = !!options.withCredentials;
|
|
23268
|
+
|
|
23264
23269
|
if (payload) {
|
|
23265
23270
|
x.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
|
23266
23271
|
}
|
|
23272
|
+
|
|
23267
23273
|
if (x.overrideMimeType) {
|
|
23268
23274
|
x.overrideMimeType('application/json');
|
|
23269
23275
|
}
|
|
23276
|
+
|
|
23270
23277
|
var h = options.customHeaders;
|
|
23271
23278
|
h = typeof h === 'function' ? h() : h;
|
|
23279
|
+
|
|
23272
23280
|
if (h) {
|
|
23273
23281
|
for (var i in h) {
|
|
23274
23282
|
x.setRequestHeader(i, h[i]);
|
|
23275
23283
|
}
|
|
23276
23284
|
}
|
|
23285
|
+
|
|
23277
23286
|
x.onreadystatechange = function () {
|
|
23278
23287
|
x.readyState > 3 && callback(x.status >= 400 ? x.statusText : null, {
|
|
23279
23288
|
status: x.status,
|
|
23280
23289
|
data: x.responseText
|
|
23281
23290
|
});
|
|
23282
23291
|
};
|
|
23292
|
+
|
|
23283
23293
|
x.send(payload);
|
|
23284
23294
|
} catch (e) {
|
|
23285
23295
|
console && console.log(e);
|
|
23286
23296
|
}
|
|
23287
23297
|
};
|
|
23298
|
+
|
|
23288
23299
|
var request = function request(options, url, payload, callback) {
|
|
23289
23300
|
if (typeof payload === 'function') {
|
|
23290
23301
|
callback = payload;
|
|
23291
23302
|
payload = undefined;
|
|
23292
23303
|
}
|
|
23304
|
+
|
|
23293
23305
|
callback = callback || function () {};
|
|
23306
|
+
|
|
23294
23307
|
if (fetchApi) {
|
|
23295
23308
|
return requestWithFetch(options, url, payload, callback);
|
|
23296
23309
|
}
|
|
23310
|
+
|
|
23297
23311
|
if ((0, _utils.hasXMLHttpRequest)() || typeof ActiveXObject === 'function') {
|
|
23298
23312
|
return requestWithXmlHttpRequest(options, url, payload, callback);
|
|
23299
23313
|
}
|
|
23314
|
+
|
|
23300
23315
|
callback(new Error('No fetch and no xhr implementation found!'));
|
|
23301
23316
|
};
|
|
23317
|
+
|
|
23302
23318
|
var _default = request;
|
|
23303
23319
|
exports["default"] = _default;
|
|
23304
23320
|
module.exports = exports.default;
|
|
23305
23321
|
|
|
23306
23322
|
/***/ }),
|
|
23307
23323
|
|
|
23308
|
-
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
23324
|
+
/***/ "../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js":
|
|
23309
23325
|
/*!**********************************************************************************************************************!*\
|
|
23310
|
-
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.
|
|
23326
|
+
!*** ../../common/temp/node_modules/.pnpm/i18next-http-backend@1.4.4/node_modules/i18next-http-backend/cjs/utils.js ***!
|
|
23311
23327
|
\**********************************************************************************************************************/
|
|
23312
23328
|
/***/ ((__unused_webpack_module, exports) => {
|
|
23313
23329
|
|
|
@@ -23320,10 +23336,13 @@ Object.defineProperty(exports, "__esModule", ({
|
|
|
23320
23336
|
exports.defaults = defaults;
|
|
23321
23337
|
exports.hasXMLHttpRequest = hasXMLHttpRequest;
|
|
23322
23338
|
exports.makePromise = makePromise;
|
|
23339
|
+
|
|
23323
23340
|
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); }
|
|
23341
|
+
|
|
23324
23342
|
var arr = [];
|
|
23325
23343
|
var each = arr.forEach;
|
|
23326
23344
|
var slice = arr.slice;
|
|
23345
|
+
|
|
23327
23346
|
function defaults(obj) {
|
|
23328
23347
|
each.call(slice.call(arguments, 1), function (source) {
|
|
23329
23348
|
if (source) {
|
|
@@ -23334,6 +23353,7 @@ function defaults(obj) {
|
|
|
23334
23353
|
});
|
|
23335
23354
|
return obj;
|
|
23336
23355
|
}
|
|
23356
|
+
|
|
23337
23357
|
function hasXMLHttpRequest() {
|
|
23338
23358
|
return typeof XMLHttpRequest === 'function' || (typeof XMLHttpRequest === "undefined" ? "undefined" : _typeof(XMLHttpRequest)) === 'object';
|
|
23339
23359
|
}
|
|
@@ -23346,9 +23366,133 @@ function makePromise(maybePromise) {
|
|
|
23346
23366
|
if (isPromise(maybePromise)) {
|
|
23347
23367
|
return maybePromise;
|
|
23348
23368
|
}
|
|
23369
|
+
|
|
23349
23370
|
return Promise.resolve(maybePromise);
|
|
23350
23371
|
}
|
|
23351
23372
|
|
|
23373
|
+
/***/ }),
|
|
23374
|
+
|
|
23375
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
23376
|
+
/*!****************************************************************************************************************************!*\
|
|
23377
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
23378
|
+
\****************************************************************************************************************************/
|
|
23379
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23380
|
+
|
|
23381
|
+
"use strict";
|
|
23382
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23383
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23384
|
+
/* harmony export */ "default": () => (/* binding */ _classCallCheck)
|
|
23385
|
+
/* harmony export */ });
|
|
23386
|
+
function _classCallCheck(instance, Constructor) {
|
|
23387
|
+
if (!(instance instanceof Constructor)) {
|
|
23388
|
+
throw new TypeError("Cannot call a class as a function");
|
|
23389
|
+
}
|
|
23390
|
+
}
|
|
23391
|
+
|
|
23392
|
+
/***/ }),
|
|
23393
|
+
|
|
23394
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
23395
|
+
/*!*************************************************************************************************************************!*\
|
|
23396
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
23397
|
+
\*************************************************************************************************************************/
|
|
23398
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23399
|
+
|
|
23400
|
+
"use strict";
|
|
23401
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23402
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23403
|
+
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
23404
|
+
/* harmony export */ });
|
|
23405
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
23406
|
+
|
|
23407
|
+
function _defineProperties(target, props) {
|
|
23408
|
+
for (var i = 0; i < props.length; i++) {
|
|
23409
|
+
var descriptor = props[i];
|
|
23410
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
23411
|
+
descriptor.configurable = true;
|
|
23412
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
23413
|
+
Object.defineProperty(target, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(descriptor.key), descriptor);
|
|
23414
|
+
}
|
|
23415
|
+
}
|
|
23416
|
+
function _createClass(Constructor, protoProps, staticProps) {
|
|
23417
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
23418
|
+
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
23419
|
+
Object.defineProperty(Constructor, "prototype", {
|
|
23420
|
+
writable: false
|
|
23421
|
+
});
|
|
23422
|
+
return Constructor;
|
|
23423
|
+
}
|
|
23424
|
+
|
|
23425
|
+
/***/ }),
|
|
23426
|
+
|
|
23427
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
23428
|
+
/*!*************************************************************************************************************************!*\
|
|
23429
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
23430
|
+
\*************************************************************************************************************************/
|
|
23431
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23432
|
+
|
|
23433
|
+
"use strict";
|
|
23434
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23435
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23436
|
+
/* harmony export */ "default": () => (/* binding */ _toPrimitive)
|
|
23437
|
+
/* harmony export */ });
|
|
23438
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
23439
|
+
|
|
23440
|
+
function _toPrimitive(input, hint) {
|
|
23441
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input;
|
|
23442
|
+
var prim = input[Symbol.toPrimitive];
|
|
23443
|
+
if (prim !== undefined) {
|
|
23444
|
+
var res = prim.call(input, hint || "default");
|
|
23445
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(res) !== "object") return res;
|
|
23446
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
23447
|
+
}
|
|
23448
|
+
return (hint === "string" ? String : Number)(input);
|
|
23449
|
+
}
|
|
23450
|
+
|
|
23451
|
+
/***/ }),
|
|
23452
|
+
|
|
23453
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
23454
|
+
/*!***************************************************************************************************************************!*\
|
|
23455
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
23456
|
+
\***************************************************************************************************************************/
|
|
23457
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23458
|
+
|
|
23459
|
+
"use strict";
|
|
23460
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23461
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23462
|
+
/* harmony export */ "default": () => (/* binding */ _toPropertyKey)
|
|
23463
|
+
/* harmony export */ });
|
|
23464
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
23465
|
+
/* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
|
|
23466
|
+
|
|
23467
|
+
|
|
23468
|
+
function _toPropertyKey(arg) {
|
|
23469
|
+
var key = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(arg, "string");
|
|
23470
|
+
return (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key) === "symbol" ? key : String(key);
|
|
23471
|
+
}
|
|
23472
|
+
|
|
23473
|
+
/***/ }),
|
|
23474
|
+
|
|
23475
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
23476
|
+
/*!********************************************************************************************************************!*\
|
|
23477
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.23.4/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
23478
|
+
\********************************************************************************************************************/
|
|
23479
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
23480
|
+
|
|
23481
|
+
"use strict";
|
|
23482
|
+
__webpack_require__.r(__webpack_exports__);
|
|
23483
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23484
|
+
/* harmony export */ "default": () => (/* binding */ _typeof)
|
|
23485
|
+
/* harmony export */ });
|
|
23486
|
+
function _typeof(o) {
|
|
23487
|
+
"@babel/helpers - typeof";
|
|
23488
|
+
|
|
23489
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
23490
|
+
return typeof o;
|
|
23491
|
+
} : function (o) {
|
|
23492
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
23493
|
+
}, _typeof(o);
|
|
23494
|
+
}
|
|
23495
|
+
|
|
23352
23496
|
/***/ })
|
|
23353
23497
|
|
|
23354
23498
|
/******/ });
|