@itwin/rpcinterface-full-stack-tests 3.5.0-dev.61 → 3.5.0-dev.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/{_554f.bundled-tests.js → _cb67.bundled-tests.js} +3 -3
- package/lib/dist/_cb67.bundled-tests.js.map +1 -0
- package/lib/dist/bundled-tests.js +1436 -853
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/object-storage.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_4_0_node_modules_itwin_obj-3576c6.bundled-tests.js +84 -69
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_4_0_node_modules_itwin_obj-3576c6.bundled-tests.js.map +1 -1
- package/lib/dist/{vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_10_node_modules_loaders_gl_draco_d-13469a.bundled-tests.js → vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_12_node_modules_loaders_gl_draco_d-b19815.bundled-tests.js} +72 -72
- package/lib/dist/{vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_10_node_modules_loaders_gl_draco_d-13469a.bundled-tests.js.map → vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_12_node_modules_loaders_gl_draco_d-b19815.bundled-tests.js.map} +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3.bundled-tests.js.map +1 -1
- package/package.json +14 -14
- package/lib/dist/_554f.bundled-tests.js.map +0 -1
|
@@ -21,46 +21,46 @@
|
|
|
21
21
|
|
|
22
22
|
/***/ }),
|
|
23
23
|
|
|
24
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.
|
|
24
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.6/node_modules/@itwin/certa/lib/utils/CallbackUtils.js":
|
|
25
25
|
/*!********************************************************************************************************************!*\
|
|
26
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.
|
|
26
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.6/node_modules/@itwin/certa/lib/utils/CallbackUtils.js ***!
|
|
27
27
|
\********************************************************************************************************************/
|
|
28
28
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
29
29
|
|
|
30
30
|
"use strict";
|
|
31
|
-
|
|
32
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33
|
-
exports.executeBackendCallback = exports.registerBackendCallback = exports.executeRegisteredCallback = exports.getCallbacksRegisteredOnBackend = void 0;
|
|
34
|
-
const isFrontend = (typeof (window) !== "undefined");
|
|
35
|
-
/** @internal */
|
|
36
|
-
function getCallbacksRegisteredOnBackend() {
|
|
37
|
-
if (isFrontend)
|
|
38
|
-
throw new Error("This should only be called on the backend!");
|
|
39
|
-
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
40
|
-
return __webpack_require__.g._CertaRegisteredCallbacks;
|
|
41
|
-
}
|
|
42
|
-
exports.getCallbacksRegisteredOnBackend = getCallbacksRegisteredOnBackend;
|
|
43
|
-
/** @internal */
|
|
44
|
-
function executeRegisteredCallback(name, args) {
|
|
45
|
-
const registeredCallbacks = getCallbacksRegisteredOnBackend();
|
|
46
|
-
if (!(name in registeredCallbacks))
|
|
47
|
-
throw new Error(`Unknown certa backend callback "${name}"`);
|
|
48
|
-
return registeredCallbacks[name](...args);
|
|
49
|
-
}
|
|
50
|
-
exports.executeRegisteredCallback = executeRegisteredCallback;
|
|
51
|
-
function registerBackendCallback(name, cb) {
|
|
52
|
-
if (isFrontend)
|
|
53
|
-
throw new Error("This should only be called on the backend!");
|
|
54
|
-
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
55
|
-
__webpack_require__.g._CertaRegisteredCallbacks[name] = cb;
|
|
56
|
-
}
|
|
57
|
-
exports.registerBackendCallback = registerBackendCallback;
|
|
58
|
-
async function executeBackendCallback(name, ...args) {
|
|
59
|
-
if (!isFrontend)
|
|
60
|
-
return executeRegisteredCallback(name, args);
|
|
61
|
-
return window._CertaSendToBackend(name, args);
|
|
62
|
-
}
|
|
63
|
-
exports.executeBackendCallback = executeBackendCallback;
|
|
31
|
+
|
|
32
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33
|
+
exports.executeBackendCallback = exports.registerBackendCallback = exports.executeRegisteredCallback = exports.getCallbacksRegisteredOnBackend = void 0;
|
|
34
|
+
const isFrontend = (typeof (window) !== "undefined");
|
|
35
|
+
/** @internal */
|
|
36
|
+
function getCallbacksRegisteredOnBackend() {
|
|
37
|
+
if (isFrontend)
|
|
38
|
+
throw new Error("This should only be called on the backend!");
|
|
39
|
+
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
40
|
+
return __webpack_require__.g._CertaRegisteredCallbacks;
|
|
41
|
+
}
|
|
42
|
+
exports.getCallbacksRegisteredOnBackend = getCallbacksRegisteredOnBackend;
|
|
43
|
+
/** @internal */
|
|
44
|
+
function executeRegisteredCallback(name, args) {
|
|
45
|
+
const registeredCallbacks = getCallbacksRegisteredOnBackend();
|
|
46
|
+
if (!(name in registeredCallbacks))
|
|
47
|
+
throw new Error(`Unknown certa backend callback "${name}"`);
|
|
48
|
+
return registeredCallbacks[name](...args);
|
|
49
|
+
}
|
|
50
|
+
exports.executeRegisteredCallback = executeRegisteredCallback;
|
|
51
|
+
function registerBackendCallback(name, cb) {
|
|
52
|
+
if (isFrontend)
|
|
53
|
+
throw new Error("This should only be called on the backend!");
|
|
54
|
+
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
55
|
+
__webpack_require__.g._CertaRegisteredCallbacks[name] = cb;
|
|
56
|
+
}
|
|
57
|
+
exports.registerBackendCallback = registerBackendCallback;
|
|
58
|
+
async function executeBackendCallback(name, ...args) {
|
|
59
|
+
if (!isFrontend)
|
|
60
|
+
return executeRegisteredCallback(name, args);
|
|
61
|
+
return window._CertaSendToBackend(name, args);
|
|
62
|
+
}
|
|
63
|
+
exports.executeBackendCallback = executeBackendCallback;
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
/***/ }),
|
|
@@ -2772,7 +2772,7 @@ exports.getAccessTokenFromBackend = exports.getTokenCallbackName = void 0;
|
|
|
2772
2772
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2773
2773
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
2774
2774
|
*--------------------------------------------------------------------------------------------*/
|
|
2775
|
-
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.
|
|
2775
|
+
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.4.6/node_modules/@itwin/certa/lib/utils/CallbackUtils.js");
|
|
2776
2776
|
// Shared by both the frontend and backend side of the tests
|
|
2777
2777
|
exports.getTokenCallbackName = "getToken";
|
|
2778
2778
|
async function getAccessTokenFromBackend(user, oidcConfig) {
|
|
@@ -9709,9 +9709,9 @@ if ($defineProperty) {
|
|
|
9709
9709
|
|
|
9710
9710
|
/***/ }),
|
|
9711
9711
|
|
|
9712
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.
|
|
9712
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.7/node_modules/chai-as-promised/lib/chai-as-promised.js":
|
|
9713
9713
|
/*!************************************************************************************************************************************!*\
|
|
9714
|
-
!*** ../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.
|
|
9714
|
+
!*** ../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.7/node_modules/chai-as-promised/lib/chai-as-promised.js ***!
|
|
9715
9715
|
\************************************************************************************************************************************/
|
|
9716
9716
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
9717
9717
|
|
|
@@ -10081,20 +10081,20 @@ module.exports.transformAsserterArgs = values => values;
|
|
|
10081
10081
|
|
|
10082
10082
|
/***/ }),
|
|
10083
10083
|
|
|
10084
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10084
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js":
|
|
10085
10085
|
/*!**********************************************************************************!*\
|
|
10086
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10086
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js ***!
|
|
10087
10087
|
\**********************************************************************************/
|
|
10088
10088
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
10089
10089
|
|
|
10090
|
-
module.exports = __webpack_require__(/*! ./lib/chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10090
|
+
module.exports = __webpack_require__(/*! ./lib/chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
10091
10091
|
|
|
10092
10092
|
|
|
10093
10093
|
/***/ }),
|
|
10094
10094
|
|
|
10095
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10095
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js":
|
|
10096
10096
|
/*!*************************************************************************************!*\
|
|
10097
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10097
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js ***!
|
|
10098
10098
|
\*************************************************************************************/
|
|
10099
10099
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
10100
10100
|
|
|
@@ -10122,7 +10122,7 @@ exports.AssertionError = __webpack_require__(/*! assertion-error */ "../../commo
|
|
|
10122
10122
|
* Utils for plugins (not exported)
|
|
10123
10123
|
*/
|
|
10124
10124
|
|
|
10125
|
-
var util = __webpack_require__(/*! ./chai/utils */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10125
|
+
var util = __webpack_require__(/*! ./chai/utils */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js");
|
|
10126
10126
|
|
|
10127
10127
|
/**
|
|
10128
10128
|
* # .use(function)
|
|
@@ -10153,50 +10153,50 @@ exports.util = util;
|
|
|
10153
10153
|
* Configuration
|
|
10154
10154
|
*/
|
|
10155
10155
|
|
|
10156
|
-
var config = __webpack_require__(/*! ./chai/config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10156
|
+
var config = __webpack_require__(/*! ./chai/config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
10157
10157
|
exports.config = config;
|
|
10158
10158
|
|
|
10159
10159
|
/*!
|
|
10160
10160
|
* Primary `Assertion` prototype
|
|
10161
10161
|
*/
|
|
10162
10162
|
|
|
10163
|
-
var assertion = __webpack_require__(/*! ./chai/assertion */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10163
|
+
var assertion = __webpack_require__(/*! ./chai/assertion */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js");
|
|
10164
10164
|
exports.use(assertion);
|
|
10165
10165
|
|
|
10166
10166
|
/*!
|
|
10167
10167
|
* Core Assertions
|
|
10168
10168
|
*/
|
|
10169
10169
|
|
|
10170
|
-
var core = __webpack_require__(/*! ./chai/core/assertions */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10170
|
+
var core = __webpack_require__(/*! ./chai/core/assertions */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js");
|
|
10171
10171
|
exports.use(core);
|
|
10172
10172
|
|
|
10173
10173
|
/*!
|
|
10174
10174
|
* Expect interface
|
|
10175
10175
|
*/
|
|
10176
10176
|
|
|
10177
|
-
var expect = __webpack_require__(/*! ./chai/interface/expect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10177
|
+
var expect = __webpack_require__(/*! ./chai/interface/expect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js");
|
|
10178
10178
|
exports.use(expect);
|
|
10179
10179
|
|
|
10180
10180
|
/*!
|
|
10181
10181
|
* Should interface
|
|
10182
10182
|
*/
|
|
10183
10183
|
|
|
10184
|
-
var should = __webpack_require__(/*! ./chai/interface/should */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10184
|
+
var should = __webpack_require__(/*! ./chai/interface/should */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js");
|
|
10185
10185
|
exports.use(should);
|
|
10186
10186
|
|
|
10187
10187
|
/*!
|
|
10188
10188
|
* Assert interface
|
|
10189
10189
|
*/
|
|
10190
10190
|
|
|
10191
|
-
var assert = __webpack_require__(/*! ./chai/interface/assert */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10191
|
+
var assert = __webpack_require__(/*! ./chai/interface/assert */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js");
|
|
10192
10192
|
exports.use(assert);
|
|
10193
10193
|
|
|
10194
10194
|
|
|
10195
10195
|
/***/ }),
|
|
10196
10196
|
|
|
10197
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10197
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js":
|
|
10198
10198
|
/*!***********************************************************************************************!*\
|
|
10199
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10199
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js ***!
|
|
10200
10200
|
\***********************************************************************************************/
|
|
10201
10201
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
10202
10202
|
|
|
@@ -10207,7 +10207,7 @@ exports.use(assert);
|
|
|
10207
10207
|
* MIT Licensed
|
|
10208
10208
|
*/
|
|
10209
10209
|
|
|
10210
|
-
var config = __webpack_require__(/*! ./config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10210
|
+
var config = __webpack_require__(/*! ./config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
10211
10211
|
|
|
10212
10212
|
module.exports = function (_chai, util) {
|
|
10213
10213
|
/*!
|
|
@@ -10379,9 +10379,9 @@ module.exports = function (_chai, util) {
|
|
|
10379
10379
|
|
|
10380
10380
|
/***/ }),
|
|
10381
10381
|
|
|
10382
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10382
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js":
|
|
10383
10383
|
/*!********************************************************************************************!*\
|
|
10384
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10384
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js ***!
|
|
10385
10385
|
\********************************************************************************************/
|
|
10386
10386
|
/***/ ((module) => {
|
|
10387
10387
|
|
|
@@ -10483,9 +10483,9 @@ module.exports = {
|
|
|
10483
10483
|
|
|
10484
10484
|
/***/ }),
|
|
10485
10485
|
|
|
10486
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10486
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js":
|
|
10487
10487
|
/*!*****************************************************************************************************!*\
|
|
10488
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10488
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js ***!
|
|
10489
10489
|
\*****************************************************************************************************/
|
|
10490
10490
|
/***/ ((module) => {
|
|
10491
10491
|
|
|
@@ -14346,9 +14346,9 @@ module.exports = function (chai, _) {
|
|
|
14346
14346
|
|
|
14347
14347
|
/***/ }),
|
|
14348
14348
|
|
|
14349
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
14349
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js":
|
|
14350
14350
|
/*!******************************************************************************************************!*\
|
|
14351
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
14351
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js ***!
|
|
14352
14352
|
\******************************************************************************************************/
|
|
14353
14353
|
/***/ ((module) => {
|
|
14354
14354
|
|
|
@@ -17469,9 +17469,9 @@ module.exports = function (chai, util) {
|
|
|
17469
17469
|
|
|
17470
17470
|
/***/ }),
|
|
17471
17471
|
|
|
17472
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17472
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js":
|
|
17473
17473
|
/*!******************************************************************************************************!*\
|
|
17474
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17474
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js ***!
|
|
17475
17475
|
\******************************************************************************************************/
|
|
17476
17476
|
/***/ ((module) => {
|
|
17477
17477
|
|
|
@@ -17526,9 +17526,9 @@ module.exports = function (chai, util) {
|
|
|
17526
17526
|
|
|
17527
17527
|
/***/ }),
|
|
17528
17528
|
|
|
17529
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17529
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js":
|
|
17530
17530
|
/*!******************************************************************************************************!*\
|
|
17531
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17531
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js ***!
|
|
17532
17532
|
\******************************************************************************************************/
|
|
17533
17533
|
/***/ ((module) => {
|
|
17534
17534
|
|
|
@@ -17755,9 +17755,9 @@ module.exports = function (chai, util) {
|
|
|
17755
17755
|
|
|
17756
17756
|
/***/ }),
|
|
17757
17757
|
|
|
17758
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17758
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js":
|
|
17759
17759
|
/*!**************************************************************************************************************!*\
|
|
17760
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17760
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js ***!
|
|
17761
17761
|
\**************************************************************************************************************/
|
|
17762
17762
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17763
17763
|
|
|
@@ -17771,11 +17771,11 @@ module.exports = function (chai, util) {
|
|
|
17771
17771
|
* Module dependencies
|
|
17772
17772
|
*/
|
|
17773
17773
|
|
|
17774
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17775
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17776
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17777
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17778
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17774
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
17775
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
17776
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17777
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
17778
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
17779
17779
|
|
|
17780
17780
|
/*!
|
|
17781
17781
|
* Module variables
|
|
@@ -17917,9 +17917,9 @@ module.exports = function addChainableMethod(ctx, name, method, chainingBehavior
|
|
|
17917
17917
|
|
|
17918
17918
|
/***/ }),
|
|
17919
17919
|
|
|
17920
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17920
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js":
|
|
17921
17921
|
/*!**********************************************************************************************************!*\
|
|
17922
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17922
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js ***!
|
|
17923
17923
|
\**********************************************************************************************************/
|
|
17924
17924
|
/***/ ((module) => {
|
|
17925
17925
|
|
|
@@ -17987,9 +17987,9 @@ module.exports = function addLengthGuard (fn, assertionName, isChainable) {
|
|
|
17987
17987
|
|
|
17988
17988
|
/***/ }),
|
|
17989
17989
|
|
|
17990
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17990
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js":
|
|
17991
17991
|
/*!*****************************************************************************************************!*\
|
|
17992
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17992
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js ***!
|
|
17993
17993
|
\*****************************************************************************************************/
|
|
17994
17994
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17995
17995
|
|
|
@@ -17999,11 +17999,11 @@ module.exports = function addLengthGuard (fn, assertionName, isChainable) {
|
|
|
17999
17999
|
* MIT Licensed
|
|
18000
18000
|
*/
|
|
18001
18001
|
|
|
18002
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18003
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18004
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18005
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18006
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18002
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
18003
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18004
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18005
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
18006
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18007
18007
|
|
|
18008
18008
|
/**
|
|
18009
18009
|
* ### .addMethod(ctx, name, method)
|
|
@@ -18065,9 +18065,9 @@ module.exports = function addMethod(ctx, name, method) {
|
|
|
18065
18065
|
|
|
18066
18066
|
/***/ }),
|
|
18067
18067
|
|
|
18068
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18068
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js":
|
|
18069
18069
|
/*!*******************************************************************************************************!*\
|
|
18070
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18070
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js ***!
|
|
18071
18071
|
\*******************************************************************************************************/
|
|
18072
18072
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18073
18073
|
|
|
@@ -18077,10 +18077,10 @@ module.exports = function addMethod(ctx, name, method) {
|
|
|
18077
18077
|
* MIT Licensed
|
|
18078
18078
|
*/
|
|
18079
18079
|
|
|
18080
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18081
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18082
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18083
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18080
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18081
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18082
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18083
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18084
18084
|
|
|
18085
18085
|
/**
|
|
18086
18086
|
* ### .addProperty(ctx, name, getter)
|
|
@@ -18147,9 +18147,9 @@ module.exports = function addProperty(ctx, name, getter) {
|
|
|
18147
18147
|
|
|
18148
18148
|
/***/ }),
|
|
18149
18149
|
|
|
18150
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18150
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js":
|
|
18151
18151
|
/*!************************************************************************************************************!*\
|
|
18152
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18152
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js ***!
|
|
18153
18153
|
\************************************************************************************************************/
|
|
18154
18154
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18155
18155
|
|
|
@@ -18163,7 +18163,7 @@ module.exports = function addProperty(ctx, name, getter) {
|
|
|
18163
18163
|
* Module dependencies
|
|
18164
18164
|
*/
|
|
18165
18165
|
|
|
18166
|
-
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18166
|
+
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18167
18167
|
|
|
18168
18168
|
/**
|
|
18169
18169
|
* ### .compareByInspect(mixed, mixed)
|
|
@@ -18188,9 +18188,9 @@ module.exports = function compareByInspect(a, b) {
|
|
|
18188
18188
|
|
|
18189
18189
|
/***/ }),
|
|
18190
18190
|
|
|
18191
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18191
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js":
|
|
18192
18192
|
/*!*******************************************************************************************************!*\
|
|
18193
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18193
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js ***!
|
|
18194
18194
|
\*******************************************************************************************************/
|
|
18195
18195
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18196
18196
|
|
|
@@ -18215,7 +18215,7 @@ module.exports = function compareByInspect(a, b) {
|
|
|
18215
18215
|
*/
|
|
18216
18216
|
|
|
18217
18217
|
var AssertionError = __webpack_require__(/*! assertion-error */ "../../common/temp/node_modules/.pnpm/assertion-error@1.1.0/node_modules/assertion-error/index.js");
|
|
18218
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18218
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18219
18219
|
var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
|
|
18220
18220
|
|
|
18221
18221
|
module.exports = function expectTypes(obj, types) {
|
|
@@ -18249,9 +18249,9 @@ module.exports = function expectTypes(obj, types) {
|
|
|
18249
18249
|
|
|
18250
18250
|
/***/ }),
|
|
18251
18251
|
|
|
18252
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18252
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js":
|
|
18253
18253
|
/*!************************************************************************************************!*\
|
|
18254
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18254
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js ***!
|
|
18255
18255
|
\************************************************************************************************/
|
|
18256
18256
|
/***/ ((module) => {
|
|
18257
18257
|
|
|
@@ -18292,9 +18292,9 @@ module.exports = function flag(obj, key, value) {
|
|
|
18292
18292
|
|
|
18293
18293
|
/***/ }),
|
|
18294
18294
|
|
|
18295
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18295
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js":
|
|
18296
18296
|
/*!*****************************************************************************************************!*\
|
|
18297
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18297
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js ***!
|
|
18298
18298
|
\*****************************************************************************************************/
|
|
18299
18299
|
/***/ ((module) => {
|
|
18300
18300
|
|
|
@@ -18322,9 +18322,9 @@ module.exports = function getActual(obj, args) {
|
|
|
18322
18322
|
|
|
18323
18323
|
/***/ }),
|
|
18324
18324
|
|
|
18325
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18325
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js":
|
|
18326
18326
|
/*!******************************************************************************************************!*\
|
|
18327
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18327
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js ***!
|
|
18328
18328
|
\******************************************************************************************************/
|
|
18329
18329
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18330
18330
|
|
|
@@ -18338,9 +18338,9 @@ module.exports = function getActual(obj, args) {
|
|
|
18338
18338
|
* Module dependencies
|
|
18339
18339
|
*/
|
|
18340
18340
|
|
|
18341
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18342
|
-
, getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18343
|
-
, objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18341
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js")
|
|
18342
|
+
, getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js")
|
|
18343
|
+
, objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js");
|
|
18344
18344
|
|
|
18345
18345
|
/**
|
|
18346
18346
|
* ### .getMessage(object, message, negateMessage)
|
|
@@ -18382,15 +18382,15 @@ module.exports = function getMessage(obj, args) {
|
|
|
18382
18382
|
|
|
18383
18383
|
/***/ }),
|
|
18384
18384
|
|
|
18385
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18385
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js":
|
|
18386
18386
|
/*!*******************************************************************************************************!*\
|
|
18387
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18387
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js ***!
|
|
18388
18388
|
\*******************************************************************************************************/
|
|
18389
18389
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18390
18390
|
|
|
18391
18391
|
var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
|
|
18392
18392
|
|
|
18393
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18393
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18394
18394
|
|
|
18395
18395
|
function isObjectType(obj) {
|
|
18396
18396
|
var objectType = type(obj);
|
|
@@ -18447,9 +18447,9 @@ module.exports = function getOperator(obj, args) {
|
|
|
18447
18447
|
|
|
18448
18448
|
/***/ }),
|
|
18449
18449
|
|
|
18450
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18450
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js":
|
|
18451
18451
|
/*!**********************************************************************************************************************!*\
|
|
18452
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18452
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js ***!
|
|
18453
18453
|
\**********************************************************************************************************************/
|
|
18454
18454
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18455
18455
|
|
|
@@ -18463,7 +18463,7 @@ module.exports = function getOperator(obj, args) {
|
|
|
18463
18463
|
* Module dependencies
|
|
18464
18464
|
*/
|
|
18465
18465
|
|
|
18466
|
-
var getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18466
|
+
var getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js");
|
|
18467
18467
|
|
|
18468
18468
|
/**
|
|
18469
18469
|
* ### .getOwnEnumerableProperties(object)
|
|
@@ -18486,9 +18486,9 @@ module.exports = function getOwnEnumerableProperties(obj) {
|
|
|
18486
18486
|
|
|
18487
18487
|
/***/ }),
|
|
18488
18488
|
|
|
18489
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18489
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js":
|
|
18490
18490
|
/*!***************************************************************************************************************************!*\
|
|
18491
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18491
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js ***!
|
|
18492
18492
|
\***************************************************************************************************************************/
|
|
18493
18493
|
/***/ ((module) => {
|
|
18494
18494
|
|
|
@@ -18523,9 +18523,9 @@ module.exports = function getOwnEnumerablePropertySymbols(obj) {
|
|
|
18523
18523
|
|
|
18524
18524
|
/***/ }),
|
|
18525
18525
|
|
|
18526
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18526
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js":
|
|
18527
18527
|
/*!*********************************************************************************************************!*\
|
|
18528
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18528
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js ***!
|
|
18529
18529
|
\*********************************************************************************************************/
|
|
18530
18530
|
/***/ ((module) => {
|
|
18531
18531
|
|
|
@@ -18569,9 +18569,9 @@ module.exports = function getProperties(object) {
|
|
|
18569
18569
|
|
|
18570
18570
|
/***/ }),
|
|
18571
18571
|
|
|
18572
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18572
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js":
|
|
18573
18573
|
/*!*************************************************************************************************!*\
|
|
18574
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18574
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js ***!
|
|
18575
18575
|
\*************************************************************************************************/
|
|
18576
18576
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
18577
18577
|
|
|
@@ -18591,7 +18591,7 @@ var pathval = __webpack_require__(/*! pathval */ "../../common/temp/node_modules
|
|
|
18591
18591
|
* test utility
|
|
18592
18592
|
*/
|
|
18593
18593
|
|
|
18594
|
-
exports.test = __webpack_require__(/*! ./test */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18594
|
+
exports.test = __webpack_require__(/*! ./test */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js");
|
|
18595
18595
|
|
|
18596
18596
|
/*!
|
|
18597
18597
|
* type utility
|
|
@@ -18602,49 +18602,49 @@ exports.type = __webpack_require__(/*! type-detect */ "../../common/temp/node_mo
|
|
|
18602
18602
|
/*!
|
|
18603
18603
|
* expectTypes utility
|
|
18604
18604
|
*/
|
|
18605
|
-
exports.expectTypes = __webpack_require__(/*! ./expectTypes */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18605
|
+
exports.expectTypes = __webpack_require__(/*! ./expectTypes */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js");
|
|
18606
18606
|
|
|
18607
18607
|
/*!
|
|
18608
18608
|
* message utility
|
|
18609
18609
|
*/
|
|
18610
18610
|
|
|
18611
|
-
exports.getMessage = __webpack_require__(/*! ./getMessage */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18611
|
+
exports.getMessage = __webpack_require__(/*! ./getMessage */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js");
|
|
18612
18612
|
|
|
18613
18613
|
/*!
|
|
18614
18614
|
* actual utility
|
|
18615
18615
|
*/
|
|
18616
18616
|
|
|
18617
|
-
exports.getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18617
|
+
exports.getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js");
|
|
18618
18618
|
|
|
18619
18619
|
/*!
|
|
18620
18620
|
* Inspect util
|
|
18621
18621
|
*/
|
|
18622
18622
|
|
|
18623
|
-
exports.inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18623
|
+
exports.inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18624
18624
|
|
|
18625
18625
|
/*!
|
|
18626
18626
|
* Object Display util
|
|
18627
18627
|
*/
|
|
18628
18628
|
|
|
18629
|
-
exports.objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18629
|
+
exports.objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js");
|
|
18630
18630
|
|
|
18631
18631
|
/*!
|
|
18632
18632
|
* Flag utility
|
|
18633
18633
|
*/
|
|
18634
18634
|
|
|
18635
|
-
exports.flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18635
|
+
exports.flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18636
18636
|
|
|
18637
18637
|
/*!
|
|
18638
18638
|
* Flag transferring utility
|
|
18639
18639
|
*/
|
|
18640
18640
|
|
|
18641
|
-
exports.transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18641
|
+
exports.transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18642
18642
|
|
|
18643
18643
|
/*!
|
|
18644
18644
|
* Deep equal utility
|
|
18645
18645
|
*/
|
|
18646
18646
|
|
|
18647
|
-
exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@
|
|
18647
|
+
exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js");
|
|
18648
18648
|
|
|
18649
18649
|
/*!
|
|
18650
18650
|
* Deep path info
|
|
@@ -18668,55 +18668,55 @@ exports.getName = __webpack_require__(/*! get-func-name */ "../../common/temp/no
|
|
|
18668
18668
|
* add Property
|
|
18669
18669
|
*/
|
|
18670
18670
|
|
|
18671
|
-
exports.addProperty = __webpack_require__(/*! ./addProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18671
|
+
exports.addProperty = __webpack_require__(/*! ./addProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js");
|
|
18672
18672
|
|
|
18673
18673
|
/*!
|
|
18674
18674
|
* add Method
|
|
18675
18675
|
*/
|
|
18676
18676
|
|
|
18677
|
-
exports.addMethod = __webpack_require__(/*! ./addMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18677
|
+
exports.addMethod = __webpack_require__(/*! ./addMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js");
|
|
18678
18678
|
|
|
18679
18679
|
/*!
|
|
18680
18680
|
* overwrite Property
|
|
18681
18681
|
*/
|
|
18682
18682
|
|
|
18683
|
-
exports.overwriteProperty = __webpack_require__(/*! ./overwriteProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18683
|
+
exports.overwriteProperty = __webpack_require__(/*! ./overwriteProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js");
|
|
18684
18684
|
|
|
18685
18685
|
/*!
|
|
18686
18686
|
* overwrite Method
|
|
18687
18687
|
*/
|
|
18688
18688
|
|
|
18689
|
-
exports.overwriteMethod = __webpack_require__(/*! ./overwriteMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18689
|
+
exports.overwriteMethod = __webpack_require__(/*! ./overwriteMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js");
|
|
18690
18690
|
|
|
18691
18691
|
/*!
|
|
18692
18692
|
* Add a chainable method
|
|
18693
18693
|
*/
|
|
18694
18694
|
|
|
18695
|
-
exports.addChainableMethod = __webpack_require__(/*! ./addChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18695
|
+
exports.addChainableMethod = __webpack_require__(/*! ./addChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js");
|
|
18696
18696
|
|
|
18697
18697
|
/*!
|
|
18698
18698
|
* Overwrite chainable method
|
|
18699
18699
|
*/
|
|
18700
18700
|
|
|
18701
|
-
exports.overwriteChainableMethod = __webpack_require__(/*! ./overwriteChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18701
|
+
exports.overwriteChainableMethod = __webpack_require__(/*! ./overwriteChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js");
|
|
18702
18702
|
|
|
18703
18703
|
/*!
|
|
18704
18704
|
* Compare by inspect method
|
|
18705
18705
|
*/
|
|
18706
18706
|
|
|
18707
|
-
exports.compareByInspect = __webpack_require__(/*! ./compareByInspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18707
|
+
exports.compareByInspect = __webpack_require__(/*! ./compareByInspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js");
|
|
18708
18708
|
|
|
18709
18709
|
/*!
|
|
18710
18710
|
* Get own enumerable property symbols method
|
|
18711
18711
|
*/
|
|
18712
18712
|
|
|
18713
|
-
exports.getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18713
|
+
exports.getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js");
|
|
18714
18714
|
|
|
18715
18715
|
/*!
|
|
18716
18716
|
* Get own enumerable properties method
|
|
18717
18717
|
*/
|
|
18718
18718
|
|
|
18719
|
-
exports.getOwnEnumerableProperties = __webpack_require__(/*! ./getOwnEnumerableProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18719
|
+
exports.getOwnEnumerableProperties = __webpack_require__(/*! ./getOwnEnumerableProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js");
|
|
18720
18720
|
|
|
18721
18721
|
/*!
|
|
18722
18722
|
* Checks error against a given set of criteria
|
|
@@ -18728,37 +18728,37 @@ exports.checkError = __webpack_require__(/*! check-error */ "../../common/temp/n
|
|
|
18728
18728
|
* Proxify util
|
|
18729
18729
|
*/
|
|
18730
18730
|
|
|
18731
|
-
exports.proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18731
|
+
exports.proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
18732
18732
|
|
|
18733
18733
|
/*!
|
|
18734
18734
|
* addLengthGuard util
|
|
18735
18735
|
*/
|
|
18736
18736
|
|
|
18737
|
-
exports.addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18737
|
+
exports.addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
18738
18738
|
|
|
18739
18739
|
/*!
|
|
18740
18740
|
* isProxyEnabled helper
|
|
18741
18741
|
*/
|
|
18742
18742
|
|
|
18743
|
-
exports.isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18743
|
+
exports.isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18744
18744
|
|
|
18745
18745
|
/*!
|
|
18746
18746
|
* isNaN method
|
|
18747
18747
|
*/
|
|
18748
18748
|
|
|
18749
|
-
exports.isNaN = __webpack_require__(/*! ./isNaN */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18749
|
+
exports.isNaN = __webpack_require__(/*! ./isNaN */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js");
|
|
18750
18750
|
|
|
18751
18751
|
/*!
|
|
18752
18752
|
* getOperator method
|
|
18753
18753
|
*/
|
|
18754
18754
|
|
|
18755
|
-
exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18755
|
+
exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js");
|
|
18756
18756
|
|
|
18757
18757
|
/***/ }),
|
|
18758
18758
|
|
|
18759
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18759
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js":
|
|
18760
18760
|
/*!***************************************************************************************************!*\
|
|
18761
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18761
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js ***!
|
|
18762
18762
|
\***************************************************************************************************/
|
|
18763
18763
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18764
18764
|
|
|
@@ -18766,8 +18766,8 @@ exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/tem
|
|
|
18766
18766
|
// https://github.com/joyent/node/blob/f8c335d0caf47f16d31413f89aa28eda3878e3aa/lib/util.js
|
|
18767
18767
|
|
|
18768
18768
|
var getName = __webpack_require__(/*! get-func-name */ "../../common/temp/node_modules/.pnpm/get-func-name@2.0.0/node_modules/get-func-name/index.js");
|
|
18769
|
-
var loupe = __webpack_require__(/*! loupe */ "../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
18770
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18769
|
+
var loupe = __webpack_require__(/*! loupe */ "../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js");
|
|
18770
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18771
18771
|
|
|
18772
18772
|
module.exports = inspect;
|
|
18773
18773
|
|
|
@@ -18799,9 +18799,9 @@ function inspect(obj, showHidden, depth, colors) {
|
|
|
18799
18799
|
|
|
18800
18800
|
/***/ }),
|
|
18801
18801
|
|
|
18802
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18802
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js":
|
|
18803
18803
|
/*!*************************************************************************************************!*\
|
|
18804
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18804
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js ***!
|
|
18805
18805
|
\*************************************************************************************************/
|
|
18806
18806
|
/***/ ((module) => {
|
|
18807
18807
|
|
|
@@ -18835,13 +18835,13 @@ module.exports = Number.isNaN || isNaN;
|
|
|
18835
18835
|
|
|
18836
18836
|
/***/ }),
|
|
18837
18837
|
|
|
18838
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18838
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js":
|
|
18839
18839
|
/*!**********************************************************************************************************!*\
|
|
18840
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18840
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js ***!
|
|
18841
18841
|
\**********************************************************************************************************/
|
|
18842
18842
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18843
18843
|
|
|
18844
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18844
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18845
18845
|
|
|
18846
18846
|
/*!
|
|
18847
18847
|
* Chai - isProxyEnabled helper
|
|
@@ -18869,9 +18869,9 @@ module.exports = function isProxyEnabled() {
|
|
|
18869
18869
|
|
|
18870
18870
|
/***/ }),
|
|
18871
18871
|
|
|
18872
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18872
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js":
|
|
18873
18873
|
/*!******************************************************************************************************!*\
|
|
18874
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18874
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js ***!
|
|
18875
18875
|
\******************************************************************************************************/
|
|
18876
18876
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18877
18877
|
|
|
@@ -18885,8 +18885,8 @@ module.exports = function isProxyEnabled() {
|
|
|
18885
18885
|
* Module dependencies
|
|
18886
18886
|
*/
|
|
18887
18887
|
|
|
18888
|
-
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18889
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18888
|
+
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18889
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18890
18890
|
|
|
18891
18891
|
/**
|
|
18892
18892
|
* ### .objDisplay(object)
|
|
@@ -18929,9 +18929,9 @@ module.exports = function objDisplay(obj) {
|
|
|
18929
18929
|
|
|
18930
18930
|
/***/ }),
|
|
18931
18931
|
|
|
18932
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18932
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js":
|
|
18933
18933
|
/*!********************************************************************************************************************!*\
|
|
18934
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18934
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js ***!
|
|
18935
18935
|
\********************************************************************************************************************/
|
|
18936
18936
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18937
18937
|
|
|
@@ -18941,8 +18941,8 @@ module.exports = function objDisplay(obj) {
|
|
|
18941
18941
|
* MIT Licensed
|
|
18942
18942
|
*/
|
|
18943
18943
|
|
|
18944
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18945
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18944
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18945
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18946
18946
|
|
|
18947
18947
|
/**
|
|
18948
18948
|
* ### .overwriteChainableMethod(ctx, name, method, chainingBehavior)
|
|
@@ -19008,9 +19008,9 @@ module.exports = function overwriteChainableMethod(ctx, name, method, chainingBe
|
|
|
19008
19008
|
|
|
19009
19009
|
/***/ }),
|
|
19010
19010
|
|
|
19011
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19011
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js":
|
|
19012
19012
|
/*!***********************************************************************************************************!*\
|
|
19013
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19013
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js ***!
|
|
19014
19014
|
\***********************************************************************************************************/
|
|
19015
19015
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19016
19016
|
|
|
@@ -19020,11 +19020,11 @@ module.exports = function overwriteChainableMethod(ctx, name, method, chainingBe
|
|
|
19020
19020
|
* MIT Licensed
|
|
19021
19021
|
*/
|
|
19022
19022
|
|
|
19023
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19024
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19025
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19026
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19027
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19023
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
19024
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
19025
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19026
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
19027
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
19028
19028
|
|
|
19029
19029
|
/**
|
|
19030
19030
|
* ### .overwriteMethod(ctx, name, fn)
|
|
@@ -19110,9 +19110,9 @@ module.exports = function overwriteMethod(ctx, name, method) {
|
|
|
19110
19110
|
|
|
19111
19111
|
/***/ }),
|
|
19112
19112
|
|
|
19113
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19113
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js":
|
|
19114
19114
|
/*!*************************************************************************************************************!*\
|
|
19115
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19115
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js ***!
|
|
19116
19116
|
\*************************************************************************************************************/
|
|
19117
19117
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19118
19118
|
|
|
@@ -19122,10 +19122,10 @@ module.exports = function overwriteMethod(ctx, name, method) {
|
|
|
19122
19122
|
* MIT Licensed
|
|
19123
19123
|
*/
|
|
19124
19124
|
|
|
19125
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19126
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19127
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19128
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19125
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
19126
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19127
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
19128
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
19129
19129
|
|
|
19130
19130
|
/**
|
|
19131
19131
|
* ### .overwriteProperty(ctx, name, fn)
|
|
@@ -19212,16 +19212,16 @@ module.exports = function overwriteProperty(ctx, name, getter) {
|
|
|
19212
19212
|
|
|
19213
19213
|
/***/ }),
|
|
19214
19214
|
|
|
19215
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19215
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js":
|
|
19216
19216
|
/*!***************************************************************************************************!*\
|
|
19217
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19217
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js ***!
|
|
19218
19218
|
\***************************************************************************************************/
|
|
19219
19219
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19220
19220
|
|
|
19221
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19222
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19223
|
-
var getProperties = __webpack_require__(/*! ./getProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19224
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19221
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
19222
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19223
|
+
var getProperties = __webpack_require__(/*! ./getProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js");
|
|
19224
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
19225
19225
|
|
|
19226
19226
|
/*!
|
|
19227
19227
|
* Chai - proxify utility
|
|
@@ -19369,9 +19369,9 @@ function stringDistanceCapped(strA, strB, cap) {
|
|
|
19369
19369
|
|
|
19370
19370
|
/***/ }),
|
|
19371
19371
|
|
|
19372
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19372
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js":
|
|
19373
19373
|
/*!************************************************************************************************!*\
|
|
19374
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19374
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js ***!
|
|
19375
19375
|
\************************************************************************************************/
|
|
19376
19376
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19377
19377
|
|
|
@@ -19385,7 +19385,7 @@ function stringDistanceCapped(strA, strB, cap) {
|
|
|
19385
19385
|
* Module dependencies
|
|
19386
19386
|
*/
|
|
19387
19387
|
|
|
19388
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19388
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19389
19389
|
|
|
19390
19390
|
/**
|
|
19391
19391
|
* ### .test(object, expression)
|
|
@@ -19407,9 +19407,9 @@ module.exports = function test(obj, args) {
|
|
|
19407
19407
|
|
|
19408
19408
|
/***/ }),
|
|
19409
19409
|
|
|
19410
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19410
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js":
|
|
19411
19411
|
/*!*********************************************************************************************************!*\
|
|
19412
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19412
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js ***!
|
|
19413
19413
|
\*********************************************************************************************************/
|
|
19414
19414
|
/***/ ((module) => {
|
|
19415
19415
|
|
|
@@ -20473,9 +20473,9 @@ module.exports = function deepAssign(target) {
|
|
|
20473
20473
|
|
|
20474
20474
|
/***/ }),
|
|
20475
20475
|
|
|
20476
|
-
/***/ "../../common/temp/node_modules/.pnpm/deep-eql@
|
|
20476
|
+
/***/ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js":
|
|
20477
20477
|
/*!******************************************************************************************!*\
|
|
20478
|
-
!*** ../../common/temp/node_modules/.pnpm/deep-eql@
|
|
20478
|
+
!*** ../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js ***!
|
|
20479
20479
|
\******************************************************************************************/
|
|
20480
20480
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
20481
20481
|
|
|
@@ -20494,10 +20494,10 @@ function FakeMap() {
|
|
|
20494
20494
|
}
|
|
20495
20495
|
|
|
20496
20496
|
FakeMap.prototype = {
|
|
20497
|
-
get: function
|
|
20497
|
+
get: function get(key) {
|
|
20498
20498
|
return key[this._key];
|
|
20499
20499
|
},
|
|
20500
|
-
set: function
|
|
20500
|
+
set: function set(key, value) {
|
|
20501
20501
|
if (Object.isExtensible(key)) {
|
|
20502
20502
|
Object.defineProperty(key, this._key, {
|
|
20503
20503
|
value: value,
|
|
@@ -20689,8 +20689,9 @@ function extensiveDeepEqualByType(leftHandOperand, rightHandOperand, leftHandTyp
|
|
|
20689
20689
|
case 'function':
|
|
20690
20690
|
case 'WeakMap':
|
|
20691
20691
|
case 'WeakSet':
|
|
20692
|
-
case 'Error':
|
|
20693
20692
|
return leftHandOperand === rightHandOperand;
|
|
20693
|
+
case 'Error':
|
|
20694
|
+
return keysEqual(leftHandOperand, rightHandOperand, [ 'name', 'message', 'code' ], options);
|
|
20694
20695
|
case 'Arguments':
|
|
20695
20696
|
case 'Int8Array':
|
|
20696
20697
|
case 'Uint8Array':
|
|
@@ -20715,6 +20716,19 @@ function extensiveDeepEqualByType(leftHandOperand, rightHandOperand, leftHandTyp
|
|
|
20715
20716
|
return entriesEqual(leftHandOperand, rightHandOperand, options);
|
|
20716
20717
|
case 'Map':
|
|
20717
20718
|
return entriesEqual(leftHandOperand, rightHandOperand, options);
|
|
20719
|
+
case 'Temporal.PlainDate':
|
|
20720
|
+
case 'Temporal.PlainTime':
|
|
20721
|
+
case 'Temporal.PlainDateTime':
|
|
20722
|
+
case 'Temporal.Instant':
|
|
20723
|
+
case 'Temporal.ZonedDateTime':
|
|
20724
|
+
case 'Temporal.PlainYearMonth':
|
|
20725
|
+
case 'Temporal.PlainMonthDay':
|
|
20726
|
+
return leftHandOperand.equals(rightHandOperand);
|
|
20727
|
+
case 'Temporal.Duration':
|
|
20728
|
+
return leftHandOperand.total('nanoseconds') === rightHandOperand.total('nanoseconds');
|
|
20729
|
+
case 'Temporal.TimeZone':
|
|
20730
|
+
case 'Temporal.Calendar':
|
|
20731
|
+
return leftHandOperand.toString() === rightHandOperand.toString();
|
|
20718
20732
|
default:
|
|
20719
20733
|
return objectEqual(leftHandOperand, rightHandOperand, options);
|
|
20720
20734
|
}
|
|
@@ -20860,6 +20874,11 @@ function getEnumerableKeys(target) {
|
|
|
20860
20874
|
return keys;
|
|
20861
20875
|
}
|
|
20862
20876
|
|
|
20877
|
+
function getNonEnumerableSymbols(target) {
|
|
20878
|
+
var keys = Object.getOwnPropertySymbols(target);
|
|
20879
|
+
return keys;
|
|
20880
|
+
}
|
|
20881
|
+
|
|
20863
20882
|
/*!
|
|
20864
20883
|
* Determines if two objects have matching values, given a set of keys. Defers to deepEqual for the equality check of
|
|
20865
20884
|
* each key. If any value of the given key is not equal, the function will return false (early).
|
|
@@ -20892,14 +20911,16 @@ function keysEqual(leftHandOperand, rightHandOperand, keys, options) {
|
|
|
20892
20911
|
* @param {Object} [options] (Optional)
|
|
20893
20912
|
* @return {Boolean} result
|
|
20894
20913
|
*/
|
|
20895
|
-
|
|
20896
20914
|
function objectEqual(leftHandOperand, rightHandOperand, options) {
|
|
20897
20915
|
var leftHandKeys = getEnumerableKeys(leftHandOperand);
|
|
20898
20916
|
var rightHandKeys = getEnumerableKeys(rightHandOperand);
|
|
20917
|
+
var leftHandSymbols = getNonEnumerableSymbols(leftHandOperand);
|
|
20918
|
+
var rightHandSymbols = getNonEnumerableSymbols(rightHandOperand);
|
|
20919
|
+
leftHandKeys = leftHandKeys.concat(leftHandSymbols);
|
|
20920
|
+
rightHandKeys = rightHandKeys.concat(rightHandSymbols);
|
|
20921
|
+
|
|
20899
20922
|
if (leftHandKeys.length && leftHandKeys.length === rightHandKeys.length) {
|
|
20900
|
-
leftHandKeys.sort()
|
|
20901
|
-
rightHandKeys.sort();
|
|
20902
|
-
if (iterableEqual(leftHandKeys, rightHandKeys) === false) {
|
|
20923
|
+
if (iterableEqual(mapSymbols(leftHandKeys).sort(), mapSymbols(rightHandKeys).sort()) === false) {
|
|
20903
20924
|
return false;
|
|
20904
20925
|
}
|
|
20905
20926
|
return keysEqual(leftHandOperand, rightHandOperand, leftHandKeys, options);
|
|
@@ -20936,6 +20957,16 @@ function isPrimitive(value) {
|
|
|
20936
20957
|
return value === null || typeof value !== 'object';
|
|
20937
20958
|
}
|
|
20938
20959
|
|
|
20960
|
+
function mapSymbols(arr) {
|
|
20961
|
+
return arr.map(function mapSymbol(entry) {
|
|
20962
|
+
if (typeof entry === 'symbol') {
|
|
20963
|
+
return entry.toString();
|
|
20964
|
+
}
|
|
20965
|
+
|
|
20966
|
+
return entry;
|
|
20967
|
+
});
|
|
20968
|
+
}
|
|
20969
|
+
|
|
20939
20970
|
|
|
20940
20971
|
/***/ }),
|
|
20941
20972
|
|
|
@@ -22287,8 +22318,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22287
22318
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22288
22319
|
/* harmony export */ "default": () => (/* binding */ Browser)
|
|
22289
22320
|
/* harmony export */ });
|
|
22290
|
-
/* 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.
|
|
22291
|
-
/* 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.
|
|
22321
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
22322
|
+
/* 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.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
22292
22323
|
|
|
22293
22324
|
|
|
22294
22325
|
|
|
@@ -40068,9 +40099,9 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40068
40099
|
|
|
40069
40100
|
/***/ }),
|
|
40070
40101
|
|
|
40071
|
-
/***/ "../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
40102
|
+
/***/ "../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js":
|
|
40072
40103
|
/*!************************************************************************************!*\
|
|
40073
|
-
!*** ../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
40104
|
+
!*** ../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js ***!
|
|
40074
40105
|
\************************************************************************************/
|
|
40075
40106
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
40076
40107
|
|
|
@@ -40454,9 +40485,15 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40454
40485
|
}
|
|
40455
40486
|
|
|
40456
40487
|
function inspectDate(dateObject, options) {
|
|
40457
|
-
|
|
40458
|
-
|
|
40459
|
-
|
|
40488
|
+
var stringRepresentation = dateObject.toJSON();
|
|
40489
|
+
|
|
40490
|
+
if (stringRepresentation === null) {
|
|
40491
|
+
return 'Invalid Date';
|
|
40492
|
+
}
|
|
40493
|
+
|
|
40494
|
+
var split = stringRepresentation.split('T');
|
|
40495
|
+
var date = split[0]; // If we need to - truncate the time portion, but never the date
|
|
40496
|
+
|
|
40460
40497
|
return options.stylize("".concat(date, "T").concat(truncate(split[1], options.truncate - date.length - 1)), 'date');
|
|
40461
40498
|
}
|
|
40462
40499
|
|
|
@@ -40746,14 +40783,39 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40746
40783
|
|
|
40747
40784
|
try {
|
|
40748
40785
|
// eslint-disable-next-line global-require
|
|
40749
|
-
var nodeUtil = __webpack_require__(/*! util */ "?
|
|
40786
|
+
var nodeUtil = __webpack_require__(/*! util */ "?1120");
|
|
40750
40787
|
|
|
40751
40788
|
nodeInspect = nodeUtil.inspect ? nodeUtil.inspect.custom : false;
|
|
40752
40789
|
} catch (noNodeInspect) {
|
|
40753
40790
|
nodeInspect = false;
|
|
40754
40791
|
}
|
|
40755
40792
|
|
|
40756
|
-
|
|
40793
|
+
function FakeMap() {
|
|
40794
|
+
// eslint-disable-next-line prefer-template
|
|
40795
|
+
this.key = 'chai/loupe__' + Math.random() + Date.now();
|
|
40796
|
+
}
|
|
40797
|
+
|
|
40798
|
+
FakeMap.prototype = {
|
|
40799
|
+
// eslint-disable-next-line object-shorthand
|
|
40800
|
+
get: function get(key) {
|
|
40801
|
+
return key[this.key];
|
|
40802
|
+
},
|
|
40803
|
+
// eslint-disable-next-line object-shorthand
|
|
40804
|
+
has: function has(key) {
|
|
40805
|
+
return this.key in key;
|
|
40806
|
+
},
|
|
40807
|
+
// eslint-disable-next-line object-shorthand
|
|
40808
|
+
set: function set(key, value) {
|
|
40809
|
+
if (Object.isExtensible(key)) {
|
|
40810
|
+
Object.defineProperty(key, this.key, {
|
|
40811
|
+
// eslint-disable-next-line object-shorthand
|
|
40812
|
+
value: value,
|
|
40813
|
+
configurable: true
|
|
40814
|
+
});
|
|
40815
|
+
}
|
|
40816
|
+
}
|
|
40817
|
+
};
|
|
40818
|
+
var constructorMap = new (typeof WeakMap === 'function' ? WeakMap : FakeMap)();
|
|
40757
40819
|
var stringTagMap = {};
|
|
40758
40820
|
var baseTypesMap = {
|
|
40759
40821
|
undefined: function undefined$1(value, options) {
|
|
@@ -40903,7 +40965,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40903
40965
|
return false;
|
|
40904
40966
|
}
|
|
40905
40967
|
|
|
40906
|
-
constructorMap.
|
|
40968
|
+
constructorMap.set(constructor, inspector);
|
|
40907
40969
|
return true;
|
|
40908
40970
|
}
|
|
40909
40971
|
function registerStringTag(stringTag, inspector) {
|
|
@@ -58067,15 +58129,25 @@ class ByteStream {
|
|
|
58067
58129
|
return new ByteStream(buffer, subView); // eslint-disable-line deprecation/deprecation
|
|
58068
58130
|
}
|
|
58069
58131
|
/** The number of bytes in this stream */
|
|
58070
|
-
get length() {
|
|
58132
|
+
get length() {
|
|
58133
|
+
return this._view.byteLength;
|
|
58134
|
+
}
|
|
58135
|
+
/** The number of bytes remaining to be read, from [[curPos]] to the end of the stream. */
|
|
58136
|
+
get remainingLength() {
|
|
58137
|
+
return this.length - this.curPos;
|
|
58138
|
+
}
|
|
58071
58139
|
/** Returns true if the current read position has been advanced past the end of the stream. This generally indicates that an attempt was made to read more data than is available.
|
|
58072
58140
|
* @see [[isAtTheEnd]]
|
|
58073
58141
|
*/
|
|
58074
|
-
get isPastTheEnd() {
|
|
58142
|
+
get isPastTheEnd() {
|
|
58143
|
+
return this.curPos > this.length;
|
|
58144
|
+
}
|
|
58075
58145
|
/** Returns true if the current read position has advanced precisely to the end of the stream, indicating all of the data has been consumed.
|
|
58076
58146
|
* @see [[isPastTheEnd]].
|
|
58077
58147
|
*/
|
|
58078
|
-
get isAtTheEnd() {
|
|
58148
|
+
get isAtTheEnd() {
|
|
58149
|
+
return this.curPos === this.length;
|
|
58150
|
+
}
|
|
58079
58151
|
/** The current read position as an index into the stream of bytes. */
|
|
58080
58152
|
get curPos() { return this._curPos; }
|
|
58081
58153
|
set curPos(pos) {
|
|
@@ -63837,7 +63909,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
63837
63909
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
63838
63910
|
/* harmony export */ "Base64EncodedString": () => (/* binding */ Base64EncodedString)
|
|
63839
63911
|
/* harmony export */ });
|
|
63840
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
63912
|
+
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs");
|
|
63841
63913
|
/*---------------------------------------------------------------------------------------------
|
|
63842
63914
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
63843
63915
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -64119,6 +64191,8 @@ var TypeOfChange;
|
|
|
64119
64191
|
TypeOfChange[TypeOfChange["Indirect"] = 8] = "Indirect";
|
|
64120
64192
|
/** Hidden properties of the element changed */
|
|
64121
64193
|
TypeOfChange[TypeOfChange["Hidden"] = 16] = "Hidden";
|
|
64194
|
+
/** The top-most parent of the element has changed */
|
|
64195
|
+
TypeOfChange[TypeOfChange["Parent"] = 32] = "Parent";
|
|
64122
64196
|
})(TypeOfChange || (TypeOfChange = {}));
|
|
64123
64197
|
|
|
64124
64198
|
|
|
@@ -65643,7 +65717,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
65643
65717
|
/* harmony export */ });
|
|
65644
65718
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
65645
65719
|
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
65646
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
65720
|
+
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs");
|
|
65647
65721
|
/*---------------------------------------------------------------------------------------------
|
|
65648
65722
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
65649
65723
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -65682,42 +65756,99 @@ class QueryOptionsBuilder {
|
|
|
65682
65756
|
this._options = _options;
|
|
65683
65757
|
}
|
|
65684
65758
|
getOptions() { return this._options; }
|
|
65759
|
+
/**
|
|
65760
|
+
* @internal
|
|
65761
|
+
* Allow to set priority of query. Query will be inserted int queue base on priority value. This value will be ignored if concurrent query is configured with ignored priority is true.
|
|
65762
|
+
* @param val integer value which can be negative as well. By default its zero.
|
|
65763
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65764
|
+
*/
|
|
65685
65765
|
setPriority(val) {
|
|
65686
65766
|
this._options.priority = val;
|
|
65687
65767
|
return this;
|
|
65688
65768
|
}
|
|
65769
|
+
/**
|
|
65770
|
+
* Allow to set restart token. If restart token is set then any other query(s) in queue with same token is cancelled if its not already executed.
|
|
65771
|
+
* @param val A string token identifying a use case in which previous query with same token is cancelled.
|
|
65772
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65773
|
+
*/
|
|
65689
65774
|
setRestartToken(val) {
|
|
65690
65775
|
this._options.restartToken = val;
|
|
65691
65776
|
return this;
|
|
65692
65777
|
}
|
|
65778
|
+
/**
|
|
65779
|
+
* Allow to set quota restriction for query. Its a hint and may be overriden or ignored by concurrent query manager.
|
|
65780
|
+
* @param val @type QueryQuota Specify time and memory that can be used by a query.
|
|
65781
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65782
|
+
*/
|
|
65693
65783
|
setQuota(val) {
|
|
65694
65784
|
this._options.quota = val;
|
|
65695
65785
|
return this;
|
|
65696
65786
|
}
|
|
65787
|
+
/**
|
|
65788
|
+
* Force a query to be executed synchronously against primary connection. This option is ignored if provided by frontend.
|
|
65789
|
+
* @param val A boolean value to force use primary connection on main thread to execute query.
|
|
65790
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65791
|
+
*/
|
|
65697
65792
|
setUsePrimaryConnection(val) {
|
|
65698
65793
|
this._options.usePrimaryConn = val;
|
|
65699
65794
|
return this;
|
|
65700
65795
|
}
|
|
65796
|
+
/**
|
|
65797
|
+
* By default all blobs are abbreviated to save memory and network bandwidth. If set to false, all blob data will be returned by query as is.
|
|
65798
|
+
* Use @type BlobReader to access blob data more efficiently.
|
|
65799
|
+
* @param val A boolean value, if set to false will return complete blob type property data. This could cost time and network bandwidth.
|
|
65800
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65801
|
+
*/
|
|
65701
65802
|
setAbbreviateBlobs(val) {
|
|
65702
65803
|
this._options.abbreviateBlobs = val;
|
|
65703
65804
|
return this;
|
|
65704
65805
|
}
|
|
65806
|
+
/**
|
|
65807
|
+
* When query fail to prepare it will log error. This setting will suppress log errors in case where query come from user typing it and its expected to fail often.
|
|
65808
|
+
* @param val A boolean value, if set to true, any error logging will be suppressed.
|
|
65809
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65810
|
+
*/
|
|
65705
65811
|
setSuppressLogErrors(val) {
|
|
65706
65812
|
this._options.suppressLogErrors = val;
|
|
65707
65813
|
return this;
|
|
65708
65814
|
}
|
|
65815
|
+
/**
|
|
65816
|
+
* If set ECClassId, SourceECClassId and TargetECClassId system properties will return qualified name of class instead of a @typedef Id64String.
|
|
65817
|
+
* @param val A boolean value.
|
|
65818
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65819
|
+
*/
|
|
65709
65820
|
setConvertClassIdsToNames(val) {
|
|
65710
65821
|
this._options.convertClassIdsToClassNames = val;
|
|
65711
65822
|
return this;
|
|
65712
65823
|
}
|
|
65824
|
+
/**
|
|
65825
|
+
* Specify limit for query. Limit determine number of rows and offset in result-set.
|
|
65826
|
+
* @param val Specify count and offset from within the result-set of a ECSQL query.
|
|
65827
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65828
|
+
*/
|
|
65713
65829
|
setLimit(val) {
|
|
65714
65830
|
this._options.limit = val;
|
|
65715
65831
|
return this;
|
|
65716
65832
|
}
|
|
65833
|
+
/**
|
|
65834
|
+
* Specify row format returned by concurrent query manager.
|
|
65835
|
+
* @param val @enum QueryRowFormat specifying format for result.
|
|
65836
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65837
|
+
*/
|
|
65717
65838
|
setRowFormat(val) {
|
|
65718
65839
|
this._options.rowFormat = val;
|
|
65719
65840
|
return this;
|
|
65720
65841
|
}
|
|
65842
|
+
/**
|
|
65843
|
+
* @internal
|
|
65844
|
+
* Defers execution of query in queue by specified milliseconds. This parameter is ignored by default unless concurrent query is configure to not ignore it.
|
|
65845
|
+
* @param val Number of milliseconds.
|
|
65846
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65847
|
+
*/
|
|
65848
|
+
setDelay(val) {
|
|
65849
|
+
this._options.delay = val;
|
|
65850
|
+
return this;
|
|
65851
|
+
}
|
|
65721
65852
|
}
|
|
65722
65853
|
/** @beta */
|
|
65723
65854
|
class BlobOptionsBuilder {
|
|
@@ -65725,26 +65856,62 @@ class BlobOptionsBuilder {
|
|
|
65725
65856
|
this._options = _options;
|
|
65726
65857
|
}
|
|
65727
65858
|
getOptions() { return this._options; }
|
|
65859
|
+
/**
|
|
65860
|
+
* @internal
|
|
65861
|
+
* Allow to set priority of blob request. Blob request will be inserted int queue base on priority value. This value will be ignored if concurrent query is configured with ignored priority is true.
|
|
65862
|
+
* @param val integer value which can be negative as well. By default its zero.
|
|
65863
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65864
|
+
*/
|
|
65728
65865
|
setPriority(val) {
|
|
65729
65866
|
this._options.priority = val;
|
|
65730
65867
|
return this;
|
|
65731
65868
|
}
|
|
65869
|
+
/**
|
|
65870
|
+
* Allow to set restart token. If restart token is set then any other blob request in queue with same token is cancelled if its not already executed.
|
|
65871
|
+
* @param val A string token identifying a use case in which previous blob request with same token is cancelled.
|
|
65872
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65873
|
+
*/
|
|
65732
65874
|
setRestartToken(val) {
|
|
65733
65875
|
this._options.restartToken = val;
|
|
65734
65876
|
return this;
|
|
65735
65877
|
}
|
|
65878
|
+
/**
|
|
65879
|
+
* Allow to set quota restriction for blob request. Its a hint and may be overriden or ignored by concurrent query manager.
|
|
65880
|
+
* @param val @type QueryQuota Specify time and memory that can be used by a query.
|
|
65881
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65882
|
+
*/
|
|
65736
65883
|
setQuota(val) {
|
|
65737
65884
|
this._options.quota = val;
|
|
65738
65885
|
return this;
|
|
65739
65886
|
}
|
|
65887
|
+
/**
|
|
65888
|
+
* Force a blob request to be executed synchronously against primary connection. This option is ignored if provided by frontend.
|
|
65889
|
+
* @param val A boolean value to force use primary connection on main thread to execute blob request.
|
|
65890
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65891
|
+
*/
|
|
65740
65892
|
setUsePrimaryConnection(val) {
|
|
65741
65893
|
this._options.usePrimaryConn = val;
|
|
65742
65894
|
return this;
|
|
65743
65895
|
}
|
|
65896
|
+
/**
|
|
65897
|
+
* Specify range with in the blob that need to be returned.
|
|
65898
|
+
* @param val Specify offset and count of bytes that need to be returned.
|
|
65899
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65900
|
+
*/
|
|
65744
65901
|
setRange(val) {
|
|
65745
65902
|
this._options.range = val;
|
|
65746
65903
|
return this;
|
|
65747
65904
|
}
|
|
65905
|
+
/**
|
|
65906
|
+
* @internal
|
|
65907
|
+
* Defers execution of blob request in queue by specified milliseconds. This parameter is ignored by default unless concurrent query is configure to not ignore it.
|
|
65908
|
+
* @param val Number of milliseconds.
|
|
65909
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65910
|
+
*/
|
|
65911
|
+
setDelay(val) {
|
|
65912
|
+
this._options.delay = val;
|
|
65913
|
+
return this;
|
|
65914
|
+
}
|
|
65748
65915
|
}
|
|
65749
65916
|
/** @internal */
|
|
65750
65917
|
var QueryParamType;
|
|
@@ -65764,7 +65931,10 @@ var QueryParamType;
|
|
|
65764
65931
|
QueryParamType[QueryParamType["Blob"] = 10] = "Blob";
|
|
65765
65932
|
QueryParamType[QueryParamType["Struct"] = 11] = "Struct";
|
|
65766
65933
|
})(QueryParamType || (QueryParamType = {}));
|
|
65767
|
-
/**
|
|
65934
|
+
/**
|
|
65935
|
+
* @public
|
|
65936
|
+
* QueryBinder allow to bind values to a ECSQL query.
|
|
65937
|
+
* */
|
|
65768
65938
|
class QueryBinder {
|
|
65769
65939
|
constructor() {
|
|
65770
65940
|
this._args = {};
|
|
@@ -65780,6 +65950,12 @@ class QueryBinder {
|
|
|
65780
65950
|
}
|
|
65781
65951
|
}
|
|
65782
65952
|
}
|
|
65953
|
+
/**
|
|
65954
|
+
* Bind boolean value to ECSQL statement.
|
|
65955
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65956
|
+
* @param val Boolean value to bind to ECSQL statement.
|
|
65957
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65958
|
+
*/
|
|
65783
65959
|
bindBoolean(indexOrName, val) {
|
|
65784
65960
|
this.verify(indexOrName);
|
|
65785
65961
|
const name = String(indexOrName);
|
|
@@ -65792,6 +65968,12 @@ class QueryBinder {
|
|
|
65792
65968
|
});
|
|
65793
65969
|
return this;
|
|
65794
65970
|
}
|
|
65971
|
+
/**
|
|
65972
|
+
* Bind blob value to ECSQL statement.
|
|
65973
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65974
|
+
* @param val Blob value to bind to ECSQL statement.
|
|
65975
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65976
|
+
*/
|
|
65795
65977
|
bindBlob(indexOrName, val) {
|
|
65796
65978
|
this.verify(indexOrName);
|
|
65797
65979
|
const name = String(indexOrName);
|
|
@@ -65804,6 +65986,12 @@ class QueryBinder {
|
|
|
65804
65986
|
});
|
|
65805
65987
|
return this;
|
|
65806
65988
|
}
|
|
65989
|
+
/**
|
|
65990
|
+
* Bind double value to ECSQL statement.
|
|
65991
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65992
|
+
* @param val Double value to bind to ECSQL statement.
|
|
65993
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65994
|
+
*/
|
|
65807
65995
|
bindDouble(indexOrName, val) {
|
|
65808
65996
|
this.verify(indexOrName);
|
|
65809
65997
|
const name = String(indexOrName);
|
|
@@ -65815,6 +66003,12 @@ class QueryBinder {
|
|
|
65815
66003
|
});
|
|
65816
66004
|
return this;
|
|
65817
66005
|
}
|
|
66006
|
+
/**
|
|
66007
|
+
* Bind @typedef Id64String value to ECSQL statement.
|
|
66008
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66009
|
+
* @param val @typedef Id64String value to bind to ECSQL statement.
|
|
66010
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66011
|
+
*/
|
|
65818
66012
|
bindId(indexOrName, val) {
|
|
65819
66013
|
this.verify(indexOrName);
|
|
65820
66014
|
const name = String(indexOrName);
|
|
@@ -65826,6 +66020,12 @@ class QueryBinder {
|
|
|
65826
66020
|
});
|
|
65827
66021
|
return this;
|
|
65828
66022
|
}
|
|
66023
|
+
/**
|
|
66024
|
+
* Bind @type OrderedId64Iterable to ECSQL statement.
|
|
66025
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66026
|
+
* @param val @type OrderedId64Iterable value to bind to ECSQL statement.
|
|
66027
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66028
|
+
*/
|
|
65829
66029
|
bindIdSet(indexOrName, val) {
|
|
65830
66030
|
this.verify(indexOrName);
|
|
65831
66031
|
const name = String(indexOrName);
|
|
@@ -65838,6 +66038,12 @@ class QueryBinder {
|
|
|
65838
66038
|
});
|
|
65839
66039
|
return this;
|
|
65840
66040
|
}
|
|
66041
|
+
/**
|
|
66042
|
+
* Bind integer to ECSQL statement.
|
|
66043
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66044
|
+
* @param val Integer value to bind to ECSQL statement.
|
|
66045
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66046
|
+
*/
|
|
65841
66047
|
bindInt(indexOrName, val) {
|
|
65842
66048
|
this.verify(indexOrName);
|
|
65843
66049
|
const name = String(indexOrName);
|
|
@@ -65849,6 +66055,12 @@ class QueryBinder {
|
|
|
65849
66055
|
});
|
|
65850
66056
|
return this;
|
|
65851
66057
|
}
|
|
66058
|
+
/**
|
|
66059
|
+
* Bind struct to ECSQL statement. Struct specified as object.
|
|
66060
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66061
|
+
* @param val struct value to bind to ECSQL statement.
|
|
66062
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66063
|
+
*/
|
|
65852
66064
|
bindStruct(indexOrName, val) {
|
|
65853
66065
|
this.verify(indexOrName);
|
|
65854
66066
|
const name = String(indexOrName);
|
|
@@ -65860,6 +66072,12 @@ class QueryBinder {
|
|
|
65860
66072
|
});
|
|
65861
66073
|
return this;
|
|
65862
66074
|
}
|
|
66075
|
+
/**
|
|
66076
|
+
* Bind long to ECSQL statement.
|
|
66077
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66078
|
+
* @param val Long value to bind to ECSQL statement.
|
|
66079
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66080
|
+
*/
|
|
65863
66081
|
bindLong(indexOrName, val) {
|
|
65864
66082
|
this.verify(indexOrName);
|
|
65865
66083
|
const name = String(indexOrName);
|
|
@@ -65871,6 +66089,12 @@ class QueryBinder {
|
|
|
65871
66089
|
});
|
|
65872
66090
|
return this;
|
|
65873
66091
|
}
|
|
66092
|
+
/**
|
|
66093
|
+
* Bind string to ECSQL statement.
|
|
66094
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66095
|
+
* @param val String value to bind to ECSQL statement.
|
|
66096
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66097
|
+
*/
|
|
65874
66098
|
bindString(indexOrName, val) {
|
|
65875
66099
|
this.verify(indexOrName);
|
|
65876
66100
|
const name = String(indexOrName);
|
|
@@ -65882,6 +66106,11 @@ class QueryBinder {
|
|
|
65882
66106
|
});
|
|
65883
66107
|
return this;
|
|
65884
66108
|
}
|
|
66109
|
+
/**
|
|
66110
|
+
* Bind null to ECSQL statement.
|
|
66111
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66112
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66113
|
+
*/
|
|
65885
66114
|
bindNull(indexOrName) {
|
|
65886
66115
|
this.verify(indexOrName);
|
|
65887
66116
|
const name = String(indexOrName);
|
|
@@ -65893,6 +66122,12 @@ class QueryBinder {
|
|
|
65893
66122
|
});
|
|
65894
66123
|
return this;
|
|
65895
66124
|
}
|
|
66125
|
+
/**
|
|
66126
|
+
* Bind @type Point2d to ECSQL statement.
|
|
66127
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66128
|
+
* @param val @type Point2d value to bind to ECSQL statement.
|
|
66129
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66130
|
+
*/
|
|
65896
66131
|
bindPoint2d(indexOrName, val) {
|
|
65897
66132
|
this.verify(indexOrName);
|
|
65898
66133
|
const name = String(indexOrName);
|
|
@@ -65904,6 +66139,12 @@ class QueryBinder {
|
|
|
65904
66139
|
});
|
|
65905
66140
|
return this;
|
|
65906
66141
|
}
|
|
66142
|
+
/**
|
|
66143
|
+
* Bind @type Point3d to ECSQL statement.
|
|
66144
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
66145
|
+
* @param val @type Point3d value to bind to ECSQL statement.
|
|
66146
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66147
|
+
*/
|
|
65907
66148
|
bindPoint3d(indexOrName, val) {
|
|
65908
66149
|
this.verify(indexOrName);
|
|
65909
66150
|
const name = String(indexOrName);
|
|
@@ -65947,6 +66188,11 @@ class QueryBinder {
|
|
|
65947
66188
|
throw new Error("unsupported type");
|
|
65948
66189
|
}
|
|
65949
66190
|
}
|
|
66191
|
+
/**
|
|
66192
|
+
* Allow bulk bind either parameters by index as value array or by parameter names as object.
|
|
66193
|
+
* @param args if array of values is provided then array index is used as index. If object is provided then object property name is used as parameter name of reach value.
|
|
66194
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
66195
|
+
*/
|
|
65950
66196
|
static from(args) {
|
|
65951
66197
|
const params = new QueryBinder();
|
|
65952
66198
|
if (typeof args === "undefined")
|
|
@@ -67931,6 +68177,75 @@ class ECJsNames {
|
|
|
67931
68177
|
}
|
|
67932
68178
|
|
|
67933
68179
|
|
|
68180
|
+
/***/ }),
|
|
68181
|
+
|
|
68182
|
+
/***/ "../../core/common/lib/esm/ElementMesh.js":
|
|
68183
|
+
/*!************************************************!*\
|
|
68184
|
+
!*** ../../core/common/lib/esm/ElementMesh.js ***!
|
|
68185
|
+
\************************************************/
|
|
68186
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
68187
|
+
|
|
68188
|
+
"use strict";
|
|
68189
|
+
__webpack_require__.r(__webpack_exports__);
|
|
68190
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
68191
|
+
/* harmony export */ "readElementMeshes": () => (/* binding */ readElementMeshes)
|
|
68192
|
+
/* harmony export */ });
|
|
68193
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
68194
|
+
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
68195
|
+
/*---------------------------------------------------------------------------------------------
|
|
68196
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
68197
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
68198
|
+
*--------------------------------------------------------------------------------------------*/
|
|
68199
|
+
/** @packageDocumentation
|
|
68200
|
+
* @module Geometry
|
|
68201
|
+
*/
|
|
68202
|
+
|
|
68203
|
+
|
|
68204
|
+
function nextChunk(stream) {
|
|
68205
|
+
if (stream.remainingLength < 8) {
|
|
68206
|
+
// Consume remaining bytes.
|
|
68207
|
+
stream.curPos = stream.length;
|
|
68208
|
+
return undefined;
|
|
68209
|
+
}
|
|
68210
|
+
// Type codes are a sequence of four uppercase ASCII letters.
|
|
68211
|
+
const chars = [stream.nextUint8, stream.nextUint8, stream.nextUint8, stream.nextUint8];
|
|
68212
|
+
if (chars.some((c) => c < 65 || c > 90))
|
|
68213
|
+
return undefined;
|
|
68214
|
+
const dataLength = stream.nextUint32;
|
|
68215
|
+
const data = dataLength > 0 ? stream.nextBytes(dataLength) : undefined;
|
|
68216
|
+
return {
|
|
68217
|
+
type: String.fromCharCode(...chars),
|
|
68218
|
+
data,
|
|
68219
|
+
};
|
|
68220
|
+
}
|
|
68221
|
+
/** Convert the output of [IModelConnection.generateElementMeshes]($frontend) into an array of [Polyface]($core-geometry)s.
|
|
68222
|
+
* @param data Encoded polyfaces obtained from [IModelConnection.generateElementMeshes]($frontend).
|
|
68223
|
+
* @returns a list of decoded polyfaces.
|
|
68224
|
+
* @beta
|
|
68225
|
+
*/
|
|
68226
|
+
function readElementMeshes(data) {
|
|
68227
|
+
const polyfaces = [];
|
|
68228
|
+
const stream = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.ByteStream.fromUint8Array(data);
|
|
68229
|
+
const firstChunk = nextChunk(stream);
|
|
68230
|
+
if (!firstChunk || "LMSH" !== firstChunk.type)
|
|
68231
|
+
return polyfaces;
|
|
68232
|
+
while (stream.remainingLength > 0) {
|
|
68233
|
+
const chunk = nextChunk(stream);
|
|
68234
|
+
if (!chunk || chunk.type !== "PLFC" || !chunk.data)
|
|
68235
|
+
continue;
|
|
68236
|
+
try {
|
|
68237
|
+
const geom = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.BentleyGeometryFlatBuffer.bytesToGeometry(chunk.data, true);
|
|
68238
|
+
if (geom instanceof _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.IndexedPolyface)
|
|
68239
|
+
polyfaces.push(geom);
|
|
68240
|
+
}
|
|
68241
|
+
catch (_) {
|
|
68242
|
+
//
|
|
68243
|
+
}
|
|
68244
|
+
}
|
|
68245
|
+
return polyfaces;
|
|
68246
|
+
}
|
|
68247
|
+
|
|
68248
|
+
|
|
67934
68249
|
/***/ }),
|
|
67935
68250
|
|
|
67936
68251
|
/***/ "../../core/common/lib/esm/ElementProps.js":
|
|
@@ -78801,8 +79116,16 @@ class ViewDetails {
|
|
|
78801
79116
|
return this._clipVector.isValid ? this._clipVector : undefined;
|
|
78802
79117
|
}
|
|
78803
79118
|
set clipVector(clip) {
|
|
78804
|
-
|
|
78805
|
-
|
|
79119
|
+
const curClip = this.clipVector;
|
|
79120
|
+
if (curClip === clip)
|
|
79121
|
+
return;
|
|
79122
|
+
if (!curClip) {
|
|
79123
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== clip);
|
|
79124
|
+
// An empty clip is equivalent to no clip.
|
|
79125
|
+
if (!clip.isValid)
|
|
79126
|
+
return;
|
|
79127
|
+
}
|
|
79128
|
+
clip = clip !== null && clip !== void 0 ? clip : _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.ClipVector.createEmpty();
|
|
78806
79129
|
this.onClipVectorChanged.raiseEvent(clip.isValid ? clip : undefined);
|
|
78807
79130
|
this._clipVector = clip;
|
|
78808
79131
|
if (clip.isValid)
|
|
@@ -79324,47 +79647,47 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
79324
79647
|
"use strict";
|
|
79325
79648
|
__webpack_require__.r(__webpack_exports__);
|
|
79326
79649
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
79327
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
79328
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
79329
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
79650
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__.AdditionalTransform),
|
|
79651
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.AffineTransform),
|
|
79652
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.AmbientLight),
|
|
79330
79653
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
79331
79654
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
79332
79655
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
79333
79656
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
79334
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
79335
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
79336
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
79337
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
79338
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
79339
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
79657
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_38__.AreaPattern),
|
|
79658
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_144__.B3dmHeader),
|
|
79659
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.BRepEntity),
|
|
79660
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.BRepGeometryOperation),
|
|
79661
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BackendError),
|
|
79662
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.BackgroundFill),
|
|
79340
79663
|
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapProvider),
|
|
79341
79664
|
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapSettings),
|
|
79342
79665
|
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapType),
|
|
79343
79666
|
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_5__.Base64EncodedString),
|
|
79344
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
79345
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
79346
|
-
/* harmony export */ "BatchType": () => (/* reexport safe */
|
|
79347
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
79348
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
79349
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
79350
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
79351
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
79667
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__.BaseLayerSettings),
|
|
79668
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.BaseMapLayerSettings),
|
|
79669
|
+
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.BatchType),
|
|
79670
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcConfiguration),
|
|
79671
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcManager),
|
|
79672
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_138__.BentleyCloudRpcProtocol),
|
|
79673
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BentleyError),
|
|
79674
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BentleyStatus),
|
|
79352
79675
|
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.BisCodeSpec),
|
|
79353
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
79354
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
79676
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.BlobOptionsBuilder),
|
|
79677
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_39__.BoundingSphere),
|
|
79355
79678
|
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.BriefcaseIdValue),
|
|
79356
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
79357
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
79358
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
79679
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BriefcaseStatus),
|
|
79680
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.CURRENT_INVOCATION),
|
|
79681
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.CURRENT_REQUEST),
|
|
79359
79682
|
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_7__.Camera),
|
|
79360
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
79361
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
79362
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
79683
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.Carto2DDegrees),
|
|
79684
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__.Cartographic),
|
|
79685
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__.CartographicRange),
|
|
79363
79686
|
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangeOpCode),
|
|
79364
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
79687
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ChangeSetStatus),
|
|
79365
79688
|
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangedValueState),
|
|
79366
79689
|
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_10__.ChangesetType),
|
|
79367
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
79690
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ChannelConstraintError),
|
|
79368
79691
|
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.ClipStyle),
|
|
79369
79692
|
/* harmony export */ "CloudStorageCache": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageCache),
|
|
79370
79693
|
/* harmony export */ "CloudStorageContainerUrl": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageContainerUrl),
|
|
@@ -79375,323 +79698,324 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79375
79698
|
/* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.CodeSpec),
|
|
79376
79699
|
/* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_15__.ColorByName),
|
|
79377
79700
|
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_16__.ColorDef),
|
|
79378
|
-
/* harmony export */ "ColorIndex": () => (/* reexport safe */
|
|
79701
|
+
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.ColorIndex),
|
|
79379
79702
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_17__.CommonLoggerCategory),
|
|
79380
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
79381
|
-
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */
|
|
79382
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
79383
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
79703
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_145__.CompositeTileHeader),
|
|
79704
|
+
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_28__.ConcreteEntityTypes),
|
|
79705
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.ContentFlags),
|
|
79706
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.ContentIdProvider),
|
|
79384
79707
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModel),
|
|
79385
79708
|
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModelProps),
|
|
79386
79709
|
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModels),
|
|
79387
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
79710
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.CurrentImdlVersion),
|
|
79388
79711
|
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.CutStyle),
|
|
79389
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
79390
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
79391
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
79392
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
79393
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
79394
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
79395
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
79396
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
79397
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
79712
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbQueryError),
|
|
79713
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbRequestKind),
|
|
79714
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbResponseKind),
|
|
79715
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbResponseStatus),
|
|
79716
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.DbResult),
|
|
79717
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbValueFormat),
|
|
79718
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_89__.DefaultSupportedTypes),
|
|
79719
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__.DevToolsRpcInterface),
|
|
79720
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__.DevToolsStatsOptions),
|
|
79398
79721
|
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyle3dSettings),
|
|
79399
79722
|
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyleSettings),
|
|
79400
79723
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.DomainOptions),
|
|
79401
79724
|
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECJsNames),
|
|
79402
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
79725
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__.ECSqlReader),
|
|
79403
79726
|
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlSystemProperty),
|
|
79404
79727
|
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlValueType),
|
|
79405
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
79406
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
79407
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
79408
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
79409
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
79410
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
79411
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
79412
|
-
/* harmony export */ "EntityMetaData": () => (/* reexport safe */
|
|
79413
|
-
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */
|
|
79414
|
-
/* harmony export */ "Environment": () => (/* reexport safe */
|
|
79415
|
-
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */
|
|
79416
|
-
/* harmony export */ "Feature": () => (/* reexport safe */
|
|
79417
|
-
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */
|
|
79418
|
-
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */
|
|
79419
|
-
/* harmony export */ "FeatureGates": () => (/* reexport safe */
|
|
79420
|
-
/* harmony export */ "FeatureIndex": () => (/* reexport safe */
|
|
79421
|
-
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */
|
|
79422
|
-
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */
|
|
79423
|
-
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */
|
|
79424
|
-
/* harmony export */ "FeatureTable": () => (/* reexport safe */
|
|
79425
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
79426
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
79427
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
79428
|
-
/* harmony export */ "FontMap": () => (/* reexport safe */
|
|
79429
|
-
/* harmony export */ "FontType": () => (/* reexport safe */
|
|
79430
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
79431
|
-
/* harmony export */ "Frustum": () => (/* reexport safe */
|
|
79432
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
79433
|
-
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */
|
|
79434
|
-
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */
|
|
79435
|
-
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */
|
|
79436
|
-
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */
|
|
79437
|
-
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */
|
|
79438
|
-
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */
|
|
79439
|
-
/* harmony export */ "GeographicCRS": () => (/* reexport safe */
|
|
79440
|
-
/* harmony export */ "GeometryClass": () => (/* reexport safe */
|
|
79441
|
-
/* harmony export */ "GeometryParams": () => (/* reexport safe */
|
|
79442
|
-
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */
|
|
79443
|
-
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */
|
|
79444
|
-
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */
|
|
79445
|
-
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */
|
|
79446
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
79728
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Easing),
|
|
79729
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_63__.EcefLocation),
|
|
79730
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.EdgeArgs),
|
|
79731
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.ElementGeometry),
|
|
79732
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__.ElementGeometryChange),
|
|
79733
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.ElementGeometryOpcode),
|
|
79734
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_73__.EmptyLocalization),
|
|
79735
|
+
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.EntityMetaData),
|
|
79736
|
+
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_28__.EntityReferenceSet),
|
|
79737
|
+
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_29__.Environment),
|
|
79738
|
+
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.ExternalSourceAttachmentRole),
|
|
79739
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.Feature),
|
|
79740
|
+
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureAppearance),
|
|
79741
|
+
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureAppearanceProvider),
|
|
79742
|
+
/* harmony export */ "FeatureGates": () => (/* reexport safe */ _FeatureGates__WEBPACK_IMPORTED_MODULE_30__.FeatureGates),
|
|
79743
|
+
/* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.FeatureIndex),
|
|
79744
|
+
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.FeatureIndexType),
|
|
79745
|
+
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_26__.FeatureOverrideType),
|
|
79746
|
+
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureOverrides),
|
|
79747
|
+
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.FeatureTable),
|
|
79748
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.FeatureTableHeader),
|
|
79749
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.FillDisplay),
|
|
79750
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_56__.FillFlags),
|
|
79751
|
+
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_34__.FontMap),
|
|
79752
|
+
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_34__.FontType),
|
|
79753
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.FresnelSettings),
|
|
79754
|
+
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.Frustum),
|
|
79755
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_43__.FrustumPlanes),
|
|
79756
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__.GeoCoordStatus),
|
|
79757
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeocentricTransform),
|
|
79758
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticDatum),
|
|
79759
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_45__.GeodeticEllipsoid),
|
|
79760
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticTransform),
|
|
79761
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticTransformPath),
|
|
79762
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.GeographicCRS),
|
|
79763
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.GeometryClass),
|
|
79764
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.GeometryParams),
|
|
79765
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamBuilder),
|
|
79766
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamFlags),
|
|
79767
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamIterator),
|
|
79768
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_54__.GeometrySummaryVerbosity),
|
|
79769
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GlbHeader),
|
|
79447
79770
|
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.GlobeMode),
|
|
79448
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
79449
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
79450
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
79451
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
79452
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
79453
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
79454
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
79455
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
79456
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
79457
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
79458
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
79459
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
79460
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
79461
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
79462
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
79463
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
79464
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
79465
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
79466
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
79467
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
79468
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
79469
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
79470
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
79471
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
79472
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
79473
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
79474
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
79475
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
79476
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
79477
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
79478
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
79479
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
79480
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
79481
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
79482
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
79483
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
79484
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
79485
|
-
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */
|
|
79486
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
79487
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
79488
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
79489
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
79490
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
79491
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
79492
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
79493
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
79494
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
79495
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
79496
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
79497
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
79498
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
79499
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
79500
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
79501
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
79502
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
79503
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
79504
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
79505
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
79506
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
79507
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
79508
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
79771
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GltfV2ChunkTypes),
|
|
79772
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GltfVersions),
|
|
79773
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_55__.Gradient),
|
|
79774
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_56__.GraphicParams),
|
|
79775
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GridFileDefinition),
|
|
79776
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GridFileTransform),
|
|
79777
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.GridOrientationType),
|
|
79778
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_57__.GroundPlane),
|
|
79779
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_60__.HSLColor),
|
|
79780
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_61__.HSVColor),
|
|
79781
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_61__.HSVConstants),
|
|
79782
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__.Helmert2DWithZOffset),
|
|
79783
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.HemisphereLights),
|
|
79784
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_58__.HiddenLine),
|
|
79785
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_59__.Hilite),
|
|
79786
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.HorizontalCRS),
|
|
79787
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.HorizontalCRSExtent),
|
|
79788
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_148__.I3dmHeader),
|
|
79789
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_63__.IModel),
|
|
79790
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.IModelError),
|
|
79791
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__.IModelNotFoundResponse),
|
|
79792
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__.IModelReadRpcInterface),
|
|
79793
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.IModelStatus),
|
|
79794
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_99__.IModelTileRpcInterface),
|
|
79795
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_65__.IModelVersion),
|
|
79796
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.INSTANCE),
|
|
79797
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageBuffer),
|
|
79798
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageBufferFormat),
|
|
79799
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__.ImageGraphic),
|
|
79800
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__.ImageGraphicCorners),
|
|
79801
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.ImageMapLayerSettings),
|
|
79802
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageSource),
|
|
79803
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageSourceFormat),
|
|
79804
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.ImdlFlags),
|
|
79805
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.ImdlHeader),
|
|
79806
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.InternetConnectivityStatus),
|
|
79807
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Interpolation),
|
|
79808
|
+
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__.IpcAppChannel),
|
|
79809
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_69__.IpcSession),
|
|
79810
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocket),
|
|
79811
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketBackend),
|
|
79812
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketFrontend),
|
|
79813
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketMessage),
|
|
79814
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketMessageType),
|
|
79815
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_68__.IpcWebSocketTransport),
|
|
79816
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.LightSettings),
|
|
79817
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_72__.LinePixels),
|
|
79818
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_48__.LineStyle),
|
|
79819
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__.MapImagerySettings),
|
|
79820
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.MapLayerSettings),
|
|
79821
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.MapSubLayerSettings),
|
|
79822
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.MarshalingBinaryMarker),
|
|
79823
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_76__.MassPropertiesOperation),
|
|
79824
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshEdge),
|
|
79825
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshEdges),
|
|
79826
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshPolyline),
|
|
79827
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshPolylineList),
|
|
79828
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__.ModelClipGroup),
|
|
79829
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__.ModelClipGroups),
|
|
79830
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__.ModelGeometryChanges),
|
|
79831
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.ModelMapLayerSettings),
|
|
79509
79832
|
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.MonochromeMode),
|
|
79510
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
79511
|
-
/* harmony export */ "NonUniformColor": () => (/* reexport safe */
|
|
79512
|
-
/* harmony export */ "Npc": () => (/* reexport safe */
|
|
79513
|
-
/* harmony export */ "NpcCenter": () => (/* reexport safe */
|
|
79514
|
-
/* harmony export */ "NpcCorners": () => (/* reexport safe */
|
|
79515
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
79516
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
79517
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
79518
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
79519
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
79520
|
-
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */
|
|
79521
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
79522
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
79523
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
79524
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
79525
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
79526
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
79527
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
79528
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
79529
|
-
/* harmony export */ "PolylineData": () => (/* reexport safe */
|
|
79530
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
79531
|
-
/* harmony export */ "PolylineFlags": () => (/* reexport safe */
|
|
79532
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
79533
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
79534
|
-
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */
|
|
79833
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.NoContentError),
|
|
79834
|
+
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.NonUniformColor),
|
|
79835
|
+
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.Npc),
|
|
79836
|
+
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.NpcCenter),
|
|
79837
|
+
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.NpcCorners),
|
|
79838
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.OPERATION),
|
|
79839
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__.OctEncodedNormal),
|
|
79840
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__.OctEncodedNormalPair),
|
|
79841
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.OverriddenBy),
|
|
79842
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.POLICY),
|
|
79843
|
+
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.PackedFeatureTable),
|
|
79844
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__.Placement2d),
|
|
79845
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__.Placement3d),
|
|
79846
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_86__.PlanProjectionSettings),
|
|
79847
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskMode),
|
|
79848
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskPriority),
|
|
79849
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskSettings),
|
|
79850
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_150__.PntsHeader),
|
|
79851
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__.PointCloudDisplaySettings),
|
|
79852
|
+
/* harmony export */ "PolylineData": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineData),
|
|
79853
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineEdgeArgs),
|
|
79854
|
+
/* harmony export */ "PolylineFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineFlags),
|
|
79855
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineTypeFlags),
|
|
79856
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.PositionalVectorTransform),
|
|
79857
|
+
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.PrimitiveTypeCode),
|
|
79535
79858
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.ProfileOptions),
|
|
79536
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
79537
|
-
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */
|
|
79538
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
79539
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
79540
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
79541
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
79542
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
79543
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
79544
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
79545
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
79546
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
79547
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
79548
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
79549
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
79550
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
79551
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
79552
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
79553
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
79554
|
-
/* harmony export */ "Rank": () => (/* reexport safe */
|
|
79859
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.Projection),
|
|
79860
|
+
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.PropertyMetaData),
|
|
79861
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__.PropertyMetaDataMap),
|
|
79862
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QParams2d),
|
|
79863
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QParams3d),
|
|
79864
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2d),
|
|
79865
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dBuffer),
|
|
79866
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dBufferBuilder),
|
|
79867
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dList),
|
|
79868
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3d),
|
|
79869
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dBuffer),
|
|
79870
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dBufferBuilder),
|
|
79871
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dList),
|
|
79872
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.Quantization),
|
|
79873
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryBinder),
|
|
79874
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryOptionsBuilder),
|
|
79875
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryRowFormat),
|
|
79876
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.REGISTRY),
|
|
79877
|
+
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.Rank),
|
|
79555
79878
|
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataFormat),
|
|
79556
79879
|
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataProvider),
|
|
79557
79880
|
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataSourceKey),
|
|
79558
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
79559
|
-
/* harmony export */ "RelatedElement": () => (/* reexport safe */
|
|
79560
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
79561
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
79562
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
79563
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
79564
|
-
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */
|
|
79565
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
79566
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
79567
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
79568
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
79569
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
79570
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
79571
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
79572
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
79573
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
79574
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
79575
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
79576
|
-
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */
|
|
79577
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
79578
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
79579
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
79580
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
79581
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
79582
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
79583
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
79584
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
79585
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
79586
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
79587
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
79588
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
79589
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
79590
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
79591
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
79592
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
79593
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
79594
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
79595
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
79596
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
79597
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
79598
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
79599
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
79600
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
79601
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
79602
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
79603
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
79604
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
79881
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__.RealityModelDisplaySettings),
|
|
79882
|
+
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.RelatedElement),
|
|
79883
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_92__.RenderMaterial),
|
|
79884
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_122__.RenderMode),
|
|
79885
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_93__.RenderSchedule),
|
|
79886
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_94__.RenderTexture),
|
|
79887
|
+
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.RepositoryStatus),
|
|
79888
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.ResponseLike),
|
|
79889
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_95__.RgbColor),
|
|
79890
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcConfiguration),
|
|
79891
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcContentType),
|
|
79892
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcControlChannel),
|
|
79893
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcControlResponse),
|
|
79894
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDefaultConfiguration),
|
|
79895
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDirectProtocol),
|
|
79896
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDirectRequest),
|
|
79897
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcEndpoint),
|
|
79898
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_103__.RpcInterface),
|
|
79899
|
+
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.RpcInterfaceStatus),
|
|
79900
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_126__.RpcInvocation),
|
|
79901
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_104__.RpcManager),
|
|
79902
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.RpcMarshaling),
|
|
79903
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_140__.RpcMultipart),
|
|
79904
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcNotFoundResponse),
|
|
79905
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_139__.RpcOpenAPIDescription),
|
|
79906
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__.RpcOperation),
|
|
79907
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__.RpcOperationPolicy),
|
|
79908
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_130__.RpcPendingQueue),
|
|
79909
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcPendingResponse),
|
|
79910
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcProtocol),
|
|
79911
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcProtocolEvent),
|
|
79912
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcProtocolVersion),
|
|
79913
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushChannel),
|
|
79914
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushConnection),
|
|
79915
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushService),
|
|
79916
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushSubscription),
|
|
79917
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushTransport),
|
|
79918
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.RpcRegistry),
|
|
79919
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.RpcRequest),
|
|
79920
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcRequestEvent),
|
|
79921
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcRequestFulfillment),
|
|
79922
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcRequestStatus),
|
|
79923
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcResponseCacheControl),
|
|
79924
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcRoutingMap),
|
|
79925
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_135__.RpcRoutingToken),
|
|
79926
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.RpcSerializedValue),
|
|
79927
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_127__.RpcSessionInvocation),
|
|
79605
79928
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SchemaState),
|
|
79606
|
-
/* harmony export */ "SectionType": () => (/* reexport safe */
|
|
79607
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
79608
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
79609
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
79610
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
79611
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
79612
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
79613
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
79614
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
79615
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
79616
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
79617
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
79618
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
79619
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
79620
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
79621
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
79622
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
79623
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
79624
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
79929
|
+
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.SectionType),
|
|
79930
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ServerError),
|
|
79931
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ServerTimeoutError),
|
|
79932
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.SilhouetteEdgeArgs),
|
|
79933
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyBox),
|
|
79934
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyBoxImageType),
|
|
79935
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyCube),
|
|
79936
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyGradient),
|
|
79937
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkySphere),
|
|
79938
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_100__.SnapshotIModelRpcInterface),
|
|
79939
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.SolarLight),
|
|
79940
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_109__.SolarShadowSettings),
|
|
79941
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifier),
|
|
79942
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierFlags),
|
|
79943
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierInsideDisplay),
|
|
79944
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierOutsideDisplay),
|
|
79945
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifiers),
|
|
79946
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_111__.SubCategoryAppearance),
|
|
79947
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_112__.SubCategoryOverride),
|
|
79625
79948
|
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SyncMode),
|
|
79626
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
79627
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
79628
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
79629
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
79630
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
79631
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
79632
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
79633
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
79634
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
79635
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
79636
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
79637
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
79638
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
79639
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
79640
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
79641
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
79642
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
79643
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
79644
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
79645
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
79646
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
79647
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
79648
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
79649
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
79650
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
79651
|
-
/* harmony export */ "TypeDefinition": () => (/* reexport safe */
|
|
79949
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__.TerrainHeightOriginMode),
|
|
79950
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__.TerrainSettings),
|
|
79951
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_101__.TestRpcManager),
|
|
79952
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_51__.TextString),
|
|
79953
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_77__.TextureMapUnits),
|
|
79954
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_114__.TextureMapping),
|
|
79955
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_115__.TextureTransparency),
|
|
79956
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplay),
|
|
79957
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplayMode),
|
|
79958
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensor),
|
|
79959
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensorSettings),
|
|
79960
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientColorScheme),
|
|
79961
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientMode),
|
|
79962
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientSettings),
|
|
79963
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_118__.TileContentSource),
|
|
79964
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileFormat),
|
|
79965
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileHeader),
|
|
79966
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TileMetadataReader),
|
|
79967
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TileOptions),
|
|
79968
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileReadError),
|
|
79969
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileReadStatus),
|
|
79970
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TreeFlags),
|
|
79971
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Tween),
|
|
79972
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Tweens),
|
|
79973
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_120__.TxnAction),
|
|
79974
|
+
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.TypeDefinition),
|
|
79652
79975
|
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_8__.TypeOfChange),
|
|
79653
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
79654
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
79655
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
79656
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
79657
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
79658
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
79659
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
79660
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
79661
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
79662
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
79663
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
79664
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
79665
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
79666
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
79667
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
79668
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
79669
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
79670
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
79671
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
79672
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
79673
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
79674
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
79675
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
79676
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
79677
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
79678
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
79679
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
79680
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
79681
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
79682
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
79683
|
-
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */
|
|
79684
|
-
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */
|
|
79685
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
79686
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
79687
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
79688
|
-
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */
|
|
79689
|
-
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */
|
|
79690
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
79691
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
79692
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
79693
|
-
/* harmony export */ "
|
|
79694
|
-
/* harmony export */ "
|
|
79976
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.VerticalCRS),
|
|
79977
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.ViewDetails),
|
|
79978
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.ViewDetails3d),
|
|
79979
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_122__.ViewFlags),
|
|
79980
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.WEB_RPC_CONSTANTS),
|
|
79981
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_143__.WebAppRpcLogging),
|
|
79982
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_141__.WebAppRpcProtocol),
|
|
79983
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_142__.WebAppRpcRequest),
|
|
79984
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__.WhiteOnWhiteReversalSettings),
|
|
79985
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_102__.WipRpcInterface),
|
|
79986
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.XyzRotation),
|
|
79987
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.aggregateLoad),
|
|
79988
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.bisectTileRange2d),
|
|
79989
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.bisectTileRange3d),
|
|
79990
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarAngles),
|
|
79991
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarDirection),
|
|
79992
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarDirectionFromAngles),
|
|
79993
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSunriseOrSunset),
|
|
79994
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.compareIModelTileTreeIds),
|
|
79995
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeChildTileProps),
|
|
79996
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeChildTileRanges),
|
|
79997
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeTileChordTolerance),
|
|
79998
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.defaultTileOptions),
|
|
79999
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.getMaximumMajorTileFormatVersion),
|
|
80000
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__.getPullChangesIpcChannel),
|
|
80001
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_118__.getTileObjectReference),
|
|
80002
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.iModelTileTreeIdToString),
|
|
80003
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_66__.iTwinChannel),
|
|
80004
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.initializeRpcRequest),
|
|
80005
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.isKnownTileFormat),
|
|
80006
|
+
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.isPlacement2dProps),
|
|
80007
|
+
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.isPlacement3dProps),
|
|
80008
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.isPowerOfTwo),
|
|
80009
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.isValidImageSourceFormat),
|
|
80010
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__.mapToGeoServiceStatus),
|
|
80011
|
+
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.nativeAppChannel),
|
|
80012
|
+
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.nativeAppNotify),
|
|
80013
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.nextHighestPowerOfTwo),
|
|
80014
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.nextPoint3d64FromByteStream),
|
|
80015
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.parseTileTreeIdAndContentId),
|
|
80016
|
+
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_24__.readElementMeshes),
|
|
80017
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.readTileContentDescription),
|
|
80018
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.tileFormatFromNumber)
|
|
79695
80019
|
/* harmony export */ });
|
|
79696
80020
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
79697
80021
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -79717,135 +80041,136 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79717
80041
|
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
79718
80042
|
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
79719
80043
|
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
79720
|
-
/* harmony import */ var
|
|
79721
|
-
/* harmony import */ var
|
|
79722
|
-
/* harmony import */ var
|
|
79723
|
-
/* harmony import */ var
|
|
79724
|
-
/* harmony import */ var
|
|
79725
|
-
/* harmony import */ var
|
|
79726
|
-
/* harmony import */ var
|
|
79727
|
-
/* harmony import */ var
|
|
79728
|
-
/* harmony import */ var
|
|
79729
|
-
/* harmony import */ var
|
|
79730
|
-
/* harmony import */ var
|
|
79731
|
-
/* harmony import */ var
|
|
79732
|
-
/* harmony import */ var
|
|
79733
|
-
/* harmony import */ var
|
|
79734
|
-
/* harmony import */ var
|
|
79735
|
-
/* harmony import */ var
|
|
79736
|
-
/* harmony import */ var
|
|
79737
|
-
/* harmony import */ var
|
|
79738
|
-
/* harmony import */ var
|
|
79739
|
-
/* harmony import */ var
|
|
79740
|
-
/* harmony import */ var
|
|
79741
|
-
/* harmony import */ var
|
|
79742
|
-
/* harmony import */ var
|
|
79743
|
-
/* harmony import */ var
|
|
79744
|
-
/* harmony import */ var
|
|
79745
|
-
/* harmony import */ var
|
|
79746
|
-
/* harmony import */ var
|
|
79747
|
-
/* harmony import */ var
|
|
79748
|
-
/* harmony import */ var
|
|
79749
|
-
/* harmony import */ var
|
|
79750
|
-
/* harmony import */ var
|
|
79751
|
-
/* harmony import */ var
|
|
79752
|
-
/* harmony import */ var
|
|
79753
|
-
/* harmony import */ var
|
|
79754
|
-
/* harmony import */ var
|
|
79755
|
-
/* harmony import */ var
|
|
79756
|
-
/* harmony import */ var
|
|
79757
|
-
/* harmony import */ var
|
|
79758
|
-
/* harmony import */ var
|
|
79759
|
-
/* harmony import */ var
|
|
79760
|
-
/* harmony import */ var
|
|
79761
|
-
/* harmony import */ var
|
|
79762
|
-
/* harmony import */ var
|
|
79763
|
-
/* harmony import */ var
|
|
79764
|
-
/* harmony import */ var
|
|
79765
|
-
/* harmony import */ var
|
|
79766
|
-
/* harmony import */ var
|
|
79767
|
-
/* harmony import */ var
|
|
79768
|
-
/* harmony import */ var
|
|
79769
|
-
/* harmony import */ var
|
|
79770
|
-
/* harmony import */ var
|
|
79771
|
-
/* harmony import */ var
|
|
79772
|
-
/* harmony import */ var
|
|
79773
|
-
/* harmony import */ var
|
|
79774
|
-
/* harmony import */ var
|
|
79775
|
-
/* harmony import */ var
|
|
79776
|
-
/* harmony import */ var
|
|
79777
|
-
/* harmony import */ var
|
|
79778
|
-
/* harmony import */ var
|
|
79779
|
-
/* harmony import */ var
|
|
79780
|
-
/* harmony import */ var
|
|
79781
|
-
/* harmony import */ var
|
|
79782
|
-
/* harmony import */ var
|
|
79783
|
-
/* harmony import */ var
|
|
79784
|
-
/* harmony import */ var
|
|
79785
|
-
/* harmony import */ var
|
|
79786
|
-
/* harmony import */ var
|
|
79787
|
-
/* harmony import */ var
|
|
79788
|
-
/* harmony import */ var
|
|
79789
|
-
/* harmony import */ var
|
|
79790
|
-
/* harmony import */ var
|
|
79791
|
-
/* harmony import */ var
|
|
79792
|
-
/* harmony import */ var
|
|
79793
|
-
/* harmony import */ var
|
|
79794
|
-
/* harmony import */ var
|
|
79795
|
-
/* harmony import */ var
|
|
79796
|
-
/* harmony import */ var
|
|
79797
|
-
/* harmony import */ var
|
|
79798
|
-
/* harmony import */ var
|
|
79799
|
-
/* harmony import */ var
|
|
79800
|
-
/* harmony import */ var
|
|
79801
|
-
/* harmony import */ var
|
|
79802
|
-
/* harmony import */ var
|
|
79803
|
-
/* harmony import */ var
|
|
79804
|
-
/* harmony import */ var
|
|
79805
|
-
/* harmony import */ var
|
|
79806
|
-
/* harmony import */ var
|
|
79807
|
-
/* harmony import */ var
|
|
79808
|
-
/* harmony import */ var
|
|
79809
|
-
/* harmony import */ var
|
|
79810
|
-
/* harmony import */ var
|
|
79811
|
-
/* harmony import */ var
|
|
79812
|
-
/* harmony import */ var
|
|
79813
|
-
/* harmony import */ var
|
|
79814
|
-
/* harmony import */ var
|
|
79815
|
-
/* harmony import */ var
|
|
79816
|
-
/* harmony import */ var
|
|
79817
|
-
/* harmony import */ var
|
|
79818
|
-
/* harmony import */ var
|
|
79819
|
-
/* harmony import */ var
|
|
79820
|
-
/* harmony import */ var
|
|
79821
|
-
/* harmony import */ var
|
|
79822
|
-
/* harmony import */ var
|
|
79823
|
-
/* harmony import */ var
|
|
79824
|
-
/* harmony import */ var
|
|
79825
|
-
/* harmony import */ var
|
|
79826
|
-
/* harmony import */ var
|
|
79827
|
-
/* harmony import */ var
|
|
79828
|
-
/* harmony import */ var
|
|
79829
|
-
/* harmony import */ var
|
|
79830
|
-
/* harmony import */ var
|
|
79831
|
-
/* harmony import */ var
|
|
79832
|
-
/* harmony import */ var
|
|
79833
|
-
/* harmony import */ var
|
|
79834
|
-
/* harmony import */ var
|
|
79835
|
-
/* harmony import */ var
|
|
79836
|
-
/* harmony import */ var
|
|
79837
|
-
/* harmony import */ var
|
|
79838
|
-
/* harmony import */ var
|
|
79839
|
-
/* harmony import */ var
|
|
79840
|
-
/* harmony import */ var
|
|
79841
|
-
/* harmony import */ var
|
|
79842
|
-
/* harmony import */ var
|
|
79843
|
-
/* harmony import */ var
|
|
79844
|
-
/* harmony import */ var
|
|
79845
|
-
/* harmony import */ var
|
|
79846
|
-
/* harmony import */ var
|
|
79847
|
-
/* harmony import */ var
|
|
79848
|
-
/* harmony import */ var
|
|
80044
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
80045
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
80046
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
80047
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
80048
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
80049
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
80050
|
+
/* harmony import */ var _FeatureGates__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./FeatureGates */ "../../core/common/lib/esm/FeatureGates.js");
|
|
80051
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
80052
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
80053
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
80054
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
80055
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
80056
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
80057
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
80058
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
80059
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
80060
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
80061
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
80062
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
80063
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
80064
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
80065
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
80066
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
80067
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
80068
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
80069
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
80070
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
80071
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
80072
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
80073
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
80074
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
80075
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
80076
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
80077
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
80078
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
80079
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
80080
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
80081
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
80082
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
80083
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
80084
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
80085
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
80086
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
80087
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
80088
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
80089
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
80090
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
80091
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
80092
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
80093
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
80094
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
80095
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
80096
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
80097
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
80098
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
80099
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
80100
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
80101
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
80102
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
80103
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
80104
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
80105
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
80106
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
80107
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
80108
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
80109
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
80110
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
80111
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
80112
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
80113
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
80114
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
80115
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
80116
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
80117
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
80118
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
80119
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
80120
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
80121
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
80122
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
80123
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
80124
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
80125
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
80126
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
80127
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
80128
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
80129
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
80130
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
80131
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
80132
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
80133
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
80134
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
80135
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
80136
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
80137
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
80138
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
80139
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
80140
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
80141
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
80142
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
80143
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
80144
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
80145
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
80146
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
80147
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
80148
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
80149
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
80150
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
80151
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
80152
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
80153
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
80154
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
80155
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
80156
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
80157
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
80158
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
80159
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
80160
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
80161
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
80162
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
80163
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
80164
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
80165
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
80166
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
80167
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
80168
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
80169
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
80170
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
80171
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
80172
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
80173
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
79849
80174
|
/*---------------------------------------------------------------------------------------------
|
|
79850
80175
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
79851
80176
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -80001,6 +80326,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
80001
80326
|
|
|
80002
80327
|
|
|
80003
80328
|
|
|
80329
|
+
|
|
80004
80330
|
|
|
80005
80331
|
|
|
80006
80332
|
/** @docs-package-description
|
|
@@ -89084,11 +89410,14 @@ class IModelReadRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
89084
89410
|
async loadElementProps(_iModelToken, _elementIdentifier, _options) {
|
|
89085
89411
|
return this.forward(arguments);
|
|
89086
89412
|
}
|
|
89413
|
+
async generateElementMeshes(_iModelToken, _props) {
|
|
89414
|
+
return this.forward(arguments);
|
|
89415
|
+
}
|
|
89087
89416
|
}
|
|
89088
89417
|
/** The immutable name of the interface. */
|
|
89089
89418
|
IModelReadRpcInterface.interfaceName = "IModelReadRpcInterface";
|
|
89090
89419
|
/** The semantic version of the interface. */
|
|
89091
|
-
IModelReadRpcInterface.interfaceVersion = "3.
|
|
89420
|
+
IModelReadRpcInterface.interfaceVersion = "3.5.0";
|
|
89092
89421
|
__decorate([
|
|
89093
89422
|
_core_RpcOperation__WEBPACK_IMPORTED_MODULE_1__.RpcOperation.allowResponseCaching(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable)
|
|
89094
89423
|
], IModelReadRpcInterface.prototype, "getConnectionProps", null);
|
|
@@ -89747,7 +90076,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
89747
90076
|
/* harmony export */ "RpcNotFoundResponse": () => (/* binding */ RpcNotFoundResponse),
|
|
89748
90077
|
/* harmony export */ "RpcPendingResponse": () => (/* binding */ RpcPendingResponse)
|
|
89749
90078
|
/* harmony export */ });
|
|
89750
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
90079
|
+
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs");
|
|
89751
90080
|
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
89752
90081
|
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
89753
90082
|
/* harmony import */ var _RpcConfiguration__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
@@ -105590,11 +105919,27 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
105590
105919
|
/** Request element mass properties from the backend.
|
|
105591
105920
|
* @note For better performance use [[getMassPropertiesPerCandidate]] when called from a loop with identical operations and a single candidate per iteration.
|
|
105592
105921
|
*/
|
|
105593
|
-
async getMassProperties(requestProps) {
|
|
105922
|
+
async getMassProperties(requestProps) {
|
|
105923
|
+
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassProperties(this.getRpcProps(), requestProps);
|
|
105924
|
+
}
|
|
105594
105925
|
/** Request mass properties for multiple elements from the backend. */
|
|
105595
105926
|
async getMassPropertiesPerCandidate(requestProps) {
|
|
105596
105927
|
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassPropertiesPerCandidate(this.getRpcProps(), requestProps);
|
|
105597
105928
|
}
|
|
105929
|
+
/** Produce encoded [Polyface]($core-geometry)s from the geometry stream of a [GeometricElement]($backend).
|
|
105930
|
+
* A polyface is produced for each geometric entry in the element's geometry stream, excluding geometry like open curves that can't be converted into polyfaces.
|
|
105931
|
+
* The polyfaces can be decoded using [readElementMeshes]($common).
|
|
105932
|
+
* Symbology, UV parameters, and normal vectors are not included in the result.
|
|
105933
|
+
* @param requestProps A description of how to produce the polyfaces and from which element to obtain them.
|
|
105934
|
+
* @returns an encoded list of polyfaces that can be decoded by [readElementMeshes]($common).
|
|
105935
|
+
* @throws Error if [ElementMeshRequestProps.source]($common) does not refer to a [GeometricElement]($backend).
|
|
105936
|
+
* @note This function is intended to support limited analysis of an element's geometry as a mesh. It is not intended for producing graphics.
|
|
105937
|
+
* @see [[TileAdmin.requestElementGraphics]] to obtain meshes appropriate for display.
|
|
105938
|
+
* @beta
|
|
105939
|
+
*/
|
|
105940
|
+
async generateElementMeshes(requestProps) {
|
|
105941
|
+
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).generateElementMeshes(this.getRpcProps(), requestProps);
|
|
105942
|
+
}
|
|
105598
105943
|
/** Convert a point in this iModel's Spatial coordinates to a [[Cartographic]] using the Geographic location services for this IModelConnection.
|
|
105599
105944
|
* @param spatial A point in the iModel's spatial coordinates
|
|
105600
105945
|
* @param result If defined, use this for output
|
|
@@ -113781,6 +114126,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
113781
114126
|
/* harmony export */ "ViewPose3d": () => (/* binding */ ViewPose3d)
|
|
113782
114127
|
/* harmony export */ });
|
|
113783
114128
|
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
114129
|
+
/* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ViewState */ "../../core/frontend/lib/esm/ViewState.js");
|
|
113784
114130
|
/*---------------------------------------------------------------------------------------------
|
|
113785
114131
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
113786
114132
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -113789,8 +114135,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
113789
114135
|
* @module Views
|
|
113790
114136
|
*/
|
|
113791
114137
|
|
|
113792
|
-
|
|
113793
|
-
|
|
114138
|
+
|
|
114139
|
+
/** The "pose" for a [View]($docs/learning/frontend/views#viewstate-parameters) describing the viewed area or volume, depending upon whether
|
|
114140
|
+
* the view is 2d or 3d.
|
|
114141
|
+
* @see [[ViewState.savePose]] to extract a pose from a view and [[ViewState.applyPose]] to apply a pose to a view.
|
|
113794
114142
|
* @note a ViewPose is immutable.
|
|
113795
114143
|
* @public
|
|
113796
114144
|
* @extensions
|
|
@@ -113799,15 +114147,22 @@ class ViewPose {
|
|
|
113799
114147
|
constructor(cameraOn) {
|
|
113800
114148
|
this.cameraOn = cameraOn;
|
|
113801
114149
|
}
|
|
114150
|
+
/** Computes the center of the viewed volume. */
|
|
113802
114151
|
get center() {
|
|
113803
114152
|
const delta = this.rotation.multiplyTransposeVector(this.extents);
|
|
113804
114153
|
return this.origin.plusScaled(delta, 0.5);
|
|
113805
114154
|
}
|
|
114155
|
+
/** Returns the target point of the view. This is the same as [[center]] unless [[cameraOn]] is `true`. */
|
|
113806
114156
|
get target() { return this.center; }
|
|
114157
|
+
/** Computes the Z vector of the [[rotation]] matrix. */
|
|
113807
114158
|
get zVec() { return this.rotation.getRow(2); }
|
|
113808
114159
|
}
|
|
113809
|
-
/**
|
|
114160
|
+
/** The "pose" for a [[ViewState3d]], including information about the view's [Camera]($common) if it is enabled.
|
|
114161
|
+
* @public
|
|
114162
|
+
* @extensions
|
|
114163
|
+
*/
|
|
113810
114164
|
class ViewPose3d extends ViewPose {
|
|
114165
|
+
/** Construct a pose from the specified 3d view. */
|
|
113811
114166
|
constructor(view) {
|
|
113812
114167
|
super(view.isCameraOn);
|
|
113813
114168
|
this.origin = view.origin.clone();
|
|
@@ -113815,17 +114170,24 @@ class ViewPose3d extends ViewPose {
|
|
|
113815
114170
|
this.rotation = view.rotation.clone();
|
|
113816
114171
|
this.camera = view.camera.clone();
|
|
113817
114172
|
}
|
|
114173
|
+
/** @internal override */
|
|
113818
114174
|
get target() {
|
|
113819
114175
|
return this.cameraOn ? this.camera.eye.plusScaled(this.rotation.getRow(2), -1.0 * this.camera.focusDist) : this.center;
|
|
113820
114176
|
}
|
|
114177
|
+
/** @internal override */
|
|
113821
114178
|
equal(other) {
|
|
114179
|
+
if (!(other instanceof ViewPose3d))
|
|
114180
|
+
return false;
|
|
113822
114181
|
return this.cameraOn === other.cameraOn &&
|
|
113823
114182
|
this.origin.isAlmostEqual(other.origin) &&
|
|
113824
114183
|
this.extents.isAlmostEqual(other.extents) &&
|
|
113825
114184
|
this.rotation.isAlmostEqual(other.rotation) &&
|
|
113826
114185
|
(!this.cameraOn || this.camera.equals(other.camera));
|
|
113827
114186
|
}
|
|
114187
|
+
/** @internal override */
|
|
113828
114188
|
equalState(view) {
|
|
114189
|
+
if (!(view instanceof _ViewState__WEBPACK_IMPORTED_MODULE_1__.ViewState3d))
|
|
114190
|
+
return false;
|
|
113829
114191
|
return this.cameraOn === view.isCameraOn &&
|
|
113830
114192
|
this.origin.isAlmostEqual(view.origin) &&
|
|
113831
114193
|
this.extents.isAlmostEqual(view.extents) &&
|
|
@@ -113833,26 +114195,39 @@ class ViewPose3d extends ViewPose {
|
|
|
113833
114195
|
(!this.cameraOn || this.camera.equals(view.camera));
|
|
113834
114196
|
}
|
|
113835
114197
|
}
|
|
113836
|
-
/**
|
|
114198
|
+
/** The "pose" for a [[ViewState2d]].
|
|
114199
|
+
* @public
|
|
114200
|
+
* @extensions
|
|
114201
|
+
*/
|
|
113837
114202
|
class ViewPose2d extends ViewPose {
|
|
114203
|
+
/** Construct a pose from the specified 2d view. */
|
|
113838
114204
|
constructor(view) {
|
|
113839
114205
|
super(false);
|
|
113840
|
-
this.
|
|
114206
|
+
this.origin2d = view.origin.clone();
|
|
113841
114207
|
this.delta = view.delta.clone();
|
|
113842
114208
|
this.angle = view.angle.clone();
|
|
113843
114209
|
}
|
|
114210
|
+
/** @internal override */
|
|
113844
114211
|
equal(other) {
|
|
113845
|
-
|
|
114212
|
+
if (!(other instanceof ViewPose2d))
|
|
114213
|
+
return false;
|
|
114214
|
+
return this.origin2d.isAlmostEqual(other.origin) &&
|
|
113846
114215
|
this.delta.isAlmostEqual(other.delta) &&
|
|
113847
114216
|
this.angle.isAlmostEqualNoPeriodShift(other.angle);
|
|
113848
114217
|
}
|
|
114218
|
+
/** @internal override */
|
|
113849
114219
|
equalState(view) {
|
|
113850
|
-
|
|
114220
|
+
if (!(view instanceof _ViewState__WEBPACK_IMPORTED_MODULE_1__.ViewState2d))
|
|
114221
|
+
return false;
|
|
114222
|
+
return this.origin2d.isAlmostEqual(view.origin) &&
|
|
113851
114223
|
this.delta.isAlmostEqual(view.delta) &&
|
|
113852
114224
|
this.angle.isAlmostEqualNoPeriodShift(view.angle);
|
|
113853
114225
|
}
|
|
113854
|
-
|
|
114226
|
+
/** @internal override */
|
|
114227
|
+
get origin() { return new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Point3d(this.origin2d.x, this.origin2d.y); }
|
|
114228
|
+
/** @internal override */
|
|
113855
114229
|
get extents() { return new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Vector3d(this.delta.x, this.delta.y); }
|
|
114230
|
+
/** @internal override */
|
|
113856
114231
|
get rotation() { return _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Matrix3d.createRotationAroundVector(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Vector3d.unitZ(), this.angle); }
|
|
113857
114232
|
}
|
|
113858
114233
|
|
|
@@ -115094,16 +115469,18 @@ class ViewState3d extends ViewState {
|
|
|
115094
115469
|
const index = this.details.modelClipGroups.findGroupIndex(modelId);
|
|
115095
115470
|
return -1 !== index ? this._modelClips[index] : undefined;
|
|
115096
115471
|
}
|
|
115097
|
-
/**
|
|
115472
|
+
/** Capture a copy of the viewed volume and camera parameters. */
|
|
115098
115473
|
savePose() { return new _ViewPose__WEBPACK_IMPORTED_MODULE_14__.ViewPose3d(this); }
|
|
115099
|
-
/** @internal */
|
|
115474
|
+
/** @internal override */
|
|
115100
115475
|
applyPose(val) {
|
|
115101
|
-
|
|
115102
|
-
|
|
115103
|
-
|
|
115104
|
-
|
|
115105
|
-
|
|
115106
|
-
|
|
115476
|
+
if (val instanceof _ViewPose__WEBPACK_IMPORTED_MODULE_14__.ViewPose3d) {
|
|
115477
|
+
this._cameraOn = val.cameraOn;
|
|
115478
|
+
this.setOrigin(val.origin);
|
|
115479
|
+
this.setExtents(val.extents);
|
|
115480
|
+
this.rotation.setFrom(val.rotation);
|
|
115481
|
+
this.camera.setFrom(val.camera);
|
|
115482
|
+
this._updateMaxGlobalScopeFactor();
|
|
115483
|
+
}
|
|
115107
115484
|
return this;
|
|
115108
115485
|
}
|
|
115109
115486
|
toJSON() {
|
|
@@ -115799,13 +116176,15 @@ class ViewState2d extends ViewState {
|
|
|
115799
116176
|
is3d() { return false; }
|
|
115800
116177
|
/** @internal */
|
|
115801
116178
|
isSpatialView() { return false; }
|
|
115802
|
-
/**
|
|
116179
|
+
/** Capture a copy of the viewed area. */
|
|
115803
116180
|
savePose() { return new _ViewPose__WEBPACK_IMPORTED_MODULE_14__.ViewPose2d(this); }
|
|
115804
|
-
/** @internal */
|
|
116181
|
+
/** @internal override */
|
|
115805
116182
|
applyPose(val) {
|
|
115806
|
-
|
|
115807
|
-
|
|
115808
|
-
|
|
116183
|
+
if (val instanceof _ViewPose__WEBPACK_IMPORTED_MODULE_14__.ViewPose2d) {
|
|
116184
|
+
this.setOrigin(val.origin);
|
|
116185
|
+
this.setExtents(val.delta);
|
|
116186
|
+
this.angle.setFrom(val.angle);
|
|
116187
|
+
}
|
|
115809
116188
|
return this;
|
|
115810
116189
|
}
|
|
115811
116190
|
/** Return the model for this 2d view. */
|
|
@@ -137046,6 +137425,19 @@ class MeshData {
|
|
|
137046
137425
|
if (undefined !== params.surface.textureMapping) {
|
|
137047
137426
|
this.texture = params.surface.textureMapping.texture;
|
|
137048
137427
|
this._textureAlwaysDisplayed = params.surface.textureMapping.alwaysDisplayed;
|
|
137428
|
+
if (undefined !== params.surface.material && !params.surface.material.isAtlas) {
|
|
137429
|
+
const matTM = params.surface.material.material.textureMapping;
|
|
137430
|
+
if (undefined !== matTM && undefined !== matTM.normalMapParams) {
|
|
137431
|
+
if (undefined !== matTM.normalMapParams.normalMap) {
|
|
137432
|
+
this.normalMap = matTM.normalMapParams.normalMap;
|
|
137433
|
+
}
|
|
137434
|
+
else {
|
|
137435
|
+
// If there are normal map params but the normal map is not present, use the texture as a normal map instead of a pattern map.
|
|
137436
|
+
this.normalMap = this.texture;
|
|
137437
|
+
this.texture = undefined;
|
|
137438
|
+
}
|
|
137439
|
+
}
|
|
137440
|
+
}
|
|
137049
137441
|
}
|
|
137050
137442
|
else {
|
|
137051
137443
|
this.texture = undefined;
|
|
@@ -137130,6 +137522,7 @@ class MeshGeometry extends _CachedGeometry__WEBPACK_IMPORTED_MODULE_1__.LUTGeome
|
|
|
137130
137522
|
get colorInfo() { return this.mesh.lut.colorInfo; }
|
|
137131
137523
|
get uniformColor() { return this.colorInfo.isUniform ? this.colorInfo.uniform : undefined; }
|
|
137132
137524
|
get texture() { return this.mesh.texture; }
|
|
137525
|
+
get normalMap() { return this.mesh.normalMap; }
|
|
137133
137526
|
get hasBakedLighting() { return this.mesh.hasBakedLighting; }
|
|
137134
137527
|
get lut() { return this.mesh.lut; }
|
|
137135
137528
|
get hasScalarAnimation() { return this.mesh.lut.hasScalarAnimation; }
|
|
@@ -139940,6 +140333,8 @@ var TextureUnit;
|
|
|
139940
140333
|
TextureUnit[TextureUnit["RealityMeshThematicGradient"] = WebGLRenderingContext.TEXTURE11] = "RealityMeshThematicGradient";
|
|
139941
140334
|
// Lookup table for indexed edges - used only if WebGL 2 is available.
|
|
139942
140335
|
TextureUnit[TextureUnit["EdgeLUT"] = WebGLRenderingContext.TEXTURE12] = "EdgeLUT";
|
|
140336
|
+
// Normal map texture - used only if WebGL 2 is available.
|
|
140337
|
+
TextureUnit[TextureUnit["NormalMap"] = WebGLRenderingContext.TEXTURE13] = "NormalMap";
|
|
139943
140338
|
})(TextureUnit || (TextureUnit = {}));
|
|
139944
140339
|
/** @internal */
|
|
139945
140340
|
function isPlanar(order) {
|
|
@@ -143445,7 +143840,7 @@ class VertexShaderBuilder extends ShaderBuilder {
|
|
|
143445
143840
|
*/
|
|
143446
143841
|
class FragmentShaderBuilder extends ShaderBuilder {
|
|
143447
143842
|
constructor(flags = {}) {
|
|
143448
|
-
super(
|
|
143843
|
+
super(22 /* COUNT */, flags);
|
|
143449
143844
|
this.requiresEarlyZWorkaround = false;
|
|
143450
143845
|
if (_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2)
|
|
143451
143846
|
this.addFragOutput("FragColor", -1);
|
|
@@ -143491,6 +143886,11 @@ class FragmentShaderBuilder extends ShaderBuilder {
|
|
|
143491
143886
|
prelude.addFunction("bool checkForEarlyDiscard()", checkForEarlyDiscard);
|
|
143492
143887
|
main.addline(" if (checkForEarlyDiscard()) { discard; return; }");
|
|
143493
143888
|
}
|
|
143889
|
+
const finalizeNormal = this.get(21 /* FinalizeNormal */);
|
|
143890
|
+
if (undefined !== finalizeNormal) {
|
|
143891
|
+
prelude.addFunction("vec3 finalizeNormal()", finalizeNormal);
|
|
143892
|
+
main.addline(" g_normal = finalizeNormal();");
|
|
143893
|
+
}
|
|
143494
143894
|
main.addline(" vec4 baseColor = computeBaseColor();");
|
|
143495
143895
|
const finalizeDepth = this.get(18 /* FinalizeDepth */);
|
|
143496
143896
|
if (undefined !== finalizeDepth) {
|
|
@@ -145023,6 +145423,7 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
145023
145423
|
get isLit() { return _primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_2__.SurfaceType.Lit === this.surfaceType || _primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_2__.SurfaceType.TexturedLit === this.surfaceType; }
|
|
145024
145424
|
get isTexturedType() { return _primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_2__.SurfaceType.Textured === this.surfaceType || _primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_2__.SurfaceType.TexturedLit === this.surfaceType; }
|
|
145025
145425
|
get hasTexture() { return this.isTexturedType && undefined !== this.texture; }
|
|
145426
|
+
get hasNormalMap() { return this.isLit && this.isTexturedType && undefined !== this.normalMap; }
|
|
145026
145427
|
get isGlyph() { return this.mesh.isGlyph; }
|
|
145027
145428
|
get alwaysRenderTranslucent() { return this.isGlyph; }
|
|
145028
145429
|
get isTileSection() { return undefined !== this.texture && this.texture.isTileSection; }
|
|
@@ -145139,6 +145540,9 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
145139
145540
|
useTexture(params) {
|
|
145140
145541
|
return this.wantTextures(params.target, this.hasTexture);
|
|
145141
145542
|
}
|
|
145543
|
+
useNormalMap(params) {
|
|
145544
|
+
return this.wantNormalMaps(params.target, this.hasNormalMap);
|
|
145545
|
+
}
|
|
145142
145546
|
computeSurfaceFlags(params, flags) {
|
|
145143
145547
|
const target = params.target;
|
|
145144
145548
|
const vf = target.currentViewFlags;
|
|
@@ -145146,7 +145550,6 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
145146
145550
|
flags[3 /* IgnoreMaterial */] = useMaterial ? 0 : 1;
|
|
145147
145551
|
flags[9 /* HasMaterialAtlas */] = useMaterial && this.hasMaterialAtlas ? 1 : 0;
|
|
145148
145552
|
flags[1 /* ApplyLighting */] = 0;
|
|
145149
|
-
flags[8 /* HasNormalMap */] = 0;
|
|
145150
145553
|
flags[6 /* HasColorAndNormal */] = 0;
|
|
145151
145554
|
if (this.isLit) {
|
|
145152
145555
|
flags[2 /* HasNormals */] = 1;
|
|
@@ -145163,6 +145566,7 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
145163
145566
|
flags[2 /* HasNormals */] = 0;
|
|
145164
145567
|
}
|
|
145165
145568
|
flags[0 /* HasTexture */] = this.useTexture(params) ? 1 : 0;
|
|
145569
|
+
flags[8 /* HasNormalMap */] = this.useNormalMap(params) ? 1 : 0;
|
|
145166
145570
|
// The transparency threshold controls how transparent a surface must be to allow light to pass through; more opaque surfaces cast shadows.
|
|
145167
145571
|
flags[4 /* TransparencyThreshold */] = params.target.isDrawingShadowMap ? 1 : 0;
|
|
145168
145572
|
flags[5 /* BackgroundFill */] = 0;
|
|
@@ -145209,6 +145613,17 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
145209
145613
|
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FillFlags.Always === (fill & _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FillFlags.Always);
|
|
145210
145614
|
}
|
|
145211
145615
|
}
|
|
145616
|
+
wantNormalMaps(target, normalMapExists) {
|
|
145617
|
+
if (!normalMapExists || !target.displayNormalMaps)
|
|
145618
|
+
return false;
|
|
145619
|
+
const flags = target.currentViewFlags;
|
|
145620
|
+
switch (flags.renderMode) {
|
|
145621
|
+
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RenderMode.SmoothShade:
|
|
145622
|
+
return flags.textures;
|
|
145623
|
+
default:
|
|
145624
|
+
return false;
|
|
145625
|
+
}
|
|
145626
|
+
}
|
|
145212
145627
|
}
|
|
145213
145628
|
|
|
145214
145629
|
|
|
@@ -145883,6 +146298,7 @@ class System extends _RenderSystem__WEBPACK_IMPORTED_MODULE_7__.RenderSystem {
|
|
|
145883
146298
|
textureWeight: args.textureMapping.weight,
|
|
145884
146299
|
worldMapping: args.textureMapping.worldMapping,
|
|
145885
146300
|
}));
|
|
146301
|
+
params.textureMapping.normalMapParams = args.textureMapping.normalMapParams;
|
|
145886
146302
|
}
|
|
145887
146303
|
if (args.source) {
|
|
145888
146304
|
params.key = args.source.id;
|
|
@@ -146226,6 +146642,7 @@ class Target extends _RenderTarget__WEBPACK_IMPORTED_MODULE_8__.RenderTarget {
|
|
|
146226
146642
|
this.displayRealityTilePreload = false;
|
|
146227
146643
|
this.displayRealityTileRanges = false;
|
|
146228
146644
|
this.logRealityTiles = false;
|
|
146645
|
+
this.displayNormalMaps = true;
|
|
146229
146646
|
this.freezeRealityTiles = false;
|
|
146230
146647
|
this._isDisposed = false;
|
|
146231
146648
|
this._scratchRange = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range3d();
|
|
@@ -150470,9 +150887,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
150470
150887
|
/* harmony export */ });
|
|
150471
150888
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
150472
150889
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
150473
|
-
/* harmony import */ var
|
|
150474
|
-
/* harmony import */ var
|
|
150475
|
-
/* harmony import */ var
|
|
150890
|
+
/* harmony import */ var _System__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../System */ "../../core/frontend/lib/esm/render/webgl/System.js");
|
|
150891
|
+
/* harmony import */ var _RenderFlags__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../RenderFlags */ "../../core/frontend/lib/esm/render/webgl/RenderFlags.js");
|
|
150892
|
+
/* harmony import */ var _Surface__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Surface */ "../../core/frontend/lib/esm/render/webgl/glsl/Surface.js");
|
|
150893
|
+
/* harmony import */ var _Vertex__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Vertex */ "../../core/frontend/lib/esm/render/webgl/glsl/Vertex.js");
|
|
150476
150894
|
/*---------------------------------------------------------------------------------------------
|
|
150477
150895
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
150478
150896
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -150485,6 +150903,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
150485
150903
|
|
|
150486
150904
|
|
|
150487
150905
|
|
|
150906
|
+
|
|
150488
150907
|
const initialize = `
|
|
150489
150908
|
g_anim_step = vec2(1.0) / u_animLUTParams.xy;
|
|
150490
150909
|
g_anim_center = g_anim_step * 0.5;
|
|
@@ -150640,12 +151059,12 @@ function addAnimation(vert, isSurface, isThematic) {
|
|
|
150640
151059
|
vert.addGlobal("g_anim_step", 3 /* Vec2 */);
|
|
150641
151060
|
vert.addGlobal("g_anim_center", 3 /* Vec2 */);
|
|
150642
151061
|
vert.addInitializer(initialize);
|
|
150643
|
-
vert.addFunction(
|
|
151062
|
+
vert.addFunction(_Vertex__WEBPACK_IMPORTED_MODULE_5__.unquantizePosition);
|
|
150644
151063
|
vert.addUniform("u_animLUT", 8 /* Sampler2D */, (prog) => {
|
|
150645
151064
|
prog.addGraphicUniform("u_animLUT", (uniform, params) => {
|
|
150646
151065
|
const channels = (params.geometry.asLUT).lut.auxChannels;
|
|
150647
151066
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== channels);
|
|
150648
|
-
channels.texture.bindSampler(uniform,
|
|
151067
|
+
channels.texture.bindSampler(uniform, _RenderFlags__WEBPACK_IMPORTED_MODULE_3__.TextureUnit.AuxChannelLUT);
|
|
150649
151068
|
});
|
|
150650
151069
|
});
|
|
150651
151070
|
vert.addUniform("u_animLUTParams", 4 /* Vec3 */, (prog) => {
|
|
@@ -150697,7 +151116,7 @@ function addAnimation(vert, isSurface, isThematic) {
|
|
|
150697
151116
|
});
|
|
150698
151117
|
// Normal and param
|
|
150699
151118
|
if (isSurface) {
|
|
150700
|
-
vert.addFunction(
|
|
151119
|
+
vert.addFunction(_Surface__WEBPACK_IMPORTED_MODULE_4__.octDecodeNormal);
|
|
150701
151120
|
vert.addFunction(computeAnimationFrameNormal);
|
|
150702
151121
|
vert.addFunction(computeAnimationNormal);
|
|
150703
151122
|
vert.addFunction(computeAnimationFrameParam);
|
|
@@ -150711,7 +151130,7 @@ function addAnimation(vert, isSurface, isThematic) {
|
|
|
150711
151130
|
uniform.setUniform3fv(animParams);
|
|
150712
151131
|
});
|
|
150713
151132
|
});
|
|
150714
|
-
if (isThematic === 0 /* No */) {
|
|
151133
|
+
if (isThematic === 0 /* No */ || _System__WEBPACK_IMPORTED_MODULE_2__.System.instance.capabilities.isWebGL2) {
|
|
150715
151134
|
vert.addUniform("u_animScalarParams", 4 /* Vec3 */, (prog) => {
|
|
150716
151135
|
prog.addGraphicUniform("u_animScalarParams", (uniform, params) => {
|
|
150717
151136
|
const scalars = getScalarChannel(params);
|
|
@@ -151356,7 +151775,8 @@ function createCombineTexturesProgram(context) {
|
|
|
151356
151775
|
"use strict";
|
|
151357
151776
|
__webpack_require__.r(__webpack_exports__);
|
|
151358
151777
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
151359
|
-
/* harmony export */ "
|
|
151778
|
+
/* harmony export */ "addChooseVec2WithBitFlagsFunction": () => (/* binding */ addChooseVec2WithBitFlagsFunction),
|
|
151779
|
+
/* harmony export */ "addChooseVec3WithBitFlagFunction": () => (/* binding */ addChooseVec3WithBitFlagFunction),
|
|
151360
151780
|
/* harmony export */ "addExtractNthBit": () => (/* binding */ addExtractNthBit),
|
|
151361
151781
|
/* harmony export */ "addEyeSpace": () => (/* binding */ addEyeSpace),
|
|
151362
151782
|
/* harmony export */ "addFrustum": () => (/* binding */ addFrustum),
|
|
@@ -151376,17 +151796,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
151376
151796
|
|
|
151377
151797
|
|
|
151378
151798
|
|
|
151379
|
-
|
|
151380
|
-
|
|
151381
|
-
|
|
151382
|
-
|
|
151383
|
-
|
|
151799
|
+
// These are not used anywhere currently, but will leave them here commented out in case we want them later.
|
|
151800
|
+
// const chooseFloatWithBitFlag = `
|
|
151801
|
+
// float chooseFloatWithBitFlag(float f1, float f2, float flags, float n) { return nthBitSet(flags, n) ? f2 : f1; }
|
|
151802
|
+
// `;
|
|
151803
|
+
// const chooseFloatWithBitFlag2 = `
|
|
151804
|
+
// float chooseFloatWithBitFlag(float f1, float f2, uint flags, uint n) { return 0u != (flags & n) ? f2 : f1; }
|
|
151805
|
+
// `;
|
|
151806
|
+
const chooseVec2With2BitFlags = `
|
|
151807
|
+
vec2 chooseVec2With2BitFlags(vec2 v1, vec2 v2, float flags, float n1, float n2) { return (nthBitSet(flags, n1) || nthBitSet(flags, n2)) ? v2 : v1; }
|
|
151384
151808
|
`;
|
|
151385
|
-
const
|
|
151386
|
-
vec2
|
|
151387
|
-
`;
|
|
151388
|
-
const chooseVec2WithBitFlag2 = `
|
|
151389
|
-
vec2 chooseVec2WithBitFlag(vec2 v1, vec2 v2, uint flags, uint n) { return 0u != (flags & n) ? v2 : v1; }
|
|
151809
|
+
const chooseVec2With2BitFlags2 = `
|
|
151810
|
+
vec2 chooseVec2With2BitFlags(vec2 v1, vec2 v2, uint flags, uint n1, uint n2) { return 0u != (flags & (n1 | n2)) ? v2 : v1; }
|
|
151390
151811
|
`;
|
|
151391
151812
|
const chooseVec3WithBitFlag = `
|
|
151392
151813
|
vec3 chooseVec3WithBitFlag(vec3 v1, vec3 v2, float flags, float n) { return nthBitSet(flags, n) ? v2 : v1; }
|
|
@@ -151395,41 +151816,34 @@ const chooseVec3WithBitFlag2 = `
|
|
|
151395
151816
|
vec3 chooseVec3WithBitFlag(vec3 v1, vec3 v2, uint flags, uint n) { return 0u != (flags & n) ? v2 : v1; }
|
|
151396
151817
|
`;
|
|
151397
151818
|
/** @internal */
|
|
151398
|
-
function
|
|
151819
|
+
function addChooseVec2WithBitFlagsFunction(shader) {
|
|
151399
151820
|
if (_System__WEBPACK_IMPORTED_MODULE_1__.System.instance.capabilities.isWebGL2) {
|
|
151400
151821
|
shader.addFunction(extractNthBit2);
|
|
151401
|
-
shader.addFunction(
|
|
151402
|
-
shader.addFunction(chooseVec2WithBitFlag2);
|
|
151403
|
-
shader.addFunction(chooseVec3WithBitFlag2);
|
|
151822
|
+
shader.addFunction(chooseVec2With2BitFlags2);
|
|
151404
151823
|
}
|
|
151405
151824
|
else {
|
|
151406
151825
|
shader.addFunction(nthBitSet);
|
|
151407
|
-
shader.addFunction(
|
|
151408
|
-
shader.addFunction(chooseVec2WithBitFlag);
|
|
151409
|
-
shader.addFunction(chooseVec3WithBitFlag);
|
|
151826
|
+
shader.addFunction(chooseVec2With2BitFlags);
|
|
151410
151827
|
}
|
|
151411
151828
|
}
|
|
151412
|
-
|
|
151413
|
-
|
|
151414
|
-
shader.addConstant("kShaderBit_NonUniformColor", 1 /* Int */, "1");
|
|
151415
|
-
shader.addConstant("kShaderBit_OITFlatAlphaWeight", 1 /* Int */, "2");
|
|
151416
|
-
shader.addConstant("kShaderBit_OITScaleOutput", 1 /* Int */, "3");
|
|
151417
|
-
shader.addConstant("kShaderBit_IgnoreNonLocatable", 1 /* Int */, "4");
|
|
151418
|
-
addChooseWithBitFlagFunctions(shader);
|
|
151829
|
+
/** @internal */
|
|
151830
|
+
function addChooseVec3WithBitFlagFunction(shader) {
|
|
151419
151831
|
if (_System__WEBPACK_IMPORTED_MODULE_1__.System.instance.capabilities.isWebGL2) {
|
|
151420
151832
|
shader.addFunction(extractNthBit2);
|
|
151421
|
-
shader.addFunction(chooseFloatWithBitFlag2);
|
|
151422
|
-
shader.addFunction(chooseVec2WithBitFlag2);
|
|
151423
151833
|
shader.addFunction(chooseVec3WithBitFlag2);
|
|
151424
151834
|
}
|
|
151425
151835
|
else {
|
|
151426
151836
|
shader.addFunction(nthBitSet);
|
|
151427
|
-
shader.addFunction(extractNthBit);
|
|
151428
|
-
shader.addFunction(chooseFloatWithBitFlag);
|
|
151429
|
-
shader.addFunction(chooseVec2WithBitFlag);
|
|
151430
151837
|
shader.addFunction(chooseVec3WithBitFlag);
|
|
151431
151838
|
}
|
|
151432
151839
|
}
|
|
151840
|
+
function addShaderFlagsConstants(shader) {
|
|
151841
|
+
shader.addConstant("kShaderBit_Monochrome", 1 /* Int */, "0");
|
|
151842
|
+
shader.addConstant("kShaderBit_NonUniformColor", 1 /* Int */, "1");
|
|
151843
|
+
shader.addConstant("kShaderBit_OITFlatAlphaWeight", 1 /* Int */, "2");
|
|
151844
|
+
shader.addConstant("kShaderBit_OITScaleOutput", 1 /* Int */, "3");
|
|
151845
|
+
shader.addConstant("kShaderBit_IgnoreNonLocatable", 1 /* Int */, "4");
|
|
151846
|
+
}
|
|
151433
151847
|
const shaderFlagArray = new Int32Array(5);
|
|
151434
151848
|
const kShaderBitMonochrome = 0;
|
|
151435
151849
|
const kShaderBitNonUniformColor = 1;
|
|
@@ -151476,8 +151890,8 @@ function setShaderFlags(uniform, params) {
|
|
|
151476
151890
|
}
|
|
151477
151891
|
/** @internal */
|
|
151478
151892
|
function addShaderFlags(builder) {
|
|
151479
|
-
|
|
151480
|
-
|
|
151893
|
+
addShaderFlagsConstants(builder.vert);
|
|
151894
|
+
addShaderFlagsConstants(builder.frag);
|
|
151481
151895
|
builder.addUniformArray("u_shaderFlags", 0 /* Boolean */, 5, (prog) => {
|
|
151482
151896
|
prog.addGraphicUniform("u_shaderFlags", (uniform, params) => setShaderFlags(uniform, params));
|
|
151483
151897
|
});
|
|
@@ -153723,8 +154137,6 @@ const applyLighting = `
|
|
|
153723
154137
|
|
|
153724
154138
|
// Extract surface properties
|
|
153725
154139
|
vec3 rgb = baseColor.rgb;
|
|
153726
|
-
vec3 normal = normalize(v_n.xyz);
|
|
153727
|
-
normal *= 2.0 * float(gl_FrontFacing) - 1.0;
|
|
153728
154140
|
vec3 toEye = kFrustumType_Perspective == u_frustum.z ? normalize(v_eyeSpace.xyz) : vec3(0.0, 0.0, -1.0);
|
|
153729
154141
|
|
|
153730
154142
|
// Extract material properties
|
|
@@ -153741,8 +154153,8 @@ const applyLighting = `
|
|
|
153741
154153
|
|
|
153742
154154
|
float directionalDiffuseIntensity = 0.0;
|
|
153743
154155
|
float directionalSpecularIntensity = 0.0;
|
|
153744
|
-
computeDirectionalLight(directionalDiffuseIntensity, directionalSpecularIntensity,
|
|
153745
|
-
computeDirectionalLight(directionalDiffuseIntensity, directionalSpecularIntensity,
|
|
154156
|
+
computeDirectionalLight(directionalDiffuseIntensity, directionalSpecularIntensity, g_normal, toEye, u_sunDir, sunIntensity, specularExponent);
|
|
154157
|
+
computeDirectionalLight(directionalDiffuseIntensity, directionalSpecularIntensity, g_normal ,toEye, portraitDir, portraitIntensity, specularExponent);
|
|
153746
154158
|
|
|
153747
154159
|
const float directionalFudge = 0.92; // leftover from old lighting implementation
|
|
153748
154160
|
vec3 diffuseAccum = directionalDiffuseIntensity * diffuseWeight * rgb * directionalFudge; // directional light is white.
|
|
@@ -153762,18 +154174,18 @@ const applyLighting = `
|
|
|
153762
154174
|
float hemiIntensity = u_lightSettings[11];
|
|
153763
154175
|
|
|
153764
154176
|
// diffuse
|
|
153765
|
-
float hemiDot = dot(
|
|
154177
|
+
float hemiDot = dot(g_normal, u_upVector);
|
|
153766
154178
|
float hemiDiffuseWeight = 0.5 * hemiDot + 0.5;
|
|
153767
154179
|
vec3 hemiColor = mix(ground, sky, hemiDiffuseWeight);
|
|
153768
154180
|
diffuseAccum += hemiIntensity * hemiColor * rgb;
|
|
153769
154181
|
|
|
153770
154182
|
// sky specular
|
|
153771
|
-
vec3 reflectSky = normalize(reflect(u_upVector,
|
|
154183
|
+
vec3 reflectSky = normalize(reflect(u_upVector, g_normal));
|
|
153772
154184
|
float skyDot = max(dot(reflectSky, toEye), 0.0001);
|
|
153773
154185
|
float hemiSpecWeight = hemiIntensity * pow(skyDot, specularExponent);
|
|
153774
154186
|
|
|
153775
154187
|
// ground specular
|
|
153776
|
-
vec3 reflectGround = normalize(reflect(-u_upVector,
|
|
154188
|
+
vec3 reflectGround = normalize(reflect(-u_upVector, g_normal));
|
|
153777
154189
|
float groundDot = max(dot(reflectGround, toEye), 0.0001);
|
|
153778
154190
|
hemiSpecWeight += hemiIntensity * pow(groundDot, specularExponent);
|
|
153779
154191
|
|
|
@@ -153784,7 +154196,7 @@ const applyLighting = `
|
|
|
153784
154196
|
// Apply fresnel reflection.
|
|
153785
154197
|
float fresnelIntensity = u_lightSettings[15];
|
|
153786
154198
|
if (0.0 != fresnelIntensity) {
|
|
153787
|
-
float fresnel = -dot(toEye,
|
|
154199
|
+
float fresnel = -dot(toEye, g_normal);
|
|
153788
154200
|
if (fresnelIntensity < 0.0) {
|
|
153789
154201
|
fresnelIntensity = abs(fresnelIntensity);
|
|
153790
154202
|
fresnel = 1.0 - fresnel;
|
|
@@ -154654,7 +155066,7 @@ function createPointCloudBuilder(classified, featureMode, thematic) {
|
|
|
154654
155066
|
}
|
|
154655
155067
|
if (1 /* Yes */ === thematic) {
|
|
154656
155068
|
(0,_Thematic__WEBPACK_IMPORTED_MODULE_7__.addThematicDisplay)(builder, true);
|
|
154657
|
-
(0,_Surface__WEBPACK_IMPORTED_MODULE_8__.addTexture)(builder, 0 /* No */, 1 /* Yes */, true);
|
|
155069
|
+
(0,_Surface__WEBPACK_IMPORTED_MODULE_8__.addTexture)(builder, 0 /* No */, 1 /* Yes */, true, false);
|
|
154658
155070
|
}
|
|
154659
155071
|
return builder;
|
|
154660
155072
|
}
|
|
@@ -155121,7 +155533,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
155121
155533
|
/* harmony export */ "addColorOverrideMix": () => (/* binding */ addColorOverrideMix),
|
|
155122
155534
|
/* harmony export */ "createClassifierRealityMeshHiliter": () => (/* binding */ createClassifierRealityMeshHiliter),
|
|
155123
155535
|
/* harmony export */ "createRealityMeshBuilder": () => (/* binding */ createRealityMeshBuilder),
|
|
155124
|
-
/* harmony export */ "createRealityMeshHiliter": () => (/* binding */ createRealityMeshHiliter)
|
|
155536
|
+
/* harmony export */ "createRealityMeshHiliter": () => (/* binding */ createRealityMeshHiliter),
|
|
155537
|
+
/* harmony export */ "finalizeNormal": () => (/* binding */ finalizeNormal)
|
|
155125
155538
|
/* harmony export */ });
|
|
155126
155539
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
155127
155540
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
@@ -155174,6 +155587,9 @@ const computeNormal = `
|
|
|
155174
155587
|
g_hillshadeIndex = normal.z; // save off world Z for thematic hill shade mode index
|
|
155175
155588
|
return normalize(u_worldToViewN * normal);
|
|
155176
155589
|
`;
|
|
155590
|
+
const finalizeNormal = `
|
|
155591
|
+
return normalize(v_n) * (2.0 * float(gl_FrontFacing) - 1.0);
|
|
155592
|
+
`;
|
|
155177
155593
|
const testInside = `
|
|
155178
155594
|
bool testInside(float x0, float y0, float x1, float y1, float x, float y) {
|
|
155179
155595
|
vec2 perp = vec2(y0 - y1, x1 - x0), test = vec2(x - x0, y - y0);
|
|
@@ -155348,6 +155764,8 @@ function addThematicToRealityMesh(builder, gradientTextureUnit) {
|
|
|
155348
155764
|
builder.vert.addFunction(_Surface__WEBPACK_IMPORTED_MODULE_15__.octDecodeNormal);
|
|
155349
155765
|
builder.vert.addGlobal("g_hillshadeIndex", 2 /* Float */);
|
|
155350
155766
|
builder.addFunctionComputedVarying("v_n", 4 /* Vec3 */, "computeLightingNormal", computeNormal);
|
|
155767
|
+
builder.frag.addGlobal("g_normal", 4 /* Vec3 */);
|
|
155768
|
+
builder.frag.set(21 /* FinalizeNormal */, finalizeNormal);
|
|
155351
155769
|
(0,_Thematic__WEBPACK_IMPORTED_MODULE_16__.addThematicDisplay)(builder, false, true);
|
|
155352
155770
|
builder.addInlineComputedVarying("v_thematicIndex", 2 /* Float */, (0,_Thematic__WEBPACK_IMPORTED_MODULE_16__.getComputeThematicIndex)(builder.vert.usesInstancedGeometry, false, false));
|
|
155353
155771
|
builder.vert.addUniform("u_worldToViewN", 6 /* Mat3 */, (prog) => {
|
|
@@ -155986,10 +156404,7 @@ float shadowMapEVSM(vec3 shadowPos) {
|
|
|
155986
156404
|
const applySolarShadowMap = `
|
|
155987
156405
|
if (v_shadowPos.x < 0.0 || v_shadowPos.x > 1.0 || v_shadowPos.y < 0.0 || v_shadowPos.y > 1.0 || v_shadowPos.z < 0.0 || v_shadowPos.z > 1.0)
|
|
155988
156406
|
return baseColor;
|
|
155989
|
-
|
|
155990
|
-
vec3 normal = normalize(v_n);
|
|
155991
|
-
normal = (dot(normal, toEye) > 0.0) ? -normal : normal;
|
|
155992
|
-
float visible = (u_surfaceFlags[kSurfaceBitIndex_HasNormals] && (dot(normal, u_sunDir) < 0.0)) ? 0.0 : shadowMapEVSM(v_shadowPos);
|
|
156407
|
+
float visible = (u_surfaceFlags[kSurfaceBitIndex_HasNormals] && (dot(g_normal, u_sunDir) < 0.0)) ? 0.0 : shadowMapEVSM(v_shadowPos);
|
|
155993
156408
|
return vec4(baseColor.rgb * mix(u_shadowParams.rgb, vec3(1.0), visible), baseColor.a);
|
|
155994
156409
|
`;
|
|
155995
156410
|
const applySolarShadowMapTerrain = `
|
|
@@ -156223,7 +156638,7 @@ function addMaterial(builder, instanced) {
|
|
|
156223
156638
|
(0,_Decode__WEBPACK_IMPORTED_MODULE_10__.addUnpackAndNormalize2Bytes)(frag);
|
|
156224
156639
|
frag.addFunction(decodeFragMaterialParams);
|
|
156225
156640
|
frag.addInitializer("decodeMaterialParams(v_materialParams);");
|
|
156226
|
-
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.
|
|
156641
|
+
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addChooseVec3WithBitFlagFunction)(frag);
|
|
156227
156642
|
frag.set(2 /* ApplyMaterialOverrides */, applyTextureWeight);
|
|
156228
156643
|
const vert = builder.vert;
|
|
156229
156644
|
vert.addGlobal("mat_rgb", 5 /* Vec4 */); // a = 0 if not overridden, else 1
|
|
@@ -156312,7 +156727,7 @@ function createCommon(isInstanced, animated, shadowable, isThematic, isHiliter,
|
|
|
156312
156727
|
function createSurfaceHiliter(instanced, classified, posType) {
|
|
156313
156728
|
const builder = createCommon(instanced, 0 /* No */, 0 /* No */, 0 /* No */, true, posType);
|
|
156314
156729
|
addSurfaceFlags(builder, true, false);
|
|
156315
|
-
addTexture(builder, 0 /* No */, 0 /* No
|
|
156730
|
+
addTexture(builder, 0 /* No */, 0 /* No */, false, true);
|
|
156316
156731
|
if (classified) {
|
|
156317
156732
|
(0,_PlanarClassification__WEBPACK_IMPORTED_MODULE_15__.addHilitePlanarClassifier)(builder);
|
|
156318
156733
|
builder.vert.addGlobal("feature_ignore_material", 0 /* Boolean */, "false");
|
|
@@ -156346,12 +156761,14 @@ function addSurfaceFlagsLookup(builder) {
|
|
|
156346
156761
|
builder.addBitFlagConstant("kSurfaceBit_HasTexture", 0 /* HasTexture */);
|
|
156347
156762
|
builder.addBitFlagConstant("kSurfaceBit_IgnoreMaterial", 3 /* IgnoreMaterial */);
|
|
156348
156763
|
builder.addBitFlagConstant("kSurfaceBit_OverrideRgb", 7 /* OverrideRgb */);
|
|
156764
|
+
builder.addBitFlagConstant("kSurfaceBit_HasNormalMap", 8 /* HasNormalMap */);
|
|
156349
156765
|
// Only need masks for flags modified in vertex shader
|
|
156350
156766
|
const suffix = _System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2 ? "u" : ".0";
|
|
156351
156767
|
const type = _System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2 ? 10 /* Uint */ : 2 /* Float */;
|
|
156352
156768
|
builder.addConstant("kSurfaceMask_HasTexture", type, 1 /* HasTexture */.toString() + suffix);
|
|
156353
156769
|
builder.addConstant("kSurfaceMask_IgnoreMaterial", type, 8 /* IgnoreMaterial */.toString() + suffix);
|
|
156354
156770
|
builder.addConstant("kSurfaceMask_OverrideRgb", type, 128 /* OverrideRgb */.toString() + suffix);
|
|
156771
|
+
builder.addConstant("kSurfaceMask_HasNormalMap", type, 256 /* HasNormalMap */.toString() + suffix);
|
|
156355
156772
|
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addExtractNthBit)(builder);
|
|
156356
156773
|
if (_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2) {
|
|
156357
156774
|
builder.addFunction(isSurfaceBitSet2);
|
|
@@ -156366,19 +156783,20 @@ const initSurfaceFlags = `
|
|
|
156366
156783
|
surfaceFlags = u_surfaceFlags[kSurfaceBitIndex_HasTexture] ? kSurfaceMask_HasTexture : 0.0;
|
|
156367
156784
|
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_IgnoreMaterial] ? kSurfaceMask_IgnoreMaterial : 0.0;
|
|
156368
156785
|
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_OverrideRgb] ? kSurfaceMask_OverrideRgb : 0.0;
|
|
156786
|
+
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_HasNormalMap] ? kSurfaceMask_HasNormalMap : 0.0;
|
|
156369
156787
|
`;
|
|
156370
156788
|
const initSurfaceFlags2 = `
|
|
156371
156789
|
surfaceFlags = u_surfaceFlags[kSurfaceBitIndex_HasTexture] ? kSurfaceMask_HasTexture : 0u;
|
|
156372
156790
|
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_IgnoreMaterial] ? kSurfaceMask_IgnoreMaterial : 0u;
|
|
156373
156791
|
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_OverrideRgb] ? kSurfaceMask_OverrideRgb : 0u;
|
|
156792
|
+
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_HasNormalMap] ? kSurfaceMask_HasNormalMap : 0u;
|
|
156374
156793
|
`;
|
|
156375
156794
|
const computeBaseSurfaceFlags = `
|
|
156376
|
-
bool hasTexture = u_surfaceFlags[kSurfaceBitIndex_HasTexture];
|
|
156377
156795
|
if (feature_ignore_material) {
|
|
156378
|
-
if (
|
|
156379
|
-
hasTexture = false;
|
|
156796
|
+
if (u_surfaceFlags[kSurfaceBitIndex_HasTexture])
|
|
156380
156797
|
surfaceFlags -= kSurfaceMask_HasTexture;
|
|
156381
|
-
|
|
156798
|
+
if (u_surfaceFlags[kSurfaceBitIndex_HasNormalMap])
|
|
156799
|
+
surfaceFlags -= kSurfaceMask_HasNormalMap;
|
|
156382
156800
|
|
|
156383
156801
|
surfaceFlags += kSurfaceMask_IgnoreMaterial;
|
|
156384
156802
|
}
|
|
@@ -156416,6 +156834,39 @@ function getComputeNormal(quantized) {
|
|
|
156416
156834
|
return normalize(MAT_NORM * octDecodeNormal(normal));
|
|
156417
156835
|
`;
|
|
156418
156836
|
}
|
|
156837
|
+
const finalizeNormalPrelude = `
|
|
156838
|
+
vec3 normal = normalize(v_n) * (2.0 * float(gl_FrontFacing) - 1.0);
|
|
156839
|
+
`;
|
|
156840
|
+
const finalizeNormalNormalMap = `
|
|
156841
|
+
if (isSurfaceBitSet(kSurfaceBit_HasNormalMap)) {
|
|
156842
|
+
// Modify the normal with the normal map texture.
|
|
156843
|
+
// First calculate the tangent.
|
|
156844
|
+
vec3 dp1 = dFdx(v_eyeSpace);
|
|
156845
|
+
vec3 dp2 = dFdy(v_eyeSpace);
|
|
156846
|
+
vec2 duv1 = dFdx(v_texCoord);
|
|
156847
|
+
vec2 duv2 = dFdy(v_texCoord);
|
|
156848
|
+
vec3 tangent = normalize(duv2.y * dp1 - duv1.y * dp2);
|
|
156849
|
+
tangent = normalize (tangent - normal * dot (normal, tangent)); // re-orthogonalize with normal
|
|
156850
|
+
bool flip = (duv1.x * duv2.y - duv2.x * duv1.y) < 0.0;
|
|
156851
|
+
if (flip)
|
|
156852
|
+
tangent = -tangent;
|
|
156853
|
+
vec3 biTangent = cross (normal, tangent);
|
|
156854
|
+
if (flip)
|
|
156855
|
+
biTangent = -biTangent;
|
|
156856
|
+
vec3 normM = TEXTURE(s_normalMap, v_texCoord).xyz;
|
|
156857
|
+
if (length (normM) > 0.0001) { // check for empty normal texture
|
|
156858
|
+
normM = (normM - 0.5) * 2.0;
|
|
156859
|
+
normM = normalize (normM);
|
|
156860
|
+
normM.x *= abs(u_normalMapScale);
|
|
156861
|
+
normM.y *= u_normalMapScale;
|
|
156862
|
+
normM = normalize (normM);
|
|
156863
|
+
normal = normalize (normM.x * tangent + normM.y * biTangent + normM.z * normal);
|
|
156864
|
+
}
|
|
156865
|
+
}
|
|
156866
|
+
`;
|
|
156867
|
+
const finalizeNormalPostlude = `
|
|
156868
|
+
return normal;
|
|
156869
|
+
`;
|
|
156419
156870
|
function getComputeAnimatedNormal(quantized) {
|
|
156420
156871
|
return `
|
|
156421
156872
|
if (u_animNormalParams.x >= 0.0)
|
|
@@ -156431,7 +156882,7 @@ function getComputeTexCoord(quantized) {
|
|
|
156431
156882
|
return `
|
|
156432
156883
|
vec4 rgba = ${vertData};
|
|
156433
156884
|
vec2 qcoords = vec2(decodeUInt16(rgba.xy), decodeUInt16(rgba.zw));
|
|
156434
|
-
return
|
|
156885
|
+
return chooseVec2With2BitFlags(vec2(0.0), unquantize2d(qcoords, u_qTexCoordParams), surfaceFlags, kSurfaceBit_HasTexture, kSurfaceBit_HasNormalMap);
|
|
156435
156886
|
`;
|
|
156436
156887
|
}
|
|
156437
156888
|
function getComputeAnimatedTexCoord(quantized) {
|
|
@@ -156493,9 +156944,29 @@ function addNormal(builder, instanced, animated) {
|
|
|
156493
156944
|
(0,_Vertex__WEBPACK_IMPORTED_MODULE_20__.addNormalMatrix)(builder.vert, instanced);
|
|
156494
156945
|
const quantized = "quantized" === builder.vert.positionType;
|
|
156495
156946
|
builder.vert.addFunction(octDecodeNormal);
|
|
156496
|
-
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addChooseWithBitFlagFunctions)(builder.vert);
|
|
156497
156947
|
builder.vert.addFunction("vec3 computeSurfaceNormal()", getComputeNormal(quantized));
|
|
156498
156948
|
builder.addFunctionComputedVarying("v_n", 4 /* Vec3 */, "computeLightingNormal", animated ? getComputeAnimatedNormal(quantized) : "return computeSurfaceNormal();");
|
|
156949
|
+
builder.frag.addGlobal("g_normal", 4 /* Vec3 */);
|
|
156950
|
+
let finalizeNormal = finalizeNormalPrelude;
|
|
156951
|
+
if (_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2) {
|
|
156952
|
+
finalizeNormal += finalizeNormalNormalMap;
|
|
156953
|
+
builder.frag.addUniform("u_normalMapScale", 2 /* Float */, (prog) => {
|
|
156954
|
+
prog.addGraphicUniform("u_normalMapScale", (uniform, params) => {
|
|
156955
|
+
var _a;
|
|
156956
|
+
let normalMapScale = 1.0;
|
|
156957
|
+
if (undefined !== params.geometry.materialInfo && !params.geometry.materialInfo.isAtlas &&
|
|
156958
|
+
undefined !== params.geometry.materialInfo.textureMapping &&
|
|
156959
|
+
undefined !== params.geometry.materialInfo.textureMapping.normalMapParams) {
|
|
156960
|
+
normalMapScale = (_a = params.geometry.materialInfo.textureMapping.normalMapParams.scale) !== null && _a !== void 0 ? _a : 1.0;
|
|
156961
|
+
if (!params.geometry.materialInfo.textureMapping.normalMapParams.greenDown)
|
|
156962
|
+
normalMapScale = -normalMapScale;
|
|
156963
|
+
}
|
|
156964
|
+
uniform.setUniform1f(normalMapScale);
|
|
156965
|
+
});
|
|
156966
|
+
});
|
|
156967
|
+
}
|
|
156968
|
+
finalizeNormal += finalizeNormalPostlude;
|
|
156969
|
+
builder.frag.set(21 /* FinalizeNormal */, finalizeNormal);
|
|
156499
156970
|
// Set to true to colorize surfaces based on normals (in world space).
|
|
156500
156971
|
// You must also set checkMaxVarying to false in ProgramBuilder.buildProgram to avoid assertions, if using a non-optimized build.
|
|
156501
156972
|
const debugNormals = false;
|
|
@@ -156505,19 +156976,21 @@ function addNormal(builder, instanced, animated) {
|
|
|
156505
156976
|
}
|
|
156506
156977
|
}
|
|
156507
156978
|
/** @internal */
|
|
156508
|
-
function addTexture(builder, animated, isThematic, isPointCloud
|
|
156979
|
+
function addTexture(builder, animated, isThematic, isPointCloud, isHilite) {
|
|
156509
156980
|
if (isThematic) {
|
|
156510
156981
|
builder.addInlineComputedVarying("v_thematicIndex", 2 /* Float */, (0,_Thematic__WEBPACK_IMPORTED_MODULE_18__.getComputeThematicIndex)(builder.vert.usesInstancedGeometry, isPointCloud, true));
|
|
156511
156982
|
}
|
|
156512
|
-
|
|
156983
|
+
// Point clouds do not need to compute texture coordinates since the only texture they use is the thematic gradient.
|
|
156984
|
+
// Surfaces now need texture coordinates even for thematic in case they have a normal map (except for webgl1 which does not have normal maps).
|
|
156985
|
+
if (!isPointCloud && (_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2 || !isThematic)) {
|
|
156513
156986
|
builder.vert.addFunction(_Decode__WEBPACK_IMPORTED_MODULE_10__.unquantize2d);
|
|
156514
|
-
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.
|
|
156987
|
+
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addChooseVec2WithBitFlagsFunction)(builder.vert);
|
|
156515
156988
|
const quantized = "quantized" === builder.vert.positionType;
|
|
156516
156989
|
builder.addFunctionComputedVarying("v_texCoord", 3 /* Vec2 */, "computeTexCoord", animated ? getComputeAnimatedTexCoord(quantized) : getComputeTexCoord(quantized));
|
|
156517
156990
|
builder.vert.addUniform("u_qTexCoordParams", 5 /* Vec4 */, (prog) => {
|
|
156518
156991
|
prog.addGraphicUniform("u_qTexCoordParams", (uniform, params) => {
|
|
156519
156992
|
const surfGeom = params.geometry.asSurface;
|
|
156520
|
-
if (surfGeom.useTexture(params.programParams)) {
|
|
156993
|
+
if (surfGeom.useTexture(params.programParams) || (surfGeom.useNormalMap(params.programParams) && !isPointCloud)) {
|
|
156521
156994
|
const uvQParams = surfGeom.lut.uvQParams;
|
|
156522
156995
|
if (undefined !== uvQParams) {
|
|
156523
156996
|
uniform.setUniform4fv(uvQParams);
|
|
@@ -156543,6 +157016,21 @@ function addTexture(builder, animated, isThematic, isPointCloud = false) {
|
|
|
156543
157016
|
}
|
|
156544
157017
|
});
|
|
156545
157018
|
});
|
|
157019
|
+
if (!isHilite && !isPointCloud && _System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2) {
|
|
157020
|
+
builder.frag.addUniform("s_normalMap", 8 /* Sampler2D */, (prog) => {
|
|
157021
|
+
prog.addGraphicUniform("s_normalMap", (uniform, params) => {
|
|
157022
|
+
const surfGeom = params.geometry.asSurface;
|
|
157023
|
+
if (surfGeom.useNormalMap(params.programParams)) {
|
|
157024
|
+
const normalMap = surfGeom.normalMap;
|
|
157025
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== normalMap);
|
|
157026
|
+
normalMap.texture.bindSampler(uniform, _RenderFlags__WEBPACK_IMPORTED_MODULE_3__.TextureUnit.NormalMap);
|
|
157027
|
+
}
|
|
157028
|
+
else {
|
|
157029
|
+
_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.ensureSamplerBound(uniform, _RenderFlags__WEBPACK_IMPORTED_MODULE_3__.TextureUnit.NormalMap);
|
|
157030
|
+
}
|
|
157031
|
+
});
|
|
157032
|
+
});
|
|
157033
|
+
}
|
|
156546
157034
|
}
|
|
156547
157035
|
const discardClassifiedByAlpha = `
|
|
156548
157036
|
if (u_no_classifier_discard)
|
|
@@ -156596,14 +157084,13 @@ function createSurfaceBuilder(flags) {
|
|
|
156596
157084
|
(0,_FeatureSymbology__WEBPACK_IMPORTED_MODULE_11__.addSurfaceDiscard)(builder, flags);
|
|
156597
157085
|
addNormal(builder, flags.isInstanced, flags.isAnimated);
|
|
156598
157086
|
// In HiddenLine mode, we must compute the base color (plus feature overrides etc) in order to get the alpha, then replace with background color (preserving alpha for the transparency threshold test).
|
|
156599
|
-
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addChooseWithBitFlagFunctions)(builder.frag);
|
|
156600
157087
|
builder.frag.set(3 /* FinalizeBaseColor */, applyBackgroundColor);
|
|
156601
157088
|
builder.frag.addUniform("u_bgColor", 4 /* Vec3 */, (prog) => {
|
|
156602
157089
|
prog.addProgramUniform("u_bgColor", (uniform, params) => {
|
|
156603
157090
|
params.target.uniforms.style.bindBackgroundRgb(uniform);
|
|
156604
157091
|
});
|
|
156605
157092
|
});
|
|
156606
|
-
addTexture(builder, flags.isAnimated, flags.isThematic);
|
|
157093
|
+
addTexture(builder, flags.isAnimated, flags.isThematic, false, false);
|
|
156607
157094
|
builder.frag.addUniform("u_applyGlyphTex", 0 /* Boolean */, (prog) => {
|
|
156608
157095
|
prog.addGraphicUniform("u_applyGlyphTex", (uniform, params) => {
|
|
156609
157096
|
const surfGeom = params.geometry.asSurface;
|
|
@@ -156748,7 +157235,7 @@ vec3 getIsoLineColor(float ndx, float stepCount) {
|
|
|
156748
157235
|
const fwidthWhenAvailable = `\nfloat _universal_fwidth(float coord) { return fwidth(coord); }\n`;
|
|
156749
157236
|
const fwidthWhenNotAvailable = `\nfloat _universal_fwidth(float coord) { return coord; }\n`; // ###TODO: can we do something reasonable in this case?
|
|
156750
157237
|
const slopeAndHillShadeShader = ` else if (kThematicDisplayMode_Slope == u_thematicDisplayMode) {
|
|
156751
|
-
float d = dot(
|
|
157238
|
+
float d = dot(g_normal, u_thematicAxis);
|
|
156752
157239
|
if (d < 0.0)
|
|
156753
157240
|
d = -d;
|
|
156754
157241
|
|
|
@@ -156766,11 +157253,7 @@ const slopeAndHillShadeShader = ` else if (kThematicDisplayMode_Slope == u_thema
|
|
|
156766
157253
|
|
|
156767
157254
|
ndx = d;
|
|
156768
157255
|
} else if (kThematicDisplayMode_HillShade == u_thematicDisplayMode) {
|
|
156769
|
-
float d = dot(
|
|
156770
|
-
|
|
156771
|
-
// In the case of HillShade, v_thematicIndex contains the normal's z in world space.
|
|
156772
|
-
if (!gl_FrontFacing && v_thematicIndex < 0.0)
|
|
156773
|
-
d = -d;
|
|
157256
|
+
float d = dot(g_normal, u_thematicSunDirection);
|
|
156774
157257
|
|
|
156775
157258
|
ndx = max(0.0, d);
|
|
156776
157259
|
}`;
|
|
@@ -159738,23 +160221,23 @@ class GltfReader {
|
|
|
159738
160221
|
return undefined !== view ? view.toBufferData(type) : undefined;
|
|
159739
160222
|
}
|
|
159740
160223
|
readFeatureIndices(_json) { return undefined; }
|
|
160224
|
+
extractId(value) {
|
|
160225
|
+
switch (typeof value) {
|
|
160226
|
+
case "string":
|
|
160227
|
+
return value;
|
|
160228
|
+
case "number":
|
|
160229
|
+
return value.toString();
|
|
160230
|
+
default:
|
|
160231
|
+
return undefined;
|
|
160232
|
+
}
|
|
160233
|
+
}
|
|
159741
160234
|
extractTextureId(material) {
|
|
159742
160235
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
159743
160236
|
if (typeof material !== "object")
|
|
159744
160237
|
return undefined;
|
|
159745
|
-
const extractId = (value) => {
|
|
159746
|
-
switch (typeof value) {
|
|
159747
|
-
case "string":
|
|
159748
|
-
return value;
|
|
159749
|
-
case "number":
|
|
159750
|
-
return value.toString();
|
|
159751
|
-
default:
|
|
159752
|
-
return undefined;
|
|
159753
|
-
}
|
|
159754
|
-
};
|
|
159755
160238
|
// Bimium's shader value...almost certainly obsolete at this point.
|
|
159756
160239
|
if (isGltf1Material(material))
|
|
159757
|
-
return (_a = material.diffuse) !== null && _a !== void 0 ? _a : extractId((_b = material.values) === null || _b === void 0 ? void 0 : _b.tex);
|
|
160240
|
+
return (_a = material.diffuse) !== null && _a !== void 0 ? _a : this.extractId((_b = material.values) === null || _b === void 0 ? void 0 : _b.tex);
|
|
159758
160241
|
// KHR_techniques_webgl extension
|
|
159759
160242
|
const techniques = (_d = (_c = this._glTF.extensions) === null || _c === void 0 ? void 0 : _c.KHR_techniques_webgl) === null || _d === void 0 ? void 0 : _d.techniques;
|
|
159760
160243
|
const ext = Array.isArray(techniques) ? (_e = material.extensions) === null || _e === void 0 ? void 0 : _e.KHR_techniques_webgl : undefined;
|
|
@@ -159764,12 +160247,20 @@ class GltfReader {
|
|
|
159764
160247
|
for (const uniformName of Object.keys(uniforms)) {
|
|
159765
160248
|
const uniform = uniforms[uniformName];
|
|
159766
160249
|
if (typeof uniform === "object" && uniform.type === GltfDataType.Sampler2d)
|
|
159767
|
-
return extractId((_f = ext.values[uniformName]) === null || _f === void 0 ? void 0 : _f.index);
|
|
160250
|
+
return this.extractId((_f = ext.values[uniformName]) === null || _f === void 0 ? void 0 : _f.index);
|
|
159768
160251
|
}
|
|
159769
160252
|
}
|
|
159770
160253
|
}
|
|
159771
|
-
const id = extractId((_h = (_g = material.pbrMetallicRoughness) === null || _g === void 0 ? void 0 : _g.baseColorTexture) === null || _h === void 0 ? void 0 : _h.index);
|
|
159772
|
-
return id !== null && id !== void 0 ? id : extractId((_j = material.emissiveTexture) === null || _j === void 0 ? void 0 : _j.index);
|
|
160254
|
+
const id = this.extractId((_h = (_g = material.pbrMetallicRoughness) === null || _g === void 0 ? void 0 : _g.baseColorTexture) === null || _h === void 0 ? void 0 : _h.index);
|
|
160255
|
+
return id !== null && id !== void 0 ? id : this.extractId((_j = material.emissiveTexture) === null || _j === void 0 ? void 0 : _j.index);
|
|
160256
|
+
}
|
|
160257
|
+
extractNormalMapId(material) {
|
|
160258
|
+
var _a;
|
|
160259
|
+
if (typeof material !== "object")
|
|
160260
|
+
return undefined;
|
|
160261
|
+
if (isGltf1Material(material))
|
|
160262
|
+
return undefined;
|
|
160263
|
+
return this.extractId((_a = material.normalTexture) === null || _a === void 0 ? void 0 : _a.index);
|
|
159773
160264
|
}
|
|
159774
160265
|
isMaterialTransparent(material) {
|
|
159775
160266
|
var _a, _b;
|
|
@@ -159790,9 +160281,15 @@ class GltfReader {
|
|
|
159790
160281
|
createDisplayParams(material, hasBakedLighting) {
|
|
159791
160282
|
const isTransparent = this.isMaterialTransparent(material);
|
|
159792
160283
|
const textureId = this.extractTextureId(material);
|
|
159793
|
-
const
|
|
160284
|
+
const normalMapId = this.extractNormalMapId(material);
|
|
160285
|
+
const textureMapping = (undefined !== textureId || undefined !== normalMapId) ? this.findTextureMapping(textureId, isTransparent, normalMapId) : undefined;
|
|
159794
160286
|
const color = colorFromMaterial(material, isTransparent);
|
|
159795
|
-
|
|
160287
|
+
let renderMaterial;
|
|
160288
|
+
if (undefined !== textureMapping && undefined !== textureMapping.normalMapParams) {
|
|
160289
|
+
const args = { diffuse: { color }, specular: { color: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.white }, textureMapping };
|
|
160290
|
+
renderMaterial = _IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.renderSystem.createRenderMaterial(args);
|
|
160291
|
+
}
|
|
160292
|
+
return new _render_primitives_DisplayParams__WEBPACK_IMPORTED_MODULE_8__.DisplayParams(_render_primitives_DisplayParams__WEBPACK_IMPORTED_MODULE_8__.DisplayParams.Type.Mesh, color, color, 1, _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.LinePixels.Solid, _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FillFlags.Always, renderMaterial, undefined, hasBakedLighting, textureMapping);
|
|
159796
160293
|
}
|
|
159797
160294
|
readMeshPrimitives(node, featureTable, thisTransform, thisBias) {
|
|
159798
160295
|
const meshes = [];
|
|
@@ -160239,7 +160736,7 @@ class GltfReader {
|
|
|
160239
160736
|
if (dracoMeshes.length === 0)
|
|
160240
160737
|
return;
|
|
160241
160738
|
try {
|
|
160242
|
-
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-
|
|
160739
|
+
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_12_node_modules_loaders_gl_draco_d-b19815"), __webpack_require__.e("_cb67")]).then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.2.12/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
|
|
160243
160740
|
await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
|
|
160244
160741
|
}
|
|
160245
160742
|
catch (err) {
|
|
@@ -160369,11 +160866,38 @@ class GltfReader {
|
|
|
160369
160866
|
});
|
|
160370
160867
|
return renderTexture !== null && renderTexture !== void 0 ? renderTexture : false;
|
|
160371
160868
|
}
|
|
160372
|
-
findTextureMapping(id, isTransparent) {
|
|
160373
|
-
|
|
160374
|
-
|
|
160375
|
-
|
|
160376
|
-
|
|
160869
|
+
findTextureMapping(id, isTransparent, normalMapId) {
|
|
160870
|
+
if (undefined === id && undefined === normalMapId)
|
|
160871
|
+
return undefined;
|
|
160872
|
+
let texture;
|
|
160873
|
+
if (undefined !== id) {
|
|
160874
|
+
texture = this._resolvedTextures.get({ id, isTransparent });
|
|
160875
|
+
if (undefined === texture)
|
|
160876
|
+
this._resolvedTextures.set({ id, isTransparent }, texture = this.resolveTexture(id, isTransparent));
|
|
160877
|
+
}
|
|
160878
|
+
let normalMap;
|
|
160879
|
+
if (undefined !== normalMapId) {
|
|
160880
|
+
normalMap = this._resolvedTextures.get({ id: normalMapId, isTransparent: false });
|
|
160881
|
+
if (undefined === normalMap)
|
|
160882
|
+
this._resolvedTextures.set({ id: normalMapId, isTransparent: false }, normalMap = this.resolveTexture(normalMapId, false));
|
|
160883
|
+
}
|
|
160884
|
+
let nMap;
|
|
160885
|
+
if (normalMap) {
|
|
160886
|
+
if (texture) {
|
|
160887
|
+
nMap = {
|
|
160888
|
+
normalMap,
|
|
160889
|
+
};
|
|
160890
|
+
}
|
|
160891
|
+
else {
|
|
160892
|
+
texture = normalMap;
|
|
160893
|
+
nMap = {};
|
|
160894
|
+
}
|
|
160895
|
+
}
|
|
160896
|
+
if (!texture)
|
|
160897
|
+
return undefined;
|
|
160898
|
+
const textureMapping = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapping(texture, new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapping.Params());
|
|
160899
|
+
textureMapping.normalMapParams = nMap;
|
|
160900
|
+
return textureMapping;
|
|
160377
160901
|
}
|
|
160378
160902
|
}
|
|
160379
160903
|
/** Produce a [[RenderGraphic]] from a [glTF](https://www.khronos.org/gltf/) asset suitable for use in [view decorations]($docs/learning/frontend/ViewDecorations).
|
|
@@ -161745,6 +162269,7 @@ class ImdlReader {
|
|
|
161745
162269
|
mapMode: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asInt(paramsJson.mode),
|
|
161746
162270
|
worldMapping: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asBool(paramsJson.worldMapping),
|
|
161747
162271
|
};
|
|
162272
|
+
// TODO: Need to extract normal map properties from json once they're sent by the backend.
|
|
161748
162273
|
return new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapping(texture, new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapping.Params(paramProps));
|
|
161749
162274
|
}
|
|
161750
162275
|
async loadNamedTextures() {
|
|
@@ -163384,7 +163909,7 @@ function readPnts(stream, dataOffset, pnts) {
|
|
|
163384
163909
|
async function decodeDracoPointCloud(buf) {
|
|
163385
163910
|
var _a, _b, _c, _d, _e, _f;
|
|
163386
163911
|
try {
|
|
163387
|
-
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-
|
|
163912
|
+
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_12_node_modules_loaders_gl_draco_d-b19815"), __webpack_require__.e("_cb67")]).then(__webpack_require__.bind(__webpack_require__, /*! @loaders.gl/draco */ "../../common/temp/node_modules/.pnpm/@loaders.gl+draco@3.2.12/node_modules/@loaders.gl/draco/dist/esm/index.js"))).DracoLoader;
|
|
163388
163913
|
const mesh = await dracoLoader.parse(buf, {});
|
|
163389
163914
|
if (mesh.topology !== "point-list")
|
|
163390
163915
|
return undefined;
|
|
@@ -291135,7 +291660,7 @@ exports.getClientAccessTokenFromBackend = getClientAccessTokenFromBackend;
|
|
|
291135
291660
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291136
291661
|
*--------------------------------------------------------------------------------------------*/
|
|
291137
291662
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
291138
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291663
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291139
291664
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
291140
291665
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
291141
291666
|
const expect = chai.expect;
|
|
@@ -291192,7 +291717,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291192
291717
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
291193
291718
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291194
291719
|
*--------------------------------------------------------------------------------------------*/
|
|
291195
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291720
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291196
291721
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
291197
291722
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291198
291723
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
@@ -291259,7 +291784,7 @@ var __asyncValues = (this && this.__asyncValues) || function (o) {
|
|
|
291259
291784
|
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
291260
291785
|
};
|
|
291261
291786
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
291262
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291787
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291263
291788
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
291264
291789
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291265
291790
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
@@ -291330,7 +291855,7 @@ describe("Operational: Execute Query", () => {
|
|
|
291330
291855
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291331
291856
|
*--------------------------------------------------------------------------------------------*/
|
|
291332
291857
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
291333
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291858
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291334
291859
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
291335
291860
|
const expect = chai.expect;
|
|
291336
291861
|
describe("IModel Views", () => {
|
|
@@ -291372,7 +291897,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291372
291897
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291373
291898
|
*--------------------------------------------------------------------------------------------*/
|
|
291374
291899
|
const buffer_1 = __webpack_require__(/*! buffer */ "../../common/temp/node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.js");
|
|
291375
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
291900
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291376
291901
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
291377
291902
|
const core_geometry_1 = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
291378
291903
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
@@ -291713,7 +292238,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291713
292238
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
291714
292239
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291715
292240
|
*--------------------------------------------------------------------------------------------*/
|
|
291716
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292241
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291717
292242
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291718
292243
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
291719
292244
|
const expect = chai.expect;
|
|
@@ -291753,7 +292278,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291753
292278
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
291754
292279
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291755
292280
|
*--------------------------------------------------------------------------------------------*/
|
|
291756
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292281
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291757
292282
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
291758
292283
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291759
292284
|
const frontend_1 = __webpack_require__(/*! @itwin/oidc-signin-tool/lib/cjs/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+oidc-signin-tool@3.5.0/node_modules/@itwin/oidc-signin-tool/lib/cjs/frontend.js");
|
|
@@ -291949,7 +292474,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
291949
292474
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
291950
292475
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
291951
292476
|
*--------------------------------------------------------------------------------------------*/
|
|
291952
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292477
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
291953
292478
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
291954
292479
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
291955
292480
|
const expect = chai.expect;
|
|
@@ -292005,7 +292530,7 @@ exports.IModelSession = void 0;
|
|
|
292005
292530
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
292006
292531
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
292007
292532
|
*--------------------------------------------------------------------------------------------*/
|
|
292008
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292533
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
292009
292534
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
292010
292535
|
const projects_client_1 = __webpack_require__(/*! @itwin/projects-client */ "../../common/temp/node_modules/.pnpm/@itwin+projects-client@0.6.0/node_modules/@itwin/projects-client/lib/esm/projects-client.js");
|
|
292011
292536
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
@@ -292109,7 +292634,7 @@ exports.IModelSession = IModelSession;
|
|
|
292109
292634
|
*--------------------------------------------------------------------------------------------*/
|
|
292110
292635
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
292111
292636
|
exports.TestContext = void 0;
|
|
292112
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292637
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
292113
292638
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
292114
292639
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
292115
292640
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
@@ -292163,7 +292688,7 @@ class TestContext {
|
|
|
292163
292688
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
292164
292689
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${(_a = process.env.IMJS_URL_PREFIX) !== null && _a !== void 0 ? _a : ""}api.bentley.com/imodels` } });
|
|
292165
292690
|
await core_frontend_1.NoRenderApp.startup({
|
|
292166
|
-
applicationVersion: "3.5.0-dev.
|
|
292691
|
+
applicationVersion: "3.5.0-dev.65",
|
|
292167
292692
|
applicationId: this.settings.gprid,
|
|
292168
292693
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
292169
292694
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -292201,8 +292726,8 @@ var __asyncValues = (this && this.__asyncValues) || function (o) {
|
|
|
292201
292726
|
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
292202
292727
|
};
|
|
292203
292728
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
292204
|
-
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
292205
|
-
const chaiAsPromised = __webpack_require__(/*! chai-as-promised */ "../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.
|
|
292729
|
+
const chai = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
292730
|
+
const chaiAsPromised = __webpack_require__(/*! chai-as-promised */ "../../common/temp/node_modules/.pnpm/chai-as-promised@7.1.1_chai@4.3.7/node_modules/chai-as-promised/lib/chai-as-promised.js");
|
|
292206
292731
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
292207
292732
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
292208
292733
|
const frontend_1 = __webpack_require__(/*! @itwin/oidc-signin-tool/lib/cjs/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+oidc-signin-tool@3.5.0/node_modules/@itwin/oidc-signin-tool/lib/cjs/frontend.js");
|
|
@@ -293882,7 +294407,7 @@ class PresentationRpcInterface extends _itwin_core_common__WEBPACK_IMPORTED_MODU
|
|
|
293882
294407
|
/** The immutable name of the interface. */
|
|
293883
294408
|
PresentationRpcInterface.interfaceName = "PresentationRpcInterface"; // eslint-disable-line @typescript-eslint/naming-convention
|
|
293884
294409
|
/** The semantic version of the interface. */
|
|
293885
|
-
PresentationRpcInterface.interfaceVersion = "3.
|
|
294410
|
+
PresentationRpcInterface.interfaceVersion = "3.2.0";
|
|
293886
294411
|
__decorate([
|
|
293887
294412
|
_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.RpcOperation.setPolicy({ allowResponseCompression: true })
|
|
293888
294413
|
], PresentationRpcInterface.prototype, "getPagedNodes", null);
|
|
@@ -295416,6 +295941,7 @@ var SortDirection;
|
|
|
295416
295941
|
class Descriptor {
|
|
295417
295942
|
/** Construct a new Descriptor using a [[DescriptorSource]] */
|
|
295418
295943
|
constructor(source) {
|
|
295944
|
+
var _a, _b;
|
|
295419
295945
|
this.connectionId = source.connectionId;
|
|
295420
295946
|
this.inputKeysHash = source.inputKeysHash;
|
|
295421
295947
|
this.selectionInfo = source.selectionInfo;
|
|
@@ -295426,7 +295952,9 @@ class Descriptor {
|
|
|
295426
295952
|
this.fields = [...source.fields];
|
|
295427
295953
|
this.sortingField = source.sortingField;
|
|
295428
295954
|
this.sortDirection = source.sortDirection;
|
|
295429
|
-
this.filterExpression = source.filterExpression;
|
|
295955
|
+
this.filterExpression = (_a = source.fieldsFilterExpression) !== null && _a !== void 0 ? _a : source.filterExpression; // eslint-disable-line deprecation/deprecation
|
|
295956
|
+
this.fieldsFilterExpression = (_b = source.fieldsFilterExpression) !== null && _b !== void 0 ? _b : source.filterExpression; // eslint-disable-line deprecation/deprecation
|
|
295957
|
+
this.instanceFilter = source.instanceFilter;
|
|
295430
295958
|
}
|
|
295431
295959
|
/** Serialize [[Descriptor]] to JSON */
|
|
295432
295960
|
toJSON() {
|
|
@@ -295443,7 +295971,8 @@ class Descriptor {
|
|
|
295443
295971
|
fields,
|
|
295444
295972
|
selectClasses,
|
|
295445
295973
|
classesMap,
|
|
295446
|
-
}, this.sortingField !== undefined && { sortingFieldName: this.sortingField.name }, this.sortDirection !== undefined && { sortDirection: this.sortDirection }, this.filterExpression !== undefined && { filterExpression: this.filterExpression },
|
|
295974
|
+
}, this.sortingField !== undefined && { sortingFieldName: this.sortingField.name }, this.sortDirection !== undefined && { sortDirection: this.sortDirection }, this.filterExpression !== undefined && { filterExpression: this.filterExpression }, // eslint-disable-line deprecation/deprecation
|
|
295975
|
+
this.fieldsFilterExpression !== undefined && { fieldsFilterExpression: this.fieldsFilterExpression }, this.instanceFilter !== undefined && { instanceFilter: this.instanceFilter }, this.selectionInfo !== undefined && { selectionInfo: this.selectionInfo });
|
|
295447
295976
|
}
|
|
295448
295977
|
/** Deserialize [[Descriptor]] from JSON */
|
|
295449
295978
|
static fromJSON(json) {
|
|
@@ -295482,16 +296011,18 @@ class Descriptor {
|
|
|
295482
296011
|
* @public
|
|
295483
296012
|
*/
|
|
295484
296013
|
createDescriptorOverrides() {
|
|
295485
|
-
var _a;
|
|
296014
|
+
var _a, _b;
|
|
295486
296015
|
const overrides = {};
|
|
295487
296016
|
if (this.displayType)
|
|
295488
296017
|
overrides.displayType = this.displayType;
|
|
295489
296018
|
if (this.contentFlags !== 0)
|
|
295490
296019
|
overrides.contentFlags = this.contentFlags;
|
|
295491
|
-
if (this.filterExpression)
|
|
295492
|
-
overrides.
|
|
296020
|
+
if (this.filterExpression || this.fieldsFilterExpression) // eslint-disable-line deprecation/deprecation
|
|
296021
|
+
overrides.fieldsFilterExpression = (_a = this.fieldsFilterExpression) !== null && _a !== void 0 ? _a : this.filterExpression; // eslint-disable-line deprecation/deprecation
|
|
296022
|
+
if (this.instanceFilter)
|
|
296023
|
+
overrides.instanceFilter = this.instanceFilter;
|
|
295493
296024
|
if (this.sortingField)
|
|
295494
|
-
overrides.sorting = { field: this.sortingField.getFieldDescriptor(), direction: (
|
|
296025
|
+
overrides.sorting = { field: this.sortingField.getFieldDescriptor(), direction: (_b = this.sortDirection) !== null && _b !== void 0 ? _b : SortDirection.Ascending };
|
|
295495
296026
|
return overrides;
|
|
295496
296027
|
}
|
|
295497
296028
|
}
|
|
@@ -305896,7 +306427,7 @@ var WidgetState;
|
|
|
305896
306427
|
|
|
305897
306428
|
/***/ }),
|
|
305898
306429
|
|
|
305899
|
-
/***/ "?
|
|
306430
|
+
/***/ "?1120":
|
|
305900
306431
|
/*!**********************!*\
|
|
305901
306432
|
!*** util (ignored) ***!
|
|
305902
306433
|
\**********************/
|
|
@@ -307247,9 +307778,9 @@ flatbuffers.ByteBuffer.prototype.createLong = function(low, high) {
|
|
|
307247
307778
|
|
|
307248
307779
|
/***/ }),
|
|
307249
307780
|
|
|
307250
|
-
/***/ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
307781
|
+
/***/ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs":
|
|
307251
307782
|
/*!**********************************************************************************************!*\
|
|
307252
|
-
!*** ../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
307783
|
+
!*** ../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs ***!
|
|
307253
307784
|
\**********************************************************************************************/
|
|
307254
307785
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307255
307786
|
|
|
@@ -307289,7 +307820,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307289
307820
|
*
|
|
307290
307821
|
* @author Dan Kogai (https://github.com/dankogai)
|
|
307291
307822
|
*/
|
|
307292
|
-
const version = '3.7.
|
|
307823
|
+
const version = '3.7.3';
|
|
307293
307824
|
/**
|
|
307294
307825
|
* @deprecated use lowercase `version`.
|
|
307295
307826
|
*/
|
|
@@ -307578,9 +308109,9 @@ const gBase64 = {
|
|
|
307578
308109
|
|
|
307579
308110
|
/***/ }),
|
|
307580
308111
|
|
|
307581
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308112
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js":
|
|
307582
308113
|
/*!******************************************************************************************************************************!*\
|
|
307583
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308114
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
|
307584
308115
|
\******************************************************************************************************************************/
|
|
307585
308116
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307586
308117
|
|
|
@@ -307599,9 +308130,9 @@ function _arrayLikeToArray(arr, len) {
|
|
|
307599
308130
|
|
|
307600
308131
|
/***/ }),
|
|
307601
308132
|
|
|
307602
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308133
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js":
|
|
307603
308134
|
/*!****************************************************************************************************************************!*\
|
|
307604
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308135
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
|
307605
308136
|
\****************************************************************************************************************************/
|
|
307606
308137
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307607
308138
|
|
|
@@ -307616,9 +308147,9 @@ function _arrayWithHoles(arr) {
|
|
|
307616
308147
|
|
|
307617
308148
|
/***/ }),
|
|
307618
308149
|
|
|
307619
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308150
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js":
|
|
307620
308151
|
/*!***********************************************************************************************************************************!*\
|
|
307621
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308152
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
|
307622
308153
|
\***********************************************************************************************************************************/
|
|
307623
308154
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307624
308155
|
|
|
@@ -307636,9 +308167,9 @@ function _assertThisInitialized(self) {
|
|
|
307636
308167
|
|
|
307637
308168
|
/***/ }),
|
|
307638
308169
|
|
|
307639
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308170
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
307640
308171
|
/*!****************************************************************************************************************************!*\
|
|
307641
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308172
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
307642
308173
|
\****************************************************************************************************************************/
|
|
307643
308174
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307644
308175
|
|
|
@@ -307655,9 +308186,9 @@ function _classCallCheck(instance, Constructor) {
|
|
|
307655
308186
|
|
|
307656
308187
|
/***/ }),
|
|
307657
308188
|
|
|
307658
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308189
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
307659
308190
|
/*!*************************************************************************************************************************!*\
|
|
307660
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308191
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
307661
308192
|
\*************************************************************************************************************************/
|
|
307662
308193
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307663
308194
|
|
|
@@ -307666,13 +308197,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307666
308197
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307667
308198
|
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
307668
308199
|
/* harmony export */ });
|
|
308200
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
308201
|
+
|
|
307669
308202
|
function _defineProperties(target, props) {
|
|
307670
308203
|
for (var i = 0; i < props.length; i++) {
|
|
307671
308204
|
var descriptor = props[i];
|
|
307672
308205
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
307673
308206
|
descriptor.configurable = true;
|
|
307674
308207
|
if ("value" in descriptor) descriptor.writable = true;
|
|
307675
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
308208
|
+
Object.defineProperty(target, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(descriptor.key), descriptor);
|
|
307676
308209
|
}
|
|
307677
308210
|
}
|
|
307678
308211
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
@@ -307686,9 +308219,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
307686
308219
|
|
|
307687
308220
|
/***/ }),
|
|
307688
308221
|
|
|
307689
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308222
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js":
|
|
307690
308223
|
/*!****************************************************************************************************************************!*\
|
|
307691
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308224
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
|
307692
308225
|
\****************************************************************************************************************************/
|
|
307693
308226
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307694
308227
|
|
|
@@ -307697,7 +308230,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307697
308230
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307698
308231
|
/* harmony export */ "default": () => (/* binding */ _defineProperty)
|
|
307699
308232
|
/* harmony export */ });
|
|
308233
|
+
/* harmony import */ var _toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toPropertyKey.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js");
|
|
308234
|
+
|
|
307700
308235
|
function _defineProperty(obj, key, value) {
|
|
308236
|
+
key = (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key);
|
|
307701
308237
|
if (key in obj) {
|
|
307702
308238
|
Object.defineProperty(obj, key, {
|
|
307703
308239
|
value: value,
|
|
@@ -307713,9 +308249,9 @@ function _defineProperty(obj, key, value) {
|
|
|
307713
308249
|
|
|
307714
308250
|
/***/ }),
|
|
307715
308251
|
|
|
307716
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308252
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js":
|
|
307717
308253
|
/*!****************************************************************************************************************************!*\
|
|
307718
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308254
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
|
307719
308255
|
\****************************************************************************************************************************/
|
|
307720
308256
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307721
308257
|
|
|
@@ -307733,9 +308269,9 @@ function _getPrototypeOf(o) {
|
|
|
307733
308269
|
|
|
307734
308270
|
/***/ }),
|
|
307735
308271
|
|
|
307736
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308272
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js":
|
|
307737
308273
|
/*!**********************************************************************************************************************!*\
|
|
307738
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308274
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
|
307739
308275
|
\**********************************************************************************************************************/
|
|
307740
308276
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307741
308277
|
|
|
@@ -307744,7 +308280,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307744
308280
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307745
308281
|
/* harmony export */ "default": () => (/* binding */ _inherits)
|
|
307746
308282
|
/* harmony export */ });
|
|
307747
|
-
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308283
|
+
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js");
|
|
307748
308284
|
|
|
307749
308285
|
function _inherits(subClass, superClass) {
|
|
307750
308286
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -307765,9 +308301,9 @@ function _inherits(subClass, superClass) {
|
|
|
307765
308301
|
|
|
307766
308302
|
/***/ }),
|
|
307767
308303
|
|
|
307768
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308304
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js":
|
|
307769
308305
|
/*!*****************************************************************************************************************************!*\
|
|
307770
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308306
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
|
307771
308307
|
\*****************************************************************************************************************************/
|
|
307772
308308
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307773
308309
|
|
|
@@ -307782,9 +308318,9 @@ function _iterableToArray(iter) {
|
|
|
307782
308318
|
|
|
307783
308319
|
/***/ }),
|
|
307784
308320
|
|
|
307785
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308321
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js":
|
|
307786
308322
|
/*!*****************************************************************************************************************************!*\
|
|
307787
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308323
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
|
307788
308324
|
\*****************************************************************************************************************************/
|
|
307789
308325
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307790
308326
|
|
|
@@ -307799,9 +308335,9 @@ function _nonIterableRest() {
|
|
|
307799
308335
|
|
|
307800
308336
|
/***/ }),
|
|
307801
308337
|
|
|
307802
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308338
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js":
|
|
307803
308339
|
/*!***************************************************************************************************************************************!*\
|
|
307804
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308340
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
|
307805
308341
|
\***************************************************************************************************************************************/
|
|
307806
308342
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307807
308343
|
|
|
@@ -307810,8 +308346,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307810
308346
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307811
308347
|
/* harmony export */ "default": () => (/* binding */ _possibleConstructorReturn)
|
|
307812
308348
|
/* harmony export */ });
|
|
307813
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307814
|
-
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308349
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
308350
|
+
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
307815
308351
|
|
|
307816
308352
|
|
|
307817
308353
|
function _possibleConstructorReturn(self, call) {
|
|
@@ -307825,9 +308361,9 @@ function _possibleConstructorReturn(self, call) {
|
|
|
307825
308361
|
|
|
307826
308362
|
/***/ }),
|
|
307827
308363
|
|
|
307828
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308364
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js":
|
|
307829
308365
|
/*!****************************************************************************************************************************!*\
|
|
307830
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308366
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
|
307831
308367
|
\****************************************************************************************************************************/
|
|
307832
308368
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307833
308369
|
|
|
@@ -307846,9 +308382,9 @@ function _setPrototypeOf(o, p) {
|
|
|
307846
308382
|
|
|
307847
308383
|
/***/ }),
|
|
307848
308384
|
|
|
307849
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308385
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js":
|
|
307850
308386
|
/*!*********************************************************************************************************************!*\
|
|
307851
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308387
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js ***!
|
|
307852
308388
|
\*********************************************************************************************************************/
|
|
307853
308389
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307854
308390
|
|
|
@@ -307857,10 +308393,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307857
308393
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307858
308394
|
/* harmony export */ "default": () => (/* binding */ _toArray)
|
|
307859
308395
|
/* harmony export */ });
|
|
307860
|
-
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307861
|
-
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307862
|
-
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307863
|
-
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308396
|
+
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js");
|
|
308397
|
+
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js");
|
|
308398
|
+
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js");
|
|
308399
|
+
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js");
|
|
307864
308400
|
|
|
307865
308401
|
|
|
307866
308402
|
|
|
@@ -307871,9 +308407,57 @@ function _toArray(arr) {
|
|
|
307871
308407
|
|
|
307872
308408
|
/***/ }),
|
|
307873
308409
|
|
|
307874
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308410
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
308411
|
+
/*!*************************************************************************************************************************!*\
|
|
308412
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
308413
|
+
\*************************************************************************************************************************/
|
|
308414
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
308415
|
+
|
|
308416
|
+
"use strict";
|
|
308417
|
+
__webpack_require__.r(__webpack_exports__);
|
|
308418
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
308419
|
+
/* harmony export */ "default": () => (/* binding */ _toPrimitive)
|
|
308420
|
+
/* harmony export */ });
|
|
308421
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
308422
|
+
|
|
308423
|
+
function _toPrimitive(input, hint) {
|
|
308424
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input;
|
|
308425
|
+
var prim = input[Symbol.toPrimitive];
|
|
308426
|
+
if (prim !== undefined) {
|
|
308427
|
+
var res = prim.call(input, hint || "default");
|
|
308428
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(res) !== "object") return res;
|
|
308429
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
308430
|
+
}
|
|
308431
|
+
return (hint === "string" ? String : Number)(input);
|
|
308432
|
+
}
|
|
308433
|
+
|
|
308434
|
+
/***/ }),
|
|
308435
|
+
|
|
308436
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
308437
|
+
/*!***************************************************************************************************************************!*\
|
|
308438
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
308439
|
+
\***************************************************************************************************************************/
|
|
308440
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
308441
|
+
|
|
308442
|
+
"use strict";
|
|
308443
|
+
__webpack_require__.r(__webpack_exports__);
|
|
308444
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
308445
|
+
/* harmony export */ "default": () => (/* binding */ _toPropertyKey)
|
|
308446
|
+
/* harmony export */ });
|
|
308447
|
+
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
308448
|
+
/* harmony import */ var _toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toPrimitive.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js");
|
|
308449
|
+
|
|
308450
|
+
|
|
308451
|
+
function _toPropertyKey(arg) {
|
|
308452
|
+
var key = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(arg, "string");
|
|
308453
|
+
return (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key) === "symbol" ? key : String(key);
|
|
308454
|
+
}
|
|
308455
|
+
|
|
308456
|
+
/***/ }),
|
|
308457
|
+
|
|
308458
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
307875
308459
|
/*!********************************************************************************************************************!*\
|
|
307876
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308460
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
307877
308461
|
\********************************************************************************************************************/
|
|
307878
308462
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307879
308463
|
|
|
@@ -307894,9 +308478,9 @@ function _typeof(obj) {
|
|
|
307894
308478
|
|
|
307895
308479
|
/***/ }),
|
|
307896
308480
|
|
|
307897
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308481
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js":
|
|
307898
308482
|
/*!****************************************************************************************************************************************!*\
|
|
307899
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308483
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
|
307900
308484
|
\****************************************************************************************************************************************/
|
|
307901
308485
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307902
308486
|
|
|
@@ -307905,7 +308489,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307905
308489
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307906
308490
|
/* harmony export */ "default": () => (/* binding */ _unsupportedIterableToArray)
|
|
307907
308491
|
/* harmony export */ });
|
|
307908
|
-
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308492
|
+
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js");
|
|
307909
308493
|
|
|
307910
308494
|
function _unsupportedIterableToArray(o, minLen) {
|
|
307911
308495
|
if (!o) return;
|
|
@@ -308339,15 +308923,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
308339
308923
|
/* harmony export */ "t": () => (/* binding */ t),
|
|
308340
308924
|
/* harmony export */ "use": () => (/* binding */ use)
|
|
308341
308925
|
/* harmony export */ });
|
|
308342
|
-
/* harmony import */ var _babel_runtime_helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308343
|
-
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308344
|
-
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308345
|
-
/* harmony import */ var _babel_runtime_helpers_esm_assertThisInitialized__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308346
|
-
/* harmony import */ var _babel_runtime_helpers_esm_inherits__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308347
|
-
/* harmony import */ var _babel_runtime_helpers_esm_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308348
|
-
/* harmony import */ var _babel_runtime_helpers_esm_getPrototypeOf__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308349
|
-
/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308350
|
-
/* harmony import */ var _babel_runtime_helpers_esm_toArray__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308926
|
+
/* harmony import */ var _babel_runtime_helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/typeof */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js");
|
|
308927
|
+
/* harmony import */ var _babel_runtime_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js");
|
|
308928
|
+
/* harmony import */ var _babel_runtime_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js");
|
|
308929
|
+
/* harmony import */ var _babel_runtime_helpers_esm_assertThisInitialized__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/assertThisInitialized */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js");
|
|
308930
|
+
/* harmony import */ var _babel_runtime_helpers_esm_inherits__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js");
|
|
308931
|
+
/* harmony import */ var _babel_runtime_helpers_esm_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js");
|
|
308932
|
+
/* harmony import */ var _babel_runtime_helpers_esm_getPrototypeOf__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js");
|
|
308933
|
+
/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js");
|
|
308934
|
+
/* harmony import */ var _babel_runtime_helpers_esm_toArray__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toArray */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js");
|
|
308351
308935
|
|
|
308352
308936
|
|
|
308353
308937
|
|
|
@@ -311227,7 +311811,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
311227
311811
|
/***/ ((module) => {
|
|
311228
311812
|
|
|
311229
311813
|
"use strict";
|
|
311230
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.
|
|
311814
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.65","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs","build:ci":"npm run -s build && npm run -s build:esm","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"../../tools/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core/tree/master/core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^3.5.0-dev.65","@itwin/core-bentley":"workspace:^3.5.0-dev.65","@itwin/core-common":"workspace:^3.5.0-dev.65","@itwin/core-geometry":"workspace:^3.5.0-dev.65","@itwin/core-orbitgt":"workspace:^3.5.0-dev.65","@itwin/core-quantity":"workspace:^3.5.0-dev.65","@itwin/webgl-compatibility":"workspace:^3.5.0-dev.65"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.0","@types/lodash":"^4.14.0","@types/mocha":"^8.2.2","@types/node":"18.11.5","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^7.11.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~4.4.0","webpack":"^5.64.4"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/object-storage-azure":"~1.4.0","@itwin/cloud-agnostic-core":"~1.4.0","@itwin/object-storage-core":"~1.4.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","lodash":"^4.17.10","qs":"^6.5.1","semver":"^7.3.5","superagent":"7.1.3","wms-capabilities":"0.4.0","xml-js":"~1.6.11","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
|
|
311231
311815
|
|
|
311232
311816
|
/***/ }),
|
|
311233
311817
|
|
|
@@ -311405,8 +311989,7 @@ module.exports = JSON.parse('{"$schema":"../../../node_modules/@itwin/presentati
|
|
|
311405
311989
|
/******/ script.parentNode && script.parentNode.removeChild(script);
|
|
311406
311990
|
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
|
|
311407
311991
|
/******/ if(prev) return prev(event);
|
|
311408
|
-
/******/ }
|
|
311409
|
-
/******/ ;
|
|
311992
|
+
/******/ };
|
|
311410
311993
|
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
|
311411
311994
|
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
|
311412
311995
|
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|