@itwin/ecschema-rpcinterface-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 +1411 -834
- 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 +16 -16
- 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) {
|
|
@@ -9744,20 +9744,20 @@ if ($defineProperty) {
|
|
|
9744
9744
|
|
|
9745
9745
|
/***/ }),
|
|
9746
9746
|
|
|
9747
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9747
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js":
|
|
9748
9748
|
/*!**********************************************************************************!*\
|
|
9749
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9749
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js ***!
|
|
9750
9750
|
\**********************************************************************************/
|
|
9751
9751
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
9752
9752
|
|
|
9753
|
-
module.exports = __webpack_require__(/*! ./lib/chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9753
|
+
module.exports = __webpack_require__(/*! ./lib/chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
9754
9754
|
|
|
9755
9755
|
|
|
9756
9756
|
/***/ }),
|
|
9757
9757
|
|
|
9758
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9758
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js":
|
|
9759
9759
|
/*!*************************************************************************************!*\
|
|
9760
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9760
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js ***!
|
|
9761
9761
|
\*************************************************************************************/
|
|
9762
9762
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
9763
9763
|
|
|
@@ -9785,7 +9785,7 @@ exports.AssertionError = __webpack_require__(/*! assertion-error */ "../../commo
|
|
|
9785
9785
|
* Utils for plugins (not exported)
|
|
9786
9786
|
*/
|
|
9787
9787
|
|
|
9788
|
-
var util = __webpack_require__(/*! ./chai/utils */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9788
|
+
var util = __webpack_require__(/*! ./chai/utils */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js");
|
|
9789
9789
|
|
|
9790
9790
|
/**
|
|
9791
9791
|
* # .use(function)
|
|
@@ -9816,50 +9816,50 @@ exports.util = util;
|
|
|
9816
9816
|
* Configuration
|
|
9817
9817
|
*/
|
|
9818
9818
|
|
|
9819
|
-
var config = __webpack_require__(/*! ./chai/config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9819
|
+
var config = __webpack_require__(/*! ./chai/config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
9820
9820
|
exports.config = config;
|
|
9821
9821
|
|
|
9822
9822
|
/*!
|
|
9823
9823
|
* Primary `Assertion` prototype
|
|
9824
9824
|
*/
|
|
9825
9825
|
|
|
9826
|
-
var assertion = __webpack_require__(/*! ./chai/assertion */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9826
|
+
var assertion = __webpack_require__(/*! ./chai/assertion */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js");
|
|
9827
9827
|
exports.use(assertion);
|
|
9828
9828
|
|
|
9829
9829
|
/*!
|
|
9830
9830
|
* Core Assertions
|
|
9831
9831
|
*/
|
|
9832
9832
|
|
|
9833
|
-
var core = __webpack_require__(/*! ./chai/core/assertions */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9833
|
+
var core = __webpack_require__(/*! ./chai/core/assertions */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js");
|
|
9834
9834
|
exports.use(core);
|
|
9835
9835
|
|
|
9836
9836
|
/*!
|
|
9837
9837
|
* Expect interface
|
|
9838
9838
|
*/
|
|
9839
9839
|
|
|
9840
|
-
var expect = __webpack_require__(/*! ./chai/interface/expect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9840
|
+
var expect = __webpack_require__(/*! ./chai/interface/expect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js");
|
|
9841
9841
|
exports.use(expect);
|
|
9842
9842
|
|
|
9843
9843
|
/*!
|
|
9844
9844
|
* Should interface
|
|
9845
9845
|
*/
|
|
9846
9846
|
|
|
9847
|
-
var should = __webpack_require__(/*! ./chai/interface/should */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9847
|
+
var should = __webpack_require__(/*! ./chai/interface/should */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js");
|
|
9848
9848
|
exports.use(should);
|
|
9849
9849
|
|
|
9850
9850
|
/*!
|
|
9851
9851
|
* Assert interface
|
|
9852
9852
|
*/
|
|
9853
9853
|
|
|
9854
|
-
var assert = __webpack_require__(/*! ./chai/interface/assert */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9854
|
+
var assert = __webpack_require__(/*! ./chai/interface/assert */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js");
|
|
9855
9855
|
exports.use(assert);
|
|
9856
9856
|
|
|
9857
9857
|
|
|
9858
9858
|
/***/ }),
|
|
9859
9859
|
|
|
9860
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9860
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js":
|
|
9861
9861
|
/*!***********************************************************************************************!*\
|
|
9862
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9862
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/assertion.js ***!
|
|
9863
9863
|
\***********************************************************************************************/
|
|
9864
9864
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
9865
9865
|
|
|
@@ -9870,7 +9870,7 @@ exports.use(assert);
|
|
|
9870
9870
|
* MIT Licensed
|
|
9871
9871
|
*/
|
|
9872
9872
|
|
|
9873
|
-
var config = __webpack_require__(/*! ./config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
9873
|
+
var config = __webpack_require__(/*! ./config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
9874
9874
|
|
|
9875
9875
|
module.exports = function (_chai, util) {
|
|
9876
9876
|
/*!
|
|
@@ -10042,9 +10042,9 @@ module.exports = function (_chai, util) {
|
|
|
10042
10042
|
|
|
10043
10043
|
/***/ }),
|
|
10044
10044
|
|
|
10045
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10045
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js":
|
|
10046
10046
|
/*!********************************************************************************************!*\
|
|
10047
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10047
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js ***!
|
|
10048
10048
|
\********************************************************************************************/
|
|
10049
10049
|
/***/ ((module) => {
|
|
10050
10050
|
|
|
@@ -10146,9 +10146,9 @@ module.exports = {
|
|
|
10146
10146
|
|
|
10147
10147
|
/***/ }),
|
|
10148
10148
|
|
|
10149
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10149
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js":
|
|
10150
10150
|
/*!*****************************************************************************************************!*\
|
|
10151
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
10151
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/core/assertions.js ***!
|
|
10152
10152
|
\*****************************************************************************************************/
|
|
10153
10153
|
/***/ ((module) => {
|
|
10154
10154
|
|
|
@@ -14009,9 +14009,9 @@ module.exports = function (chai, _) {
|
|
|
14009
14009
|
|
|
14010
14010
|
/***/ }),
|
|
14011
14011
|
|
|
14012
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
14012
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js":
|
|
14013
14013
|
/*!******************************************************************************************************!*\
|
|
14014
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
14014
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/assert.js ***!
|
|
14015
14015
|
\******************************************************************************************************/
|
|
14016
14016
|
/***/ ((module) => {
|
|
14017
14017
|
|
|
@@ -17132,9 +17132,9 @@ module.exports = function (chai, util) {
|
|
|
17132
17132
|
|
|
17133
17133
|
/***/ }),
|
|
17134
17134
|
|
|
17135
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17135
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js":
|
|
17136
17136
|
/*!******************************************************************************************************!*\
|
|
17137
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17137
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/expect.js ***!
|
|
17138
17138
|
\******************************************************************************************************/
|
|
17139
17139
|
/***/ ((module) => {
|
|
17140
17140
|
|
|
@@ -17189,9 +17189,9 @@ module.exports = function (chai, util) {
|
|
|
17189
17189
|
|
|
17190
17190
|
/***/ }),
|
|
17191
17191
|
|
|
17192
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17192
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js":
|
|
17193
17193
|
/*!******************************************************************************************************!*\
|
|
17194
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17194
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/interface/should.js ***!
|
|
17195
17195
|
\******************************************************************************************************/
|
|
17196
17196
|
/***/ ((module) => {
|
|
17197
17197
|
|
|
@@ -17418,9 +17418,9 @@ module.exports = function (chai, util) {
|
|
|
17418
17418
|
|
|
17419
17419
|
/***/ }),
|
|
17420
17420
|
|
|
17421
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17421
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js":
|
|
17422
17422
|
/*!**************************************************************************************************************!*\
|
|
17423
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17423
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js ***!
|
|
17424
17424
|
\**************************************************************************************************************/
|
|
17425
17425
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17426
17426
|
|
|
@@ -17434,11 +17434,11 @@ module.exports = function (chai, util) {
|
|
|
17434
17434
|
* Module dependencies
|
|
17435
17435
|
*/
|
|
17436
17436
|
|
|
17437
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17438
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17439
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17440
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17441
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17437
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
17438
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
17439
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17440
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
17441
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
17442
17442
|
|
|
17443
17443
|
/*!
|
|
17444
17444
|
* Module variables
|
|
@@ -17580,9 +17580,9 @@ module.exports = function addChainableMethod(ctx, name, method, chainingBehavior
|
|
|
17580
17580
|
|
|
17581
17581
|
/***/ }),
|
|
17582
17582
|
|
|
17583
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17583
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js":
|
|
17584
17584
|
/*!**********************************************************************************************************!*\
|
|
17585
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17585
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js ***!
|
|
17586
17586
|
\**********************************************************************************************************/
|
|
17587
17587
|
/***/ ((module) => {
|
|
17588
17588
|
|
|
@@ -17650,9 +17650,9 @@ module.exports = function addLengthGuard (fn, assertionName, isChainable) {
|
|
|
17650
17650
|
|
|
17651
17651
|
/***/ }),
|
|
17652
17652
|
|
|
17653
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17653
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js":
|
|
17654
17654
|
/*!*****************************************************************************************************!*\
|
|
17655
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17655
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js ***!
|
|
17656
17656
|
\*****************************************************************************************************/
|
|
17657
17657
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17658
17658
|
|
|
@@ -17662,11 +17662,11 @@ module.exports = function addLengthGuard (fn, assertionName, isChainable) {
|
|
|
17662
17662
|
* MIT Licensed
|
|
17663
17663
|
*/
|
|
17664
17664
|
|
|
17665
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17666
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17667
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17668
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17669
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17665
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
17666
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
17667
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17668
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
17669
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
17670
17670
|
|
|
17671
17671
|
/**
|
|
17672
17672
|
* ### .addMethod(ctx, name, method)
|
|
@@ -17728,9 +17728,9 @@ module.exports = function addMethod(ctx, name, method) {
|
|
|
17728
17728
|
|
|
17729
17729
|
/***/ }),
|
|
17730
17730
|
|
|
17731
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17731
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js":
|
|
17732
17732
|
/*!*******************************************************************************************************!*\
|
|
17733
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17733
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js ***!
|
|
17734
17734
|
\*******************************************************************************************************/
|
|
17735
17735
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17736
17736
|
|
|
@@ -17740,10 +17740,10 @@ module.exports = function addMethod(ctx, name, method) {
|
|
|
17740
17740
|
* MIT Licensed
|
|
17741
17741
|
*/
|
|
17742
17742
|
|
|
17743
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17744
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17745
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17746
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17743
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
17744
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17745
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
17746
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
17747
17747
|
|
|
17748
17748
|
/**
|
|
17749
17749
|
* ### .addProperty(ctx, name, getter)
|
|
@@ -17810,9 +17810,9 @@ module.exports = function addProperty(ctx, name, getter) {
|
|
|
17810
17810
|
|
|
17811
17811
|
/***/ }),
|
|
17812
17812
|
|
|
17813
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17813
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js":
|
|
17814
17814
|
/*!************************************************************************************************************!*\
|
|
17815
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17815
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js ***!
|
|
17816
17816
|
\************************************************************************************************************/
|
|
17817
17817
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17818
17818
|
|
|
@@ -17826,7 +17826,7 @@ module.exports = function addProperty(ctx, name, getter) {
|
|
|
17826
17826
|
* Module dependencies
|
|
17827
17827
|
*/
|
|
17828
17828
|
|
|
17829
|
-
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17829
|
+
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
17830
17830
|
|
|
17831
17831
|
/**
|
|
17832
17832
|
* ### .compareByInspect(mixed, mixed)
|
|
@@ -17851,9 +17851,9 @@ module.exports = function compareByInspect(a, b) {
|
|
|
17851
17851
|
|
|
17852
17852
|
/***/ }),
|
|
17853
17853
|
|
|
17854
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17854
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js":
|
|
17855
17855
|
/*!*******************************************************************************************************!*\
|
|
17856
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17856
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js ***!
|
|
17857
17857
|
\*******************************************************************************************************/
|
|
17858
17858
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17859
17859
|
|
|
@@ -17878,7 +17878,7 @@ module.exports = function compareByInspect(a, b) {
|
|
|
17878
17878
|
*/
|
|
17879
17879
|
|
|
17880
17880
|
var AssertionError = __webpack_require__(/*! assertion-error */ "../../common/temp/node_modules/.pnpm/assertion-error@1.1.0/node_modules/assertion-error/index.js");
|
|
17881
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17881
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
17882
17882
|
var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
|
|
17883
17883
|
|
|
17884
17884
|
module.exports = function expectTypes(obj, types) {
|
|
@@ -17912,9 +17912,9 @@ module.exports = function expectTypes(obj, types) {
|
|
|
17912
17912
|
|
|
17913
17913
|
/***/ }),
|
|
17914
17914
|
|
|
17915
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17915
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js":
|
|
17916
17916
|
/*!************************************************************************************************!*\
|
|
17917
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17917
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js ***!
|
|
17918
17918
|
\************************************************************************************************/
|
|
17919
17919
|
/***/ ((module) => {
|
|
17920
17920
|
|
|
@@ -17955,9 +17955,9 @@ module.exports = function flag(obj, key, value) {
|
|
|
17955
17955
|
|
|
17956
17956
|
/***/ }),
|
|
17957
17957
|
|
|
17958
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17958
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js":
|
|
17959
17959
|
/*!*****************************************************************************************************!*\
|
|
17960
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17960
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js ***!
|
|
17961
17961
|
\*****************************************************************************************************/
|
|
17962
17962
|
/***/ ((module) => {
|
|
17963
17963
|
|
|
@@ -17985,9 +17985,9 @@ module.exports = function getActual(obj, args) {
|
|
|
17985
17985
|
|
|
17986
17986
|
/***/ }),
|
|
17987
17987
|
|
|
17988
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
17988
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js":
|
|
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/getMessage.js ***!
|
|
17991
17991
|
\******************************************************************************************************/
|
|
17992
17992
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
17993
17993
|
|
|
@@ -18001,9 +18001,9 @@ module.exports = function getActual(obj, args) {
|
|
|
18001
18001
|
* Module dependencies
|
|
18002
18002
|
*/
|
|
18003
18003
|
|
|
18004
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18005
|
-
, getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18006
|
-
, objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18004
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js")
|
|
18005
|
+
, getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js")
|
|
18006
|
+
, objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js");
|
|
18007
18007
|
|
|
18008
18008
|
/**
|
|
18009
18009
|
* ### .getMessage(object, message, negateMessage)
|
|
@@ -18045,15 +18045,15 @@ module.exports = function getMessage(obj, args) {
|
|
|
18045
18045
|
|
|
18046
18046
|
/***/ }),
|
|
18047
18047
|
|
|
18048
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18048
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js":
|
|
18049
18049
|
/*!*******************************************************************************************************!*\
|
|
18050
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18050
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js ***!
|
|
18051
18051
|
\*******************************************************************************************************/
|
|
18052
18052
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18053
18053
|
|
|
18054
18054
|
var type = __webpack_require__(/*! type-detect */ "../../common/temp/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect/type-detect.js");
|
|
18055
18055
|
|
|
18056
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18056
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18057
18057
|
|
|
18058
18058
|
function isObjectType(obj) {
|
|
18059
18059
|
var objectType = type(obj);
|
|
@@ -18110,9 +18110,9 @@ module.exports = function getOperator(obj, args) {
|
|
|
18110
18110
|
|
|
18111
18111
|
/***/ }),
|
|
18112
18112
|
|
|
18113
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18113
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js":
|
|
18114
18114
|
/*!**********************************************************************************************************************!*\
|
|
18115
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18115
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js ***!
|
|
18116
18116
|
\**********************************************************************************************************************/
|
|
18117
18117
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18118
18118
|
|
|
@@ -18126,7 +18126,7 @@ module.exports = function getOperator(obj, args) {
|
|
|
18126
18126
|
* Module dependencies
|
|
18127
18127
|
*/
|
|
18128
18128
|
|
|
18129
|
-
var getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18129
|
+
var getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js");
|
|
18130
18130
|
|
|
18131
18131
|
/**
|
|
18132
18132
|
* ### .getOwnEnumerableProperties(object)
|
|
@@ -18149,9 +18149,9 @@ module.exports = function getOwnEnumerableProperties(obj) {
|
|
|
18149
18149
|
|
|
18150
18150
|
/***/ }),
|
|
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/getOwnEnumerablePropertySymbols.js":
|
|
18153
18153
|
/*!***************************************************************************************************************************!*\
|
|
18154
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18154
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js ***!
|
|
18155
18155
|
\***************************************************************************************************************************/
|
|
18156
18156
|
/***/ ((module) => {
|
|
18157
18157
|
|
|
@@ -18186,9 +18186,9 @@ module.exports = function getOwnEnumerablePropertySymbols(obj) {
|
|
|
18186
18186
|
|
|
18187
18187
|
/***/ }),
|
|
18188
18188
|
|
|
18189
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18189
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js":
|
|
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/getProperties.js ***!
|
|
18192
18192
|
\*********************************************************************************************************/
|
|
18193
18193
|
/***/ ((module) => {
|
|
18194
18194
|
|
|
@@ -18232,9 +18232,9 @@ module.exports = function getProperties(object) {
|
|
|
18232
18232
|
|
|
18233
18233
|
/***/ }),
|
|
18234
18234
|
|
|
18235
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18235
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js":
|
|
18236
18236
|
/*!*************************************************************************************************!*\
|
|
18237
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18237
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/index.js ***!
|
|
18238
18238
|
\*************************************************************************************************/
|
|
18239
18239
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
18240
18240
|
|
|
@@ -18254,7 +18254,7 @@ var pathval = __webpack_require__(/*! pathval */ "../../common/temp/node_modules
|
|
|
18254
18254
|
* test utility
|
|
18255
18255
|
*/
|
|
18256
18256
|
|
|
18257
|
-
exports.test = __webpack_require__(/*! ./test */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18257
|
+
exports.test = __webpack_require__(/*! ./test */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js");
|
|
18258
18258
|
|
|
18259
18259
|
/*!
|
|
18260
18260
|
* type utility
|
|
@@ -18265,49 +18265,49 @@ exports.type = __webpack_require__(/*! type-detect */ "../../common/temp/node_mo
|
|
|
18265
18265
|
/*!
|
|
18266
18266
|
* expectTypes utility
|
|
18267
18267
|
*/
|
|
18268
|
-
exports.expectTypes = __webpack_require__(/*! ./expectTypes */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18268
|
+
exports.expectTypes = __webpack_require__(/*! ./expectTypes */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/expectTypes.js");
|
|
18269
18269
|
|
|
18270
18270
|
/*!
|
|
18271
18271
|
* message utility
|
|
18272
18272
|
*/
|
|
18273
18273
|
|
|
18274
|
-
exports.getMessage = __webpack_require__(/*! ./getMessage */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18274
|
+
exports.getMessage = __webpack_require__(/*! ./getMessage */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getMessage.js");
|
|
18275
18275
|
|
|
18276
18276
|
/*!
|
|
18277
18277
|
* actual utility
|
|
18278
18278
|
*/
|
|
18279
18279
|
|
|
18280
|
-
exports.getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18280
|
+
exports.getActual = __webpack_require__(/*! ./getActual */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getActual.js");
|
|
18281
18281
|
|
|
18282
18282
|
/*!
|
|
18283
18283
|
* Inspect util
|
|
18284
18284
|
*/
|
|
18285
18285
|
|
|
18286
|
-
exports.inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18286
|
+
exports.inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18287
18287
|
|
|
18288
18288
|
/*!
|
|
18289
18289
|
* Object Display util
|
|
18290
18290
|
*/
|
|
18291
18291
|
|
|
18292
|
-
exports.objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18292
|
+
exports.objDisplay = __webpack_require__(/*! ./objDisplay */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js");
|
|
18293
18293
|
|
|
18294
18294
|
/*!
|
|
18295
18295
|
* Flag utility
|
|
18296
18296
|
*/
|
|
18297
18297
|
|
|
18298
|
-
exports.flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18298
|
+
exports.flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18299
18299
|
|
|
18300
18300
|
/*!
|
|
18301
18301
|
* Flag transferring utility
|
|
18302
18302
|
*/
|
|
18303
18303
|
|
|
18304
|
-
exports.transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18304
|
+
exports.transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18305
18305
|
|
|
18306
18306
|
/*!
|
|
18307
18307
|
* Deep equal utility
|
|
18308
18308
|
*/
|
|
18309
18309
|
|
|
18310
|
-
exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@
|
|
18310
|
+
exports.eql = __webpack_require__(/*! deep-eql */ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js");
|
|
18311
18311
|
|
|
18312
18312
|
/*!
|
|
18313
18313
|
* Deep path info
|
|
@@ -18331,55 +18331,55 @@ exports.getName = __webpack_require__(/*! get-func-name */ "../../common/temp/no
|
|
|
18331
18331
|
* add Property
|
|
18332
18332
|
*/
|
|
18333
18333
|
|
|
18334
|
-
exports.addProperty = __webpack_require__(/*! ./addProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18334
|
+
exports.addProperty = __webpack_require__(/*! ./addProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addProperty.js");
|
|
18335
18335
|
|
|
18336
18336
|
/*!
|
|
18337
18337
|
* add Method
|
|
18338
18338
|
*/
|
|
18339
18339
|
|
|
18340
|
-
exports.addMethod = __webpack_require__(/*! ./addMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18340
|
+
exports.addMethod = __webpack_require__(/*! ./addMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addMethod.js");
|
|
18341
18341
|
|
|
18342
18342
|
/*!
|
|
18343
18343
|
* overwrite Property
|
|
18344
18344
|
*/
|
|
18345
18345
|
|
|
18346
|
-
exports.overwriteProperty = __webpack_require__(/*! ./overwriteProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18346
|
+
exports.overwriteProperty = __webpack_require__(/*! ./overwriteProperty */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js");
|
|
18347
18347
|
|
|
18348
18348
|
/*!
|
|
18349
18349
|
* overwrite Method
|
|
18350
18350
|
*/
|
|
18351
18351
|
|
|
18352
|
-
exports.overwriteMethod = __webpack_require__(/*! ./overwriteMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18352
|
+
exports.overwriteMethod = __webpack_require__(/*! ./overwriteMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js");
|
|
18353
18353
|
|
|
18354
18354
|
/*!
|
|
18355
18355
|
* Add a chainable method
|
|
18356
18356
|
*/
|
|
18357
18357
|
|
|
18358
|
-
exports.addChainableMethod = __webpack_require__(/*! ./addChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18358
|
+
exports.addChainableMethod = __webpack_require__(/*! ./addChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addChainableMethod.js");
|
|
18359
18359
|
|
|
18360
18360
|
/*!
|
|
18361
18361
|
* Overwrite chainable method
|
|
18362
18362
|
*/
|
|
18363
18363
|
|
|
18364
|
-
exports.overwriteChainableMethod = __webpack_require__(/*! ./overwriteChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18364
|
+
exports.overwriteChainableMethod = __webpack_require__(/*! ./overwriteChainableMethod */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js");
|
|
18365
18365
|
|
|
18366
18366
|
/*!
|
|
18367
18367
|
* Compare by inspect method
|
|
18368
18368
|
*/
|
|
18369
18369
|
|
|
18370
|
-
exports.compareByInspect = __webpack_require__(/*! ./compareByInspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18370
|
+
exports.compareByInspect = __webpack_require__(/*! ./compareByInspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/compareByInspect.js");
|
|
18371
18371
|
|
|
18372
18372
|
/*!
|
|
18373
18373
|
* Get own enumerable property symbols method
|
|
18374
18374
|
*/
|
|
18375
18375
|
|
|
18376
|
-
exports.getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18376
|
+
exports.getOwnEnumerablePropertySymbols = __webpack_require__(/*! ./getOwnEnumerablePropertySymbols */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js");
|
|
18377
18377
|
|
|
18378
18378
|
/*!
|
|
18379
18379
|
* Get own enumerable properties method
|
|
18380
18380
|
*/
|
|
18381
18381
|
|
|
18382
|
-
exports.getOwnEnumerableProperties = __webpack_require__(/*! ./getOwnEnumerableProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18382
|
+
exports.getOwnEnumerableProperties = __webpack_require__(/*! ./getOwnEnumerableProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js");
|
|
18383
18383
|
|
|
18384
18384
|
/*!
|
|
18385
18385
|
* Checks error against a given set of criteria
|
|
@@ -18391,37 +18391,37 @@ exports.checkError = __webpack_require__(/*! check-error */ "../../common/temp/n
|
|
|
18391
18391
|
* Proxify util
|
|
18392
18392
|
*/
|
|
18393
18393
|
|
|
18394
|
-
exports.proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18394
|
+
exports.proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
18395
18395
|
|
|
18396
18396
|
/*!
|
|
18397
18397
|
* addLengthGuard util
|
|
18398
18398
|
*/
|
|
18399
18399
|
|
|
18400
|
-
exports.addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18400
|
+
exports.addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
18401
18401
|
|
|
18402
18402
|
/*!
|
|
18403
18403
|
* isProxyEnabled helper
|
|
18404
18404
|
*/
|
|
18405
18405
|
|
|
18406
|
-
exports.isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18406
|
+
exports.isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18407
18407
|
|
|
18408
18408
|
/*!
|
|
18409
18409
|
* isNaN method
|
|
18410
18410
|
*/
|
|
18411
18411
|
|
|
18412
|
-
exports.isNaN = __webpack_require__(/*! ./isNaN */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18412
|
+
exports.isNaN = __webpack_require__(/*! ./isNaN */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js");
|
|
18413
18413
|
|
|
18414
18414
|
/*!
|
|
18415
18415
|
* getOperator method
|
|
18416
18416
|
*/
|
|
18417
18417
|
|
|
18418
|
-
exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18418
|
+
exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getOperator.js");
|
|
18419
18419
|
|
|
18420
18420
|
/***/ }),
|
|
18421
18421
|
|
|
18422
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18422
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js":
|
|
18423
18423
|
/*!***************************************************************************************************!*\
|
|
18424
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18424
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js ***!
|
|
18425
18425
|
\***************************************************************************************************/
|
|
18426
18426
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18427
18427
|
|
|
@@ -18429,8 +18429,8 @@ exports.getOperator = __webpack_require__(/*! ./getOperator */ "../../common/tem
|
|
|
18429
18429
|
// https://github.com/joyent/node/blob/f8c335d0caf47f16d31413f89aa28eda3878e3aa/lib/util.js
|
|
18430
18430
|
|
|
18431
18431
|
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");
|
|
18432
|
-
var loupe = __webpack_require__(/*! loupe */ "../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
18433
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18432
|
+
var loupe = __webpack_require__(/*! loupe */ "../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js");
|
|
18433
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18434
18434
|
|
|
18435
18435
|
module.exports = inspect;
|
|
18436
18436
|
|
|
@@ -18462,9 +18462,9 @@ function inspect(obj, showHidden, depth, colors) {
|
|
|
18462
18462
|
|
|
18463
18463
|
/***/ }),
|
|
18464
18464
|
|
|
18465
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18465
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js":
|
|
18466
18466
|
/*!*************************************************************************************************!*\
|
|
18467
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18467
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isNaN.js ***!
|
|
18468
18468
|
\*************************************************************************************************/
|
|
18469
18469
|
/***/ ((module) => {
|
|
18470
18470
|
|
|
@@ -18498,13 +18498,13 @@ module.exports = Number.isNaN || isNaN;
|
|
|
18498
18498
|
|
|
18499
18499
|
/***/ }),
|
|
18500
18500
|
|
|
18501
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18501
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js":
|
|
18502
18502
|
/*!**********************************************************************************************************!*\
|
|
18503
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18503
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js ***!
|
|
18504
18504
|
\**********************************************************************************************************/
|
|
18505
18505
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18506
18506
|
|
|
18507
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18507
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18508
18508
|
|
|
18509
18509
|
/*!
|
|
18510
18510
|
* Chai - isProxyEnabled helper
|
|
@@ -18532,9 +18532,9 @@ module.exports = function isProxyEnabled() {
|
|
|
18532
18532
|
|
|
18533
18533
|
/***/ }),
|
|
18534
18534
|
|
|
18535
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18535
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js":
|
|
18536
18536
|
/*!******************************************************************************************************!*\
|
|
18537
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18537
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/objDisplay.js ***!
|
|
18538
18538
|
\******************************************************************************************************/
|
|
18539
18539
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18540
18540
|
|
|
@@ -18548,8 +18548,8 @@ module.exports = function isProxyEnabled() {
|
|
|
18548
18548
|
* Module dependencies
|
|
18549
18549
|
*/
|
|
18550
18550
|
|
|
18551
|
-
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18552
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18551
|
+
var inspect = __webpack_require__(/*! ./inspect */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/inspect.js");
|
|
18552
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18553
18553
|
|
|
18554
18554
|
/**
|
|
18555
18555
|
* ### .objDisplay(object)
|
|
@@ -18592,9 +18592,9 @@ module.exports = function objDisplay(obj) {
|
|
|
18592
18592
|
|
|
18593
18593
|
/***/ }),
|
|
18594
18594
|
|
|
18595
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18595
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js":
|
|
18596
18596
|
/*!********************************************************************************************************************!*\
|
|
18597
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18597
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js ***!
|
|
18598
18598
|
\********************************************************************************************************************/
|
|
18599
18599
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18600
18600
|
|
|
@@ -18604,8 +18604,8 @@ module.exports = function objDisplay(obj) {
|
|
|
18604
18604
|
* MIT Licensed
|
|
18605
18605
|
*/
|
|
18606
18606
|
|
|
18607
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18608
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18607
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18608
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18609
18609
|
|
|
18610
18610
|
/**
|
|
18611
18611
|
* ### .overwriteChainableMethod(ctx, name, method, chainingBehavior)
|
|
@@ -18671,9 +18671,9 @@ module.exports = function overwriteChainableMethod(ctx, name, method, chainingBe
|
|
|
18671
18671
|
|
|
18672
18672
|
/***/ }),
|
|
18673
18673
|
|
|
18674
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18674
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js":
|
|
18675
18675
|
/*!***********************************************************************************************************!*\
|
|
18676
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18676
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteMethod.js ***!
|
|
18677
18677
|
\***********************************************************************************************************/
|
|
18678
18678
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18679
18679
|
|
|
@@ -18683,11 +18683,11 @@ module.exports = function overwriteChainableMethod(ctx, name, method, chainingBe
|
|
|
18683
18683
|
* MIT Licensed
|
|
18684
18684
|
*/
|
|
18685
18685
|
|
|
18686
|
-
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18687
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18688
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18689
|
-
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18690
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18686
|
+
var addLengthGuard = __webpack_require__(/*! ./addLengthGuard */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/addLengthGuard.js");
|
|
18687
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18688
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18689
|
+
var proxify = __webpack_require__(/*! ./proxify */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js");
|
|
18690
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18691
18691
|
|
|
18692
18692
|
/**
|
|
18693
18693
|
* ### .overwriteMethod(ctx, name, fn)
|
|
@@ -18773,9 +18773,9 @@ module.exports = function overwriteMethod(ctx, name, method) {
|
|
|
18773
18773
|
|
|
18774
18774
|
/***/ }),
|
|
18775
18775
|
|
|
18776
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18776
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js":
|
|
18777
18777
|
/*!*************************************************************************************************************!*\
|
|
18778
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18778
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/overwriteProperty.js ***!
|
|
18779
18779
|
\*************************************************************************************************************/
|
|
18780
18780
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18781
18781
|
|
|
@@ -18785,10 +18785,10 @@ module.exports = function overwriteMethod(ctx, name, method) {
|
|
|
18785
18785
|
* MIT Licensed
|
|
18786
18786
|
*/
|
|
18787
18787
|
|
|
18788
|
-
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18789
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18790
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18791
|
-
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18788
|
+
var chai = __webpack_require__(/*! ../../chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai.js");
|
|
18789
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18790
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18791
|
+
var transferFlags = __webpack_require__(/*! ./transferFlags */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js");
|
|
18792
18792
|
|
|
18793
18793
|
/**
|
|
18794
18794
|
* ### .overwriteProperty(ctx, name, fn)
|
|
@@ -18875,16 +18875,16 @@ module.exports = function overwriteProperty(ctx, name, getter) {
|
|
|
18875
18875
|
|
|
18876
18876
|
/***/ }),
|
|
18877
18877
|
|
|
18878
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18878
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js":
|
|
18879
18879
|
/*!***************************************************************************************************!*\
|
|
18880
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18880
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/proxify.js ***!
|
|
18881
18881
|
\***************************************************************************************************/
|
|
18882
18882
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
18883
18883
|
|
|
18884
|
-
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18885
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18886
|
-
var getProperties = __webpack_require__(/*! ./getProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18887
|
-
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
18884
|
+
var config = __webpack_require__(/*! ../config */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/config.js");
|
|
18885
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
18886
|
+
var getProperties = __webpack_require__(/*! ./getProperties */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/getProperties.js");
|
|
18887
|
+
var isProxyEnabled = __webpack_require__(/*! ./isProxyEnabled */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/isProxyEnabled.js");
|
|
18888
18888
|
|
|
18889
18889
|
/*!
|
|
18890
18890
|
* Chai - proxify utility
|
|
@@ -19032,9 +19032,9 @@ function stringDistanceCapped(strA, strB, cap) {
|
|
|
19032
19032
|
|
|
19033
19033
|
/***/ }),
|
|
19034
19034
|
|
|
19035
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19035
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js":
|
|
19036
19036
|
/*!************************************************************************************************!*\
|
|
19037
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19037
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/test.js ***!
|
|
19038
19038
|
\************************************************************************************************/
|
|
19039
19039
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
19040
19040
|
|
|
@@ -19048,7 +19048,7 @@ function stringDistanceCapped(strA, strB, cap) {
|
|
|
19048
19048
|
* Module dependencies
|
|
19049
19049
|
*/
|
|
19050
19050
|
|
|
19051
|
-
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19051
|
+
var flag = __webpack_require__(/*! ./flag */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/flag.js");
|
|
19052
19052
|
|
|
19053
19053
|
/**
|
|
19054
19054
|
* ### .test(object, expression)
|
|
@@ -19070,9 +19070,9 @@ module.exports = function test(obj, args) {
|
|
|
19070
19070
|
|
|
19071
19071
|
/***/ }),
|
|
19072
19072
|
|
|
19073
|
-
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19073
|
+
/***/ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js":
|
|
19074
19074
|
/*!*********************************************************************************************************!*\
|
|
19075
|
-
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
19075
|
+
!*** ../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/lib/chai/utils/transferFlags.js ***!
|
|
19076
19076
|
\*********************************************************************************************************/
|
|
19077
19077
|
/***/ ((module) => {
|
|
19078
19078
|
|
|
@@ -20136,9 +20136,9 @@ module.exports = function deepAssign(target) {
|
|
|
20136
20136
|
|
|
20137
20137
|
/***/ }),
|
|
20138
20138
|
|
|
20139
|
-
/***/ "../../common/temp/node_modules/.pnpm/deep-eql@
|
|
20139
|
+
/***/ "../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js":
|
|
20140
20140
|
/*!******************************************************************************************!*\
|
|
20141
|
-
!*** ../../common/temp/node_modules/.pnpm/deep-eql@
|
|
20141
|
+
!*** ../../common/temp/node_modules/.pnpm/deep-eql@4.1.2/node_modules/deep-eql/index.js ***!
|
|
20142
20142
|
\******************************************************************************************/
|
|
20143
20143
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
20144
20144
|
|
|
@@ -20157,10 +20157,10 @@ function FakeMap() {
|
|
|
20157
20157
|
}
|
|
20158
20158
|
|
|
20159
20159
|
FakeMap.prototype = {
|
|
20160
|
-
get: function
|
|
20160
|
+
get: function get(key) {
|
|
20161
20161
|
return key[this._key];
|
|
20162
20162
|
},
|
|
20163
|
-
set: function
|
|
20163
|
+
set: function set(key, value) {
|
|
20164
20164
|
if (Object.isExtensible(key)) {
|
|
20165
20165
|
Object.defineProperty(key, this._key, {
|
|
20166
20166
|
value: value,
|
|
@@ -20352,8 +20352,9 @@ function extensiveDeepEqualByType(leftHandOperand, rightHandOperand, leftHandTyp
|
|
|
20352
20352
|
case 'function':
|
|
20353
20353
|
case 'WeakMap':
|
|
20354
20354
|
case 'WeakSet':
|
|
20355
|
-
case 'Error':
|
|
20356
20355
|
return leftHandOperand === rightHandOperand;
|
|
20356
|
+
case 'Error':
|
|
20357
|
+
return keysEqual(leftHandOperand, rightHandOperand, [ 'name', 'message', 'code' ], options);
|
|
20357
20358
|
case 'Arguments':
|
|
20358
20359
|
case 'Int8Array':
|
|
20359
20360
|
case 'Uint8Array':
|
|
@@ -20378,6 +20379,19 @@ function extensiveDeepEqualByType(leftHandOperand, rightHandOperand, leftHandTyp
|
|
|
20378
20379
|
return entriesEqual(leftHandOperand, rightHandOperand, options);
|
|
20379
20380
|
case 'Map':
|
|
20380
20381
|
return entriesEqual(leftHandOperand, rightHandOperand, options);
|
|
20382
|
+
case 'Temporal.PlainDate':
|
|
20383
|
+
case 'Temporal.PlainTime':
|
|
20384
|
+
case 'Temporal.PlainDateTime':
|
|
20385
|
+
case 'Temporal.Instant':
|
|
20386
|
+
case 'Temporal.ZonedDateTime':
|
|
20387
|
+
case 'Temporal.PlainYearMonth':
|
|
20388
|
+
case 'Temporal.PlainMonthDay':
|
|
20389
|
+
return leftHandOperand.equals(rightHandOperand);
|
|
20390
|
+
case 'Temporal.Duration':
|
|
20391
|
+
return leftHandOperand.total('nanoseconds') === rightHandOperand.total('nanoseconds');
|
|
20392
|
+
case 'Temporal.TimeZone':
|
|
20393
|
+
case 'Temporal.Calendar':
|
|
20394
|
+
return leftHandOperand.toString() === rightHandOperand.toString();
|
|
20381
20395
|
default:
|
|
20382
20396
|
return objectEqual(leftHandOperand, rightHandOperand, options);
|
|
20383
20397
|
}
|
|
@@ -20523,6 +20537,11 @@ function getEnumerableKeys(target) {
|
|
|
20523
20537
|
return keys;
|
|
20524
20538
|
}
|
|
20525
20539
|
|
|
20540
|
+
function getNonEnumerableSymbols(target) {
|
|
20541
|
+
var keys = Object.getOwnPropertySymbols(target);
|
|
20542
|
+
return keys;
|
|
20543
|
+
}
|
|
20544
|
+
|
|
20526
20545
|
/*!
|
|
20527
20546
|
* Determines if two objects have matching values, given a set of keys. Defers to deepEqual for the equality check of
|
|
20528
20547
|
* each key. If any value of the given key is not equal, the function will return false (early).
|
|
@@ -20555,14 +20574,16 @@ function keysEqual(leftHandOperand, rightHandOperand, keys, options) {
|
|
|
20555
20574
|
* @param {Object} [options] (Optional)
|
|
20556
20575
|
* @return {Boolean} result
|
|
20557
20576
|
*/
|
|
20558
|
-
|
|
20559
20577
|
function objectEqual(leftHandOperand, rightHandOperand, options) {
|
|
20560
20578
|
var leftHandKeys = getEnumerableKeys(leftHandOperand);
|
|
20561
20579
|
var rightHandKeys = getEnumerableKeys(rightHandOperand);
|
|
20580
|
+
var leftHandSymbols = getNonEnumerableSymbols(leftHandOperand);
|
|
20581
|
+
var rightHandSymbols = getNonEnumerableSymbols(rightHandOperand);
|
|
20582
|
+
leftHandKeys = leftHandKeys.concat(leftHandSymbols);
|
|
20583
|
+
rightHandKeys = rightHandKeys.concat(rightHandSymbols);
|
|
20584
|
+
|
|
20562
20585
|
if (leftHandKeys.length && leftHandKeys.length === rightHandKeys.length) {
|
|
20563
|
-
leftHandKeys.sort()
|
|
20564
|
-
rightHandKeys.sort();
|
|
20565
|
-
if (iterableEqual(leftHandKeys, rightHandKeys) === false) {
|
|
20586
|
+
if (iterableEqual(mapSymbols(leftHandKeys).sort(), mapSymbols(rightHandKeys).sort()) === false) {
|
|
20566
20587
|
return false;
|
|
20567
20588
|
}
|
|
20568
20589
|
return keysEqual(leftHandOperand, rightHandOperand, leftHandKeys, options);
|
|
@@ -20599,6 +20620,16 @@ function isPrimitive(value) {
|
|
|
20599
20620
|
return value === null || typeof value !== 'object';
|
|
20600
20621
|
}
|
|
20601
20622
|
|
|
20623
|
+
function mapSymbols(arr) {
|
|
20624
|
+
return arr.map(function mapSymbol(entry) {
|
|
20625
|
+
if (typeof entry === 'symbol') {
|
|
20626
|
+
return entry.toString();
|
|
20627
|
+
}
|
|
20628
|
+
|
|
20629
|
+
return entry;
|
|
20630
|
+
});
|
|
20631
|
+
}
|
|
20632
|
+
|
|
20602
20633
|
|
|
20603
20634
|
/***/ }),
|
|
20604
20635
|
|
|
@@ -21950,8 +21981,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21950
21981
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21951
21982
|
/* harmony export */ "default": () => (/* binding */ Browser)
|
|
21952
21983
|
/* harmony export */ });
|
|
21953
|
-
/* 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.
|
|
21954
|
-
/* 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.
|
|
21984
|
+
/* 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");
|
|
21985
|
+
/* 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");
|
|
21955
21986
|
|
|
21956
21987
|
|
|
21957
21988
|
|
|
@@ -39731,9 +39762,9 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
39731
39762
|
|
|
39732
39763
|
/***/ }),
|
|
39733
39764
|
|
|
39734
|
-
/***/ "../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
39765
|
+
/***/ "../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js":
|
|
39735
39766
|
/*!************************************************************************************!*\
|
|
39736
|
-
!*** ../../common/temp/node_modules/.pnpm/loupe@2.3.
|
|
39767
|
+
!*** ../../common/temp/node_modules/.pnpm/loupe@2.3.6/node_modules/loupe/loupe.js ***!
|
|
39737
39768
|
\************************************************************************************/
|
|
39738
39769
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
39739
39770
|
|
|
@@ -40117,9 +40148,15 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40117
40148
|
}
|
|
40118
40149
|
|
|
40119
40150
|
function inspectDate(dateObject, options) {
|
|
40120
|
-
|
|
40121
|
-
|
|
40122
|
-
|
|
40151
|
+
var stringRepresentation = dateObject.toJSON();
|
|
40152
|
+
|
|
40153
|
+
if (stringRepresentation === null) {
|
|
40154
|
+
return 'Invalid Date';
|
|
40155
|
+
}
|
|
40156
|
+
|
|
40157
|
+
var split = stringRepresentation.split('T');
|
|
40158
|
+
var date = split[0]; // If we need to - truncate the time portion, but never the date
|
|
40159
|
+
|
|
40123
40160
|
return options.stylize("".concat(date, "T").concat(truncate(split[1], options.truncate - date.length - 1)), 'date');
|
|
40124
40161
|
}
|
|
40125
40162
|
|
|
@@ -40409,14 +40446,39 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40409
40446
|
|
|
40410
40447
|
try {
|
|
40411
40448
|
// eslint-disable-next-line global-require
|
|
40412
|
-
var nodeUtil = __webpack_require__(/*! util */ "?
|
|
40449
|
+
var nodeUtil = __webpack_require__(/*! util */ "?1120");
|
|
40413
40450
|
|
|
40414
40451
|
nodeInspect = nodeUtil.inspect ? nodeUtil.inspect.custom : false;
|
|
40415
40452
|
} catch (noNodeInspect) {
|
|
40416
40453
|
nodeInspect = false;
|
|
40417
40454
|
}
|
|
40418
40455
|
|
|
40419
|
-
|
|
40456
|
+
function FakeMap() {
|
|
40457
|
+
// eslint-disable-next-line prefer-template
|
|
40458
|
+
this.key = 'chai/loupe__' + Math.random() + Date.now();
|
|
40459
|
+
}
|
|
40460
|
+
|
|
40461
|
+
FakeMap.prototype = {
|
|
40462
|
+
// eslint-disable-next-line object-shorthand
|
|
40463
|
+
get: function get(key) {
|
|
40464
|
+
return key[this.key];
|
|
40465
|
+
},
|
|
40466
|
+
// eslint-disable-next-line object-shorthand
|
|
40467
|
+
has: function has(key) {
|
|
40468
|
+
return this.key in key;
|
|
40469
|
+
},
|
|
40470
|
+
// eslint-disable-next-line object-shorthand
|
|
40471
|
+
set: function set(key, value) {
|
|
40472
|
+
if (Object.isExtensible(key)) {
|
|
40473
|
+
Object.defineProperty(key, this.key, {
|
|
40474
|
+
// eslint-disable-next-line object-shorthand
|
|
40475
|
+
value: value,
|
|
40476
|
+
configurable: true
|
|
40477
|
+
});
|
|
40478
|
+
}
|
|
40479
|
+
}
|
|
40480
|
+
};
|
|
40481
|
+
var constructorMap = new (typeof WeakMap === 'function' ? WeakMap : FakeMap)();
|
|
40420
40482
|
var stringTagMap = {};
|
|
40421
40483
|
var baseTypesMap = {
|
|
40422
40484
|
undefined: function undefined$1(value, options) {
|
|
@@ -40566,7 +40628,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
40566
40628
|
return false;
|
|
40567
40629
|
}
|
|
40568
40630
|
|
|
40569
|
-
constructorMap.
|
|
40631
|
+
constructorMap.set(constructor, inspector);
|
|
40570
40632
|
return true;
|
|
40571
40633
|
}
|
|
40572
40634
|
function registerStringTag(stringTag, inspector) {
|
|
@@ -57730,15 +57792,25 @@ class ByteStream {
|
|
|
57730
57792
|
return new ByteStream(buffer, subView); // eslint-disable-line deprecation/deprecation
|
|
57731
57793
|
}
|
|
57732
57794
|
/** The number of bytes in this stream */
|
|
57733
|
-
get length() {
|
|
57795
|
+
get length() {
|
|
57796
|
+
return this._view.byteLength;
|
|
57797
|
+
}
|
|
57798
|
+
/** The number of bytes remaining to be read, from [[curPos]] to the end of the stream. */
|
|
57799
|
+
get remainingLength() {
|
|
57800
|
+
return this.length - this.curPos;
|
|
57801
|
+
}
|
|
57734
57802
|
/** 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.
|
|
57735
57803
|
* @see [[isAtTheEnd]]
|
|
57736
57804
|
*/
|
|
57737
|
-
get isPastTheEnd() {
|
|
57805
|
+
get isPastTheEnd() {
|
|
57806
|
+
return this.curPos > this.length;
|
|
57807
|
+
}
|
|
57738
57808
|
/** Returns true if the current read position has advanced precisely to the end of the stream, indicating all of the data has been consumed.
|
|
57739
57809
|
* @see [[isPastTheEnd]].
|
|
57740
57810
|
*/
|
|
57741
|
-
get isAtTheEnd() {
|
|
57811
|
+
get isAtTheEnd() {
|
|
57812
|
+
return this.curPos === this.length;
|
|
57813
|
+
}
|
|
57742
57814
|
/** The current read position as an index into the stream of bytes. */
|
|
57743
57815
|
get curPos() { return this._curPos; }
|
|
57744
57816
|
set curPos(pos) {
|
|
@@ -63500,7 +63572,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
63500
63572
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
63501
63573
|
/* harmony export */ "Base64EncodedString": () => (/* binding */ Base64EncodedString)
|
|
63502
63574
|
/* harmony export */ });
|
|
63503
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
63575
|
+
/* 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");
|
|
63504
63576
|
/*---------------------------------------------------------------------------------------------
|
|
63505
63577
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
63506
63578
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -63782,6 +63854,8 @@ var TypeOfChange;
|
|
|
63782
63854
|
TypeOfChange[TypeOfChange["Indirect"] = 8] = "Indirect";
|
|
63783
63855
|
/** Hidden properties of the element changed */
|
|
63784
63856
|
TypeOfChange[TypeOfChange["Hidden"] = 16] = "Hidden";
|
|
63857
|
+
/** The top-most parent of the element has changed */
|
|
63858
|
+
TypeOfChange[TypeOfChange["Parent"] = 32] = "Parent";
|
|
63785
63859
|
})(TypeOfChange || (TypeOfChange = {}));
|
|
63786
63860
|
|
|
63787
63861
|
|
|
@@ -65306,7 +65380,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
65306
65380
|
/* harmony export */ });
|
|
65307
65381
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
65308
65382
|
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
65309
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
65383
|
+
/* 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");
|
|
65310
65384
|
/*---------------------------------------------------------------------------------------------
|
|
65311
65385
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
65312
65386
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -65345,42 +65419,99 @@ class QueryOptionsBuilder {
|
|
|
65345
65419
|
this._options = _options;
|
|
65346
65420
|
}
|
|
65347
65421
|
getOptions() { return this._options; }
|
|
65422
|
+
/**
|
|
65423
|
+
* @internal
|
|
65424
|
+
* 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.
|
|
65425
|
+
* @param val integer value which can be negative as well. By default its zero.
|
|
65426
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65427
|
+
*/
|
|
65348
65428
|
setPriority(val) {
|
|
65349
65429
|
this._options.priority = val;
|
|
65350
65430
|
return this;
|
|
65351
65431
|
}
|
|
65432
|
+
/**
|
|
65433
|
+
* 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.
|
|
65434
|
+
* @param val A string token identifying a use case in which previous query with same token is cancelled.
|
|
65435
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65436
|
+
*/
|
|
65352
65437
|
setRestartToken(val) {
|
|
65353
65438
|
this._options.restartToken = val;
|
|
65354
65439
|
return this;
|
|
65355
65440
|
}
|
|
65441
|
+
/**
|
|
65442
|
+
* Allow to set quota restriction for query. Its a hint and may be overriden or ignored by concurrent query manager.
|
|
65443
|
+
* @param val @type QueryQuota Specify time and memory that can be used by a query.
|
|
65444
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65445
|
+
*/
|
|
65356
65446
|
setQuota(val) {
|
|
65357
65447
|
this._options.quota = val;
|
|
65358
65448
|
return this;
|
|
65359
65449
|
}
|
|
65450
|
+
/**
|
|
65451
|
+
* Force a query to be executed synchronously against primary connection. This option is ignored if provided by frontend.
|
|
65452
|
+
* @param val A boolean value to force use primary connection on main thread to execute query.
|
|
65453
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65454
|
+
*/
|
|
65360
65455
|
setUsePrimaryConnection(val) {
|
|
65361
65456
|
this._options.usePrimaryConn = val;
|
|
65362
65457
|
return this;
|
|
65363
65458
|
}
|
|
65459
|
+
/**
|
|
65460
|
+
* 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.
|
|
65461
|
+
* Use @type BlobReader to access blob data more efficiently.
|
|
65462
|
+
* @param val A boolean value, if set to false will return complete blob type property data. This could cost time and network bandwidth.
|
|
65463
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65464
|
+
*/
|
|
65364
65465
|
setAbbreviateBlobs(val) {
|
|
65365
65466
|
this._options.abbreviateBlobs = val;
|
|
65366
65467
|
return this;
|
|
65367
65468
|
}
|
|
65469
|
+
/**
|
|
65470
|
+
* 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.
|
|
65471
|
+
* @param val A boolean value, if set to true, any error logging will be suppressed.
|
|
65472
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65473
|
+
*/
|
|
65368
65474
|
setSuppressLogErrors(val) {
|
|
65369
65475
|
this._options.suppressLogErrors = val;
|
|
65370
65476
|
return this;
|
|
65371
65477
|
}
|
|
65478
|
+
/**
|
|
65479
|
+
* If set ECClassId, SourceECClassId and TargetECClassId system properties will return qualified name of class instead of a @typedef Id64String.
|
|
65480
|
+
* @param val A boolean value.
|
|
65481
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65482
|
+
*/
|
|
65372
65483
|
setConvertClassIdsToNames(val) {
|
|
65373
65484
|
this._options.convertClassIdsToClassNames = val;
|
|
65374
65485
|
return this;
|
|
65375
65486
|
}
|
|
65487
|
+
/**
|
|
65488
|
+
* Specify limit for query. Limit determine number of rows and offset in result-set.
|
|
65489
|
+
* @param val Specify count and offset from within the result-set of a ECSQL query.
|
|
65490
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65491
|
+
*/
|
|
65376
65492
|
setLimit(val) {
|
|
65377
65493
|
this._options.limit = val;
|
|
65378
65494
|
return this;
|
|
65379
65495
|
}
|
|
65496
|
+
/**
|
|
65497
|
+
* Specify row format returned by concurrent query manager.
|
|
65498
|
+
* @param val @enum QueryRowFormat specifying format for result.
|
|
65499
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65500
|
+
*/
|
|
65380
65501
|
setRowFormat(val) {
|
|
65381
65502
|
this._options.rowFormat = val;
|
|
65382
65503
|
return this;
|
|
65383
65504
|
}
|
|
65505
|
+
/**
|
|
65506
|
+
* @internal
|
|
65507
|
+
* Defers execution of query in queue by specified milliseconds. This parameter is ignored by default unless concurrent query is configure to not ignore it.
|
|
65508
|
+
* @param val Number of milliseconds.
|
|
65509
|
+
* @returns @type QueryOptionsBuilder for fluent interface.
|
|
65510
|
+
*/
|
|
65511
|
+
setDelay(val) {
|
|
65512
|
+
this._options.delay = val;
|
|
65513
|
+
return this;
|
|
65514
|
+
}
|
|
65384
65515
|
}
|
|
65385
65516
|
/** @beta */
|
|
65386
65517
|
class BlobOptionsBuilder {
|
|
@@ -65388,26 +65519,62 @@ class BlobOptionsBuilder {
|
|
|
65388
65519
|
this._options = _options;
|
|
65389
65520
|
}
|
|
65390
65521
|
getOptions() { return this._options; }
|
|
65522
|
+
/**
|
|
65523
|
+
* @internal
|
|
65524
|
+
* 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.
|
|
65525
|
+
* @param val integer value which can be negative as well. By default its zero.
|
|
65526
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65527
|
+
*/
|
|
65391
65528
|
setPriority(val) {
|
|
65392
65529
|
this._options.priority = val;
|
|
65393
65530
|
return this;
|
|
65394
65531
|
}
|
|
65532
|
+
/**
|
|
65533
|
+
* 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.
|
|
65534
|
+
* @param val A string token identifying a use case in which previous blob request with same token is cancelled.
|
|
65535
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65536
|
+
*/
|
|
65395
65537
|
setRestartToken(val) {
|
|
65396
65538
|
this._options.restartToken = val;
|
|
65397
65539
|
return this;
|
|
65398
65540
|
}
|
|
65541
|
+
/**
|
|
65542
|
+
* Allow to set quota restriction for blob request. Its a hint and may be overriden or ignored by concurrent query manager.
|
|
65543
|
+
* @param val @type QueryQuota Specify time and memory that can be used by a query.
|
|
65544
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65545
|
+
*/
|
|
65399
65546
|
setQuota(val) {
|
|
65400
65547
|
this._options.quota = val;
|
|
65401
65548
|
return this;
|
|
65402
65549
|
}
|
|
65550
|
+
/**
|
|
65551
|
+
* Force a blob request to be executed synchronously against primary connection. This option is ignored if provided by frontend.
|
|
65552
|
+
* @param val A boolean value to force use primary connection on main thread to execute blob request.
|
|
65553
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65554
|
+
*/
|
|
65403
65555
|
setUsePrimaryConnection(val) {
|
|
65404
65556
|
this._options.usePrimaryConn = val;
|
|
65405
65557
|
return this;
|
|
65406
65558
|
}
|
|
65559
|
+
/**
|
|
65560
|
+
* Specify range with in the blob that need to be returned.
|
|
65561
|
+
* @param val Specify offset and count of bytes that need to be returned.
|
|
65562
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65563
|
+
*/
|
|
65407
65564
|
setRange(val) {
|
|
65408
65565
|
this._options.range = val;
|
|
65409
65566
|
return this;
|
|
65410
65567
|
}
|
|
65568
|
+
/**
|
|
65569
|
+
* @internal
|
|
65570
|
+
* 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.
|
|
65571
|
+
* @param val Number of milliseconds.
|
|
65572
|
+
* @returns @type BlobOptionsBuilder for fluent interface.
|
|
65573
|
+
*/
|
|
65574
|
+
setDelay(val) {
|
|
65575
|
+
this._options.delay = val;
|
|
65576
|
+
return this;
|
|
65577
|
+
}
|
|
65411
65578
|
}
|
|
65412
65579
|
/** @internal */
|
|
65413
65580
|
var QueryParamType;
|
|
@@ -65427,7 +65594,10 @@ var QueryParamType;
|
|
|
65427
65594
|
QueryParamType[QueryParamType["Blob"] = 10] = "Blob";
|
|
65428
65595
|
QueryParamType[QueryParamType["Struct"] = 11] = "Struct";
|
|
65429
65596
|
})(QueryParamType || (QueryParamType = {}));
|
|
65430
|
-
/**
|
|
65597
|
+
/**
|
|
65598
|
+
* @public
|
|
65599
|
+
* QueryBinder allow to bind values to a ECSQL query.
|
|
65600
|
+
* */
|
|
65431
65601
|
class QueryBinder {
|
|
65432
65602
|
constructor() {
|
|
65433
65603
|
this._args = {};
|
|
@@ -65443,6 +65613,12 @@ class QueryBinder {
|
|
|
65443
65613
|
}
|
|
65444
65614
|
}
|
|
65445
65615
|
}
|
|
65616
|
+
/**
|
|
65617
|
+
* Bind boolean value to ECSQL statement.
|
|
65618
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65619
|
+
* @param val Boolean value to bind to ECSQL statement.
|
|
65620
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65621
|
+
*/
|
|
65446
65622
|
bindBoolean(indexOrName, val) {
|
|
65447
65623
|
this.verify(indexOrName);
|
|
65448
65624
|
const name = String(indexOrName);
|
|
@@ -65455,6 +65631,12 @@ class QueryBinder {
|
|
|
65455
65631
|
});
|
|
65456
65632
|
return this;
|
|
65457
65633
|
}
|
|
65634
|
+
/**
|
|
65635
|
+
* Bind blob value to ECSQL statement.
|
|
65636
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65637
|
+
* @param val Blob value to bind to ECSQL statement.
|
|
65638
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65639
|
+
*/
|
|
65458
65640
|
bindBlob(indexOrName, val) {
|
|
65459
65641
|
this.verify(indexOrName);
|
|
65460
65642
|
const name = String(indexOrName);
|
|
@@ -65467,6 +65649,12 @@ class QueryBinder {
|
|
|
65467
65649
|
});
|
|
65468
65650
|
return this;
|
|
65469
65651
|
}
|
|
65652
|
+
/**
|
|
65653
|
+
* Bind double value to ECSQL statement.
|
|
65654
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65655
|
+
* @param val Double value to bind to ECSQL statement.
|
|
65656
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65657
|
+
*/
|
|
65470
65658
|
bindDouble(indexOrName, val) {
|
|
65471
65659
|
this.verify(indexOrName);
|
|
65472
65660
|
const name = String(indexOrName);
|
|
@@ -65478,6 +65666,12 @@ class QueryBinder {
|
|
|
65478
65666
|
});
|
|
65479
65667
|
return this;
|
|
65480
65668
|
}
|
|
65669
|
+
/**
|
|
65670
|
+
* Bind @typedef Id64String value to ECSQL statement.
|
|
65671
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65672
|
+
* @param val @typedef Id64String value to bind to ECSQL statement.
|
|
65673
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65674
|
+
*/
|
|
65481
65675
|
bindId(indexOrName, val) {
|
|
65482
65676
|
this.verify(indexOrName);
|
|
65483
65677
|
const name = String(indexOrName);
|
|
@@ -65489,6 +65683,12 @@ class QueryBinder {
|
|
|
65489
65683
|
});
|
|
65490
65684
|
return this;
|
|
65491
65685
|
}
|
|
65686
|
+
/**
|
|
65687
|
+
* Bind @type OrderedId64Iterable to ECSQL statement.
|
|
65688
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65689
|
+
* @param val @type OrderedId64Iterable value to bind to ECSQL statement.
|
|
65690
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65691
|
+
*/
|
|
65492
65692
|
bindIdSet(indexOrName, val) {
|
|
65493
65693
|
this.verify(indexOrName);
|
|
65494
65694
|
const name = String(indexOrName);
|
|
@@ -65501,6 +65701,12 @@ class QueryBinder {
|
|
|
65501
65701
|
});
|
|
65502
65702
|
return this;
|
|
65503
65703
|
}
|
|
65704
|
+
/**
|
|
65705
|
+
* Bind integer to ECSQL statement.
|
|
65706
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65707
|
+
* @param val Integer value to bind to ECSQL statement.
|
|
65708
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65709
|
+
*/
|
|
65504
65710
|
bindInt(indexOrName, val) {
|
|
65505
65711
|
this.verify(indexOrName);
|
|
65506
65712
|
const name = String(indexOrName);
|
|
@@ -65512,6 +65718,12 @@ class QueryBinder {
|
|
|
65512
65718
|
});
|
|
65513
65719
|
return this;
|
|
65514
65720
|
}
|
|
65721
|
+
/**
|
|
65722
|
+
* Bind struct to ECSQL statement. Struct specified as object.
|
|
65723
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65724
|
+
* @param val struct value to bind to ECSQL statement.
|
|
65725
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65726
|
+
*/
|
|
65515
65727
|
bindStruct(indexOrName, val) {
|
|
65516
65728
|
this.verify(indexOrName);
|
|
65517
65729
|
const name = String(indexOrName);
|
|
@@ -65523,6 +65735,12 @@ class QueryBinder {
|
|
|
65523
65735
|
});
|
|
65524
65736
|
return this;
|
|
65525
65737
|
}
|
|
65738
|
+
/**
|
|
65739
|
+
* Bind long to ECSQL statement.
|
|
65740
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65741
|
+
* @param val Long value to bind to ECSQL statement.
|
|
65742
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65743
|
+
*/
|
|
65526
65744
|
bindLong(indexOrName, val) {
|
|
65527
65745
|
this.verify(indexOrName);
|
|
65528
65746
|
const name = String(indexOrName);
|
|
@@ -65534,6 +65752,12 @@ class QueryBinder {
|
|
|
65534
65752
|
});
|
|
65535
65753
|
return this;
|
|
65536
65754
|
}
|
|
65755
|
+
/**
|
|
65756
|
+
* Bind string to ECSQL statement.
|
|
65757
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65758
|
+
* @param val String value to bind to ECSQL statement.
|
|
65759
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65760
|
+
*/
|
|
65537
65761
|
bindString(indexOrName, val) {
|
|
65538
65762
|
this.verify(indexOrName);
|
|
65539
65763
|
const name = String(indexOrName);
|
|
@@ -65545,6 +65769,11 @@ class QueryBinder {
|
|
|
65545
65769
|
});
|
|
65546
65770
|
return this;
|
|
65547
65771
|
}
|
|
65772
|
+
/**
|
|
65773
|
+
* Bind null to ECSQL statement.
|
|
65774
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65775
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65776
|
+
*/
|
|
65548
65777
|
bindNull(indexOrName) {
|
|
65549
65778
|
this.verify(indexOrName);
|
|
65550
65779
|
const name = String(indexOrName);
|
|
@@ -65556,6 +65785,12 @@ class QueryBinder {
|
|
|
65556
65785
|
});
|
|
65557
65786
|
return this;
|
|
65558
65787
|
}
|
|
65788
|
+
/**
|
|
65789
|
+
* Bind @type Point2d to ECSQL statement.
|
|
65790
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65791
|
+
* @param val @type Point2d value to bind to ECSQL statement.
|
|
65792
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65793
|
+
*/
|
|
65559
65794
|
bindPoint2d(indexOrName, val) {
|
|
65560
65795
|
this.verify(indexOrName);
|
|
65561
65796
|
const name = String(indexOrName);
|
|
@@ -65567,6 +65802,12 @@ class QueryBinder {
|
|
|
65567
65802
|
});
|
|
65568
65803
|
return this;
|
|
65569
65804
|
}
|
|
65805
|
+
/**
|
|
65806
|
+
* Bind @type Point3d to ECSQL statement.
|
|
65807
|
+
* @param indexOrName Specify parameter index or its name used in ECSQL statement.
|
|
65808
|
+
* @param val @type Point3d value to bind to ECSQL statement.
|
|
65809
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65810
|
+
*/
|
|
65570
65811
|
bindPoint3d(indexOrName, val) {
|
|
65571
65812
|
this.verify(indexOrName);
|
|
65572
65813
|
const name = String(indexOrName);
|
|
@@ -65610,6 +65851,11 @@ class QueryBinder {
|
|
|
65610
65851
|
throw new Error("unsupported type");
|
|
65611
65852
|
}
|
|
65612
65853
|
}
|
|
65854
|
+
/**
|
|
65855
|
+
* Allow bulk bind either parameters by index as value array or by parameter names as object.
|
|
65856
|
+
* @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.
|
|
65857
|
+
* @returns @type QueryBinder to allow fluent interface.
|
|
65858
|
+
*/
|
|
65613
65859
|
static from(args) {
|
|
65614
65860
|
const params = new QueryBinder();
|
|
65615
65861
|
if (typeof args === "undefined")
|
|
@@ -67594,6 +67840,75 @@ class ECJsNames {
|
|
|
67594
67840
|
}
|
|
67595
67841
|
|
|
67596
67842
|
|
|
67843
|
+
/***/ }),
|
|
67844
|
+
|
|
67845
|
+
/***/ "../../core/common/lib/esm/ElementMesh.js":
|
|
67846
|
+
/*!************************************************!*\
|
|
67847
|
+
!*** ../../core/common/lib/esm/ElementMesh.js ***!
|
|
67848
|
+
\************************************************/
|
|
67849
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
67850
|
+
|
|
67851
|
+
"use strict";
|
|
67852
|
+
__webpack_require__.r(__webpack_exports__);
|
|
67853
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
67854
|
+
/* harmony export */ "readElementMeshes": () => (/* binding */ readElementMeshes)
|
|
67855
|
+
/* harmony export */ });
|
|
67856
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
67857
|
+
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
67858
|
+
/*---------------------------------------------------------------------------------------------
|
|
67859
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
67860
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
67861
|
+
*--------------------------------------------------------------------------------------------*/
|
|
67862
|
+
/** @packageDocumentation
|
|
67863
|
+
* @module Geometry
|
|
67864
|
+
*/
|
|
67865
|
+
|
|
67866
|
+
|
|
67867
|
+
function nextChunk(stream) {
|
|
67868
|
+
if (stream.remainingLength < 8) {
|
|
67869
|
+
// Consume remaining bytes.
|
|
67870
|
+
stream.curPos = stream.length;
|
|
67871
|
+
return undefined;
|
|
67872
|
+
}
|
|
67873
|
+
// Type codes are a sequence of four uppercase ASCII letters.
|
|
67874
|
+
const chars = [stream.nextUint8, stream.nextUint8, stream.nextUint8, stream.nextUint8];
|
|
67875
|
+
if (chars.some((c) => c < 65 || c > 90))
|
|
67876
|
+
return undefined;
|
|
67877
|
+
const dataLength = stream.nextUint32;
|
|
67878
|
+
const data = dataLength > 0 ? stream.nextBytes(dataLength) : undefined;
|
|
67879
|
+
return {
|
|
67880
|
+
type: String.fromCharCode(...chars),
|
|
67881
|
+
data,
|
|
67882
|
+
};
|
|
67883
|
+
}
|
|
67884
|
+
/** Convert the output of [IModelConnection.generateElementMeshes]($frontend) into an array of [Polyface]($core-geometry)s.
|
|
67885
|
+
* @param data Encoded polyfaces obtained from [IModelConnection.generateElementMeshes]($frontend).
|
|
67886
|
+
* @returns a list of decoded polyfaces.
|
|
67887
|
+
* @beta
|
|
67888
|
+
*/
|
|
67889
|
+
function readElementMeshes(data) {
|
|
67890
|
+
const polyfaces = [];
|
|
67891
|
+
const stream = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.ByteStream.fromUint8Array(data);
|
|
67892
|
+
const firstChunk = nextChunk(stream);
|
|
67893
|
+
if (!firstChunk || "LMSH" !== firstChunk.type)
|
|
67894
|
+
return polyfaces;
|
|
67895
|
+
while (stream.remainingLength > 0) {
|
|
67896
|
+
const chunk = nextChunk(stream);
|
|
67897
|
+
if (!chunk || chunk.type !== "PLFC" || !chunk.data)
|
|
67898
|
+
continue;
|
|
67899
|
+
try {
|
|
67900
|
+
const geom = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.BentleyGeometryFlatBuffer.bytesToGeometry(chunk.data, true);
|
|
67901
|
+
if (geom instanceof _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.IndexedPolyface)
|
|
67902
|
+
polyfaces.push(geom);
|
|
67903
|
+
}
|
|
67904
|
+
catch (_) {
|
|
67905
|
+
//
|
|
67906
|
+
}
|
|
67907
|
+
}
|
|
67908
|
+
return polyfaces;
|
|
67909
|
+
}
|
|
67910
|
+
|
|
67911
|
+
|
|
67597
67912
|
/***/ }),
|
|
67598
67913
|
|
|
67599
67914
|
/***/ "../../core/common/lib/esm/ElementProps.js":
|
|
@@ -78464,8 +78779,16 @@ class ViewDetails {
|
|
|
78464
78779
|
return this._clipVector.isValid ? this._clipVector : undefined;
|
|
78465
78780
|
}
|
|
78466
78781
|
set clipVector(clip) {
|
|
78467
|
-
|
|
78468
|
-
|
|
78782
|
+
const curClip = this.clipVector;
|
|
78783
|
+
if (curClip === clip)
|
|
78784
|
+
return;
|
|
78785
|
+
if (!curClip) {
|
|
78786
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== clip);
|
|
78787
|
+
// An empty clip is equivalent to no clip.
|
|
78788
|
+
if (!clip.isValid)
|
|
78789
|
+
return;
|
|
78790
|
+
}
|
|
78791
|
+
clip = clip !== null && clip !== void 0 ? clip : _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.ClipVector.createEmpty();
|
|
78469
78792
|
this.onClipVectorChanged.raiseEvent(clip.isValid ? clip : undefined);
|
|
78470
78793
|
this._clipVector = clip;
|
|
78471
78794
|
if (clip.isValid)
|
|
@@ -78987,47 +79310,47 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
78987
79310
|
"use strict";
|
|
78988
79311
|
__webpack_require__.r(__webpack_exports__);
|
|
78989
79312
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
78990
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
78991
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
78992
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
79313
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__.AdditionalTransform),
|
|
79314
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.AffineTransform),
|
|
79315
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.AmbientLight),
|
|
78993
79316
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
78994
79317
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
78995
79318
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
78996
79319
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
78997
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
78998
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
78999
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
79000
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
79001
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
79002
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
79320
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_38__.AreaPattern),
|
|
79321
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_144__.B3dmHeader),
|
|
79322
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.BRepEntity),
|
|
79323
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.BRepGeometryOperation),
|
|
79324
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BackendError),
|
|
79325
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.BackgroundFill),
|
|
79003
79326
|
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapProvider),
|
|
79004
79327
|
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapSettings),
|
|
79005
79328
|
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapType),
|
|
79006
79329
|
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_5__.Base64EncodedString),
|
|
79007
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
79008
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
79009
|
-
/* harmony export */ "BatchType": () => (/* reexport safe */
|
|
79010
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
79011
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
79012
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
79013
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
79014
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
79330
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__.BaseLayerSettings),
|
|
79331
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.BaseMapLayerSettings),
|
|
79332
|
+
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.BatchType),
|
|
79333
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcConfiguration),
|
|
79334
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcManager),
|
|
79335
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_138__.BentleyCloudRpcProtocol),
|
|
79336
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BentleyError),
|
|
79337
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BentleyStatus),
|
|
79015
79338
|
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.BisCodeSpec),
|
|
79016
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
79017
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
79339
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.BlobOptionsBuilder),
|
|
79340
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_39__.BoundingSphere),
|
|
79018
79341
|
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.BriefcaseIdValue),
|
|
79019
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
79020
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
79021
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
79342
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.BriefcaseStatus),
|
|
79343
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.CURRENT_INVOCATION),
|
|
79344
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.CURRENT_REQUEST),
|
|
79022
79345
|
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_7__.Camera),
|
|
79023
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
79024
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
79025
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
79346
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.Carto2DDegrees),
|
|
79347
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__.Cartographic),
|
|
79348
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__.CartographicRange),
|
|
79026
79349
|
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangeOpCode),
|
|
79027
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
79350
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ChangeSetStatus),
|
|
79028
79351
|
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ChangedValueState),
|
|
79029
79352
|
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_10__.ChangesetType),
|
|
79030
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
79353
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ChannelConstraintError),
|
|
79031
79354
|
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.ClipStyle),
|
|
79032
79355
|
/* harmony export */ "CloudStorageCache": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageCache),
|
|
79033
79356
|
/* harmony export */ "CloudStorageContainerUrl": () => (/* reexport safe */ _CloudStorage__WEBPACK_IMPORTED_MODULE_12__.CloudStorageContainerUrl),
|
|
@@ -79038,323 +79361,324 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79038
79361
|
/* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.CodeSpec),
|
|
79039
79362
|
/* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_15__.ColorByName),
|
|
79040
79363
|
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_16__.ColorDef),
|
|
79041
|
-
/* harmony export */ "ColorIndex": () => (/* reexport safe */
|
|
79364
|
+
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.ColorIndex),
|
|
79042
79365
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_17__.CommonLoggerCategory),
|
|
79043
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
79044
|
-
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */
|
|
79045
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
79046
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
79366
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_145__.CompositeTileHeader),
|
|
79367
|
+
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_28__.ConcreteEntityTypes),
|
|
79368
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.ContentFlags),
|
|
79369
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.ContentIdProvider),
|
|
79047
79370
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModel),
|
|
79048
79371
|
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModelProps),
|
|
79049
79372
|
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModels),
|
|
79050
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
79373
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.CurrentImdlVersion),
|
|
79051
79374
|
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.CutStyle),
|
|
79052
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
79053
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
79054
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
79055
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
79056
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
79057
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
79058
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
79059
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
79060
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
79375
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbQueryError),
|
|
79376
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbRequestKind),
|
|
79377
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbResponseKind),
|
|
79378
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbResponseStatus),
|
|
79379
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.DbResult),
|
|
79380
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.DbValueFormat),
|
|
79381
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_89__.DefaultSupportedTypes),
|
|
79382
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__.DevToolsRpcInterface),
|
|
79383
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__.DevToolsStatsOptions),
|
|
79061
79384
|
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyle3dSettings),
|
|
79062
79385
|
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyleSettings),
|
|
79063
79386
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.DomainOptions),
|
|
79064
79387
|
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECJsNames),
|
|
79065
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
79388
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__.ECSqlReader),
|
|
79066
79389
|
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlSystemProperty),
|
|
79067
79390
|
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlValueType),
|
|
79068
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
79069
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
79070
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
79071
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
79072
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
79073
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
79074
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
79075
|
-
/* harmony export */ "EntityMetaData": () => (/* reexport safe */
|
|
79076
|
-
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */
|
|
79077
|
-
/* harmony export */ "Environment": () => (/* reexport safe */
|
|
79078
|
-
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */
|
|
79079
|
-
/* harmony export */ "Feature": () => (/* reexport safe */
|
|
79080
|
-
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */
|
|
79081
|
-
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */
|
|
79082
|
-
/* harmony export */ "FeatureGates": () => (/* reexport safe */
|
|
79083
|
-
/* harmony export */ "FeatureIndex": () => (/* reexport safe */
|
|
79084
|
-
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */
|
|
79085
|
-
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */
|
|
79086
|
-
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */
|
|
79087
|
-
/* harmony export */ "FeatureTable": () => (/* reexport safe */
|
|
79088
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
79089
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
79090
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
79091
|
-
/* harmony export */ "FontMap": () => (/* reexport safe */
|
|
79092
|
-
/* harmony export */ "FontType": () => (/* reexport safe */
|
|
79093
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
79094
|
-
/* harmony export */ "Frustum": () => (/* reexport safe */
|
|
79095
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
79096
|
-
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */
|
|
79097
|
-
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */
|
|
79098
|
-
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */
|
|
79099
|
-
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */
|
|
79100
|
-
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */
|
|
79101
|
-
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */
|
|
79102
|
-
/* harmony export */ "GeographicCRS": () => (/* reexport safe */
|
|
79103
|
-
/* harmony export */ "GeometryClass": () => (/* reexport safe */
|
|
79104
|
-
/* harmony export */ "GeometryParams": () => (/* reexport safe */
|
|
79105
|
-
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */
|
|
79106
|
-
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */
|
|
79107
|
-
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */
|
|
79108
|
-
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */
|
|
79109
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
79391
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Easing),
|
|
79392
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_63__.EcefLocation),
|
|
79393
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.EdgeArgs),
|
|
79394
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.ElementGeometry),
|
|
79395
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__.ElementGeometryChange),
|
|
79396
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__.ElementGeometryOpcode),
|
|
79397
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_73__.EmptyLocalization),
|
|
79398
|
+
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.EntityMetaData),
|
|
79399
|
+
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_28__.EntityReferenceSet),
|
|
79400
|
+
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_29__.Environment),
|
|
79401
|
+
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.ExternalSourceAttachmentRole),
|
|
79402
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.Feature),
|
|
79403
|
+
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureAppearance),
|
|
79404
|
+
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureAppearanceProvider),
|
|
79405
|
+
/* harmony export */ "FeatureGates": () => (/* reexport safe */ _FeatureGates__WEBPACK_IMPORTED_MODULE_30__.FeatureGates),
|
|
79406
|
+
/* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.FeatureIndex),
|
|
79407
|
+
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.FeatureIndexType),
|
|
79408
|
+
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_26__.FeatureOverrideType),
|
|
79409
|
+
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__.FeatureOverrides),
|
|
79410
|
+
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.FeatureTable),
|
|
79411
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.FeatureTableHeader),
|
|
79412
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.FillDisplay),
|
|
79413
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_56__.FillFlags),
|
|
79414
|
+
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_34__.FontMap),
|
|
79415
|
+
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_34__.FontType),
|
|
79416
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.FresnelSettings),
|
|
79417
|
+
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.Frustum),
|
|
79418
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_43__.FrustumPlanes),
|
|
79419
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__.GeoCoordStatus),
|
|
79420
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeocentricTransform),
|
|
79421
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticDatum),
|
|
79422
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_45__.GeodeticEllipsoid),
|
|
79423
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticTransform),
|
|
79424
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GeodeticTransformPath),
|
|
79425
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.GeographicCRS),
|
|
79426
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.GeometryClass),
|
|
79427
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_53__.GeometryParams),
|
|
79428
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamBuilder),
|
|
79429
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamFlags),
|
|
79430
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__.GeometryStreamIterator),
|
|
79431
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_54__.GeometrySummaryVerbosity),
|
|
79432
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GlbHeader),
|
|
79110
79433
|
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.GlobeMode),
|
|
79111
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
79112
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
79113
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
79114
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
79115
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
79116
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
79117
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
79118
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
79119
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
79120
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
79121
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
79122
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
79123
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
79124
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
79125
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
79126
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
79127
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
79128
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
79129
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
79130
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
79131
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
79132
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
79133
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
79134
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
79135
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
79136
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
79137
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
79138
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
79139
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
79140
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
79141
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
79142
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
79143
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
79144
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
79145
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
79146
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
79147
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
79148
|
-
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */
|
|
79149
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
79150
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
79151
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
79152
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
79153
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
79154
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
79155
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
79156
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
79157
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
79158
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
79159
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
79160
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
79161
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
79162
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
79163
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
79164
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
79165
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
79166
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
79167
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
79168
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
79169
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
79170
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
79171
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
79434
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GltfV2ChunkTypes),
|
|
79435
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__.GltfVersions),
|
|
79436
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_55__.Gradient),
|
|
79437
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_56__.GraphicParams),
|
|
79438
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GridFileDefinition),
|
|
79439
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.GridFileTransform),
|
|
79440
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.GridOrientationType),
|
|
79441
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_57__.GroundPlane),
|
|
79442
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_60__.HSLColor),
|
|
79443
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_61__.HSVColor),
|
|
79444
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_61__.HSVConstants),
|
|
79445
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__.Helmert2DWithZOffset),
|
|
79446
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.HemisphereLights),
|
|
79447
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_58__.HiddenLine),
|
|
79448
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_59__.Hilite),
|
|
79449
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.HorizontalCRS),
|
|
79450
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.HorizontalCRSExtent),
|
|
79451
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_148__.I3dmHeader),
|
|
79452
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_63__.IModel),
|
|
79453
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.IModelError),
|
|
79454
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__.IModelNotFoundResponse),
|
|
79455
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__.IModelReadRpcInterface),
|
|
79456
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.IModelStatus),
|
|
79457
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_99__.IModelTileRpcInterface),
|
|
79458
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_65__.IModelVersion),
|
|
79459
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.INSTANCE),
|
|
79460
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageBuffer),
|
|
79461
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageBufferFormat),
|
|
79462
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__.ImageGraphic),
|
|
79463
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__.ImageGraphicCorners),
|
|
79464
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.ImageMapLayerSettings),
|
|
79465
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageSource),
|
|
79466
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.ImageSourceFormat),
|
|
79467
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.ImdlFlags),
|
|
79468
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__.ImdlHeader),
|
|
79469
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.InternetConnectivityStatus),
|
|
79470
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Interpolation),
|
|
79471
|
+
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__.IpcAppChannel),
|
|
79472
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_69__.IpcSession),
|
|
79473
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocket),
|
|
79474
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketBackend),
|
|
79475
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketFrontend),
|
|
79476
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketMessage),
|
|
79477
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketMessageType),
|
|
79478
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_68__.IpcWebSocketTransport),
|
|
79479
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.LightSettings),
|
|
79480
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_72__.LinePixels),
|
|
79481
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_48__.LineStyle),
|
|
79482
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__.MapImagerySettings),
|
|
79483
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.MapLayerSettings),
|
|
79484
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.MapSubLayerSettings),
|
|
79485
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.MarshalingBinaryMarker),
|
|
79486
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_76__.MassPropertiesOperation),
|
|
79487
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshEdge),
|
|
79488
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshEdges),
|
|
79489
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshPolyline),
|
|
79490
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.MeshPolylineList),
|
|
79491
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__.ModelClipGroup),
|
|
79492
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__.ModelClipGroups),
|
|
79493
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__.ModelGeometryChanges),
|
|
79494
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__.ModelMapLayerSettings),
|
|
79172
79495
|
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.MonochromeMode),
|
|
79173
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
79174
|
-
/* harmony export */ "NonUniformColor": () => (/* reexport safe */
|
|
79175
|
-
/* harmony export */ "Npc": () => (/* reexport safe */
|
|
79176
|
-
/* harmony export */ "NpcCenter": () => (/* reexport safe */
|
|
79177
|
-
/* harmony export */ "NpcCorners": () => (/* reexport safe */
|
|
79178
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
79179
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
79180
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
79181
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
79182
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
79183
|
-
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */
|
|
79184
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
79185
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
79186
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
79187
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
79188
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
79189
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
79190
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
79191
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
79192
|
-
/* harmony export */ "PolylineData": () => (/* reexport safe */
|
|
79193
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
79194
|
-
/* harmony export */ "PolylineFlags": () => (/* reexport safe */
|
|
79195
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
79196
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
79197
|
-
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */
|
|
79496
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.NoContentError),
|
|
79497
|
+
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__.NonUniformColor),
|
|
79498
|
+
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.Npc),
|
|
79499
|
+
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.NpcCenter),
|
|
79500
|
+
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_35__.NpcCorners),
|
|
79501
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.OPERATION),
|
|
79502
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__.OctEncodedNormal),
|
|
79503
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__.OctEncodedNormalPair),
|
|
79504
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.OverriddenBy),
|
|
79505
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.POLICY),
|
|
79506
|
+
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_33__.PackedFeatureTable),
|
|
79507
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__.Placement2d),
|
|
79508
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__.Placement3d),
|
|
79509
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_86__.PlanProjectionSettings),
|
|
79510
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskMode),
|
|
79511
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskPriority),
|
|
79512
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__.PlanarClipMaskSettings),
|
|
79513
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_150__.PntsHeader),
|
|
79514
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__.PointCloudDisplaySettings),
|
|
79515
|
+
/* harmony export */ "PolylineData": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineData),
|
|
79516
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineEdgeArgs),
|
|
79517
|
+
/* harmony export */ "PolylineFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineFlags),
|
|
79518
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.PolylineTypeFlags),
|
|
79519
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.PositionalVectorTransform),
|
|
79520
|
+
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.PrimitiveTypeCode),
|
|
79198
79521
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.ProfileOptions),
|
|
79199
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
79200
|
-
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */
|
|
79201
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
79202
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
79203
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
79204
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
79205
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
79206
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
79207
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
79208
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
79209
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
79210
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
79211
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
79212
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
79213
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
79214
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
79215
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
79216
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
79217
|
-
/* harmony export */ "Rank": () => (/* reexport safe */
|
|
79522
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__.Projection),
|
|
79523
|
+
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_27__.PropertyMetaData),
|
|
79524
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__.PropertyMetaDataMap),
|
|
79525
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QParams2d),
|
|
79526
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QParams3d),
|
|
79527
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2d),
|
|
79528
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dBuffer),
|
|
79529
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dBufferBuilder),
|
|
79530
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint2dList),
|
|
79531
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3d),
|
|
79532
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dBuffer),
|
|
79533
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dBufferBuilder),
|
|
79534
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.QPoint3dList),
|
|
79535
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_88__.Quantization),
|
|
79536
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryBinder),
|
|
79537
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryOptionsBuilder),
|
|
79538
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__.QueryRowFormat),
|
|
79539
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.REGISTRY),
|
|
79540
|
+
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.Rank),
|
|
79218
79541
|
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataFormat),
|
|
79219
79542
|
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataProvider),
|
|
79220
79543
|
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataSourceKey),
|
|
79221
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
79222
|
-
/* harmony export */ "RelatedElement": () => (/* reexport safe */
|
|
79223
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
79224
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
79225
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
79226
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
79227
|
-
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */
|
|
79228
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
79229
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
79230
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
79231
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
79232
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
79233
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
79234
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
79235
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
79236
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
79237
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
79238
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
79239
|
-
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */
|
|
79240
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
79241
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
79242
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
79243
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
79244
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
79245
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
79246
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
79247
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
79248
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
79249
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
79250
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
79251
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
79252
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
79253
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
79254
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
79255
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
79256
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
79257
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
79258
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
79259
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
79260
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
79261
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
79262
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
79263
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
79264
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
79265
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
79266
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
79267
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
79544
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__.RealityModelDisplaySettings),
|
|
79545
|
+
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.RelatedElement),
|
|
79546
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_92__.RenderMaterial),
|
|
79547
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_122__.RenderMode),
|
|
79548
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_93__.RenderSchedule),
|
|
79549
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_94__.RenderTexture),
|
|
79550
|
+
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.RepositoryStatus),
|
|
79551
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.ResponseLike),
|
|
79552
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_95__.RgbColor),
|
|
79553
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcConfiguration),
|
|
79554
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcContentType),
|
|
79555
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcControlChannel),
|
|
79556
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcControlResponse),
|
|
79557
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDefaultConfiguration),
|
|
79558
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDirectProtocol),
|
|
79559
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcDirectRequest),
|
|
79560
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcEndpoint),
|
|
79561
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_103__.RpcInterface),
|
|
79562
|
+
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.RpcInterfaceStatus),
|
|
79563
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_126__.RpcInvocation),
|
|
79564
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_104__.RpcManager),
|
|
79565
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.RpcMarshaling),
|
|
79566
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_140__.RpcMultipart),
|
|
79567
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcNotFoundResponse),
|
|
79568
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_139__.RpcOpenAPIDescription),
|
|
79569
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__.RpcOperation),
|
|
79570
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__.RpcOperationPolicy),
|
|
79571
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_130__.RpcPendingQueue),
|
|
79572
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__.RpcPendingResponse),
|
|
79573
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcProtocol),
|
|
79574
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcProtocolEvent),
|
|
79575
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcProtocolVersion),
|
|
79576
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushChannel),
|
|
79577
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushConnection),
|
|
79578
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushService),
|
|
79579
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushSubscription),
|
|
79580
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__.RpcPushTransport),
|
|
79581
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__.RpcRegistry),
|
|
79582
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.RpcRequest),
|
|
79583
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcRequestEvent),
|
|
79584
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__.RpcRequestFulfillment),
|
|
79585
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcRequestStatus),
|
|
79586
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.RpcResponseCacheControl),
|
|
79587
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__.RpcRoutingMap),
|
|
79588
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_135__.RpcRoutingToken),
|
|
79589
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__.RpcSerializedValue),
|
|
79590
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_127__.RpcSessionInvocation),
|
|
79268
79591
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SchemaState),
|
|
79269
|
-
/* harmony export */ "SectionType": () => (/* reexport safe */
|
|
79270
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
79271
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
79272
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
79273
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
79274
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
79275
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
79276
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
79277
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
79278
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
79279
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
79280
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
79281
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
79282
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
79283
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
79284
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
79285
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
79286
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
79287
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
79592
|
+
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.SectionType),
|
|
79593
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ServerError),
|
|
79594
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_64__.ServerTimeoutError),
|
|
79595
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_91__.SilhouetteEdgeArgs),
|
|
79596
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyBox),
|
|
79597
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyBoxImageType),
|
|
79598
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyCube),
|
|
79599
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkyGradient),
|
|
79600
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_106__.SkySphere),
|
|
79601
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_100__.SnapshotIModelRpcInterface),
|
|
79602
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_71__.SolarLight),
|
|
79603
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_109__.SolarShadowSettings),
|
|
79604
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifier),
|
|
79605
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierFlags),
|
|
79606
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierInsideDisplay),
|
|
79607
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifierOutsideDisplay),
|
|
79608
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__.SpatialClassifiers),
|
|
79609
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_111__.SubCategoryAppearance),
|
|
79610
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_112__.SubCategoryOverride),
|
|
79288
79611
|
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SyncMode),
|
|
79289
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
79290
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
79291
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
79292
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
79293
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
79294
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
79295
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
79296
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
79297
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
79298
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
79299
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
79300
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
79301
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
79302
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
79303
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
79304
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
79305
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
79306
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
79307
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
79308
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
79309
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
79310
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
79311
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
79312
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
79313
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
79314
|
-
/* harmony export */ "TypeDefinition": () => (/* reexport safe */
|
|
79612
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__.TerrainHeightOriginMode),
|
|
79613
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__.TerrainSettings),
|
|
79614
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_101__.TestRpcManager),
|
|
79615
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_51__.TextString),
|
|
79616
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_77__.TextureMapUnits),
|
|
79617
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_114__.TextureMapping),
|
|
79618
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_115__.TextureTransparency),
|
|
79619
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplay),
|
|
79620
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplayMode),
|
|
79621
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensor),
|
|
79622
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicDisplaySensorSettings),
|
|
79623
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientColorScheme),
|
|
79624
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientMode),
|
|
79625
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__.ThematicGradientSettings),
|
|
79626
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_118__.TileContentSource),
|
|
79627
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileFormat),
|
|
79628
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileHeader),
|
|
79629
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TileMetadataReader),
|
|
79630
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TileOptions),
|
|
79631
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileReadError),
|
|
79632
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.TileReadStatus),
|
|
79633
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.TreeFlags),
|
|
79634
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Tween),
|
|
79635
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_119__.Tweens),
|
|
79636
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_120__.TxnAction),
|
|
79637
|
+
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.TypeDefinition),
|
|
79315
79638
|
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_8__.TypeOfChange),
|
|
79316
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
79317
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
79318
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
79319
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
79320
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
79321
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
79322
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
79323
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
79324
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
79325
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
79326
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
79327
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
79328
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
79329
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
79330
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
79331
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
79332
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
79333
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
79334
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
79335
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
79336
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
79337
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
79338
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
79339
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
79340
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
79341
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
79342
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
79343
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
79344
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
79345
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
79346
|
-
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */
|
|
79347
|
-
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */
|
|
79348
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
79349
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
79350
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
79351
|
-
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */
|
|
79352
|
-
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */
|
|
79353
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
79354
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
79355
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
79356
|
-
/* harmony export */ "
|
|
79357
|
-
/* harmony export */ "
|
|
79639
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__.VerticalCRS),
|
|
79640
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.ViewDetails),
|
|
79641
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_121__.ViewDetails3d),
|
|
79642
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_122__.ViewFlags),
|
|
79643
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__.WEB_RPC_CONSTANTS),
|
|
79644
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_143__.WebAppRpcLogging),
|
|
79645
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_141__.WebAppRpcProtocol),
|
|
79646
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_142__.WebAppRpcRequest),
|
|
79647
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__.WhiteOnWhiteReversalSettings),
|
|
79648
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_102__.WipRpcInterface),
|
|
79649
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__.XyzRotation),
|
|
79650
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.aggregateLoad),
|
|
79651
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.bisectTileRange2d),
|
|
79652
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.bisectTileRange3d),
|
|
79653
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarAngles),
|
|
79654
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarDirection),
|
|
79655
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSolarDirectionFromAngles),
|
|
79656
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__.calculateSunriseOrSunset),
|
|
79657
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.compareIModelTileTreeIds),
|
|
79658
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeChildTileProps),
|
|
79659
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeChildTileRanges),
|
|
79660
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.computeTileChordTolerance),
|
|
79661
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.defaultTileOptions),
|
|
79662
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.getMaximumMajorTileFormatVersion),
|
|
79663
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__.getPullChangesIpcChannel),
|
|
79664
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_118__.getTileObjectReference),
|
|
79665
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.iModelTileTreeIdToString),
|
|
79666
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_66__.iTwinChannel),
|
|
79667
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__.initializeRpcRequest),
|
|
79668
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.isKnownTileFormat),
|
|
79669
|
+
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.isPlacement2dProps),
|
|
79670
|
+
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_25__.isPlacement3dProps),
|
|
79671
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.isPowerOfTwo),
|
|
79672
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.isValidImageSourceFormat),
|
|
79673
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__.mapToGeoServiceStatus),
|
|
79674
|
+
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.nativeAppChannel),
|
|
79675
|
+
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__.nativeAppNotify),
|
|
79676
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_62__.nextHighestPowerOfTwo),
|
|
79677
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.nextPoint3d64FromByteStream),
|
|
79678
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.parseTileTreeIdAndContentId),
|
|
79679
|
+
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_24__.readElementMeshes),
|
|
79680
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__.readTileContentDescription),
|
|
79681
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__.tileFormatFromNumber)
|
|
79358
79682
|
/* harmony export */ });
|
|
79359
79683
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
79360
79684
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -79380,135 +79704,136 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79380
79704
|
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
79381
79705
|
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
79382
79706
|
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
79383
|
-
/* harmony import */ var
|
|
79384
|
-
/* harmony import */ var
|
|
79385
|
-
/* harmony import */ var
|
|
79386
|
-
/* harmony import */ var
|
|
79387
|
-
/* harmony import */ var
|
|
79388
|
-
/* harmony import */ var
|
|
79389
|
-
/* harmony import */ var
|
|
79390
|
-
/* harmony import */ var
|
|
79391
|
-
/* harmony import */ var
|
|
79392
|
-
/* harmony import */ var
|
|
79393
|
-
/* harmony import */ var
|
|
79394
|
-
/* harmony import */ var
|
|
79395
|
-
/* harmony import */ var
|
|
79396
|
-
/* harmony import */ var
|
|
79397
|
-
/* harmony import */ var
|
|
79398
|
-
/* harmony import */ var
|
|
79399
|
-
/* harmony import */ var
|
|
79400
|
-
/* harmony import */ var
|
|
79401
|
-
/* harmony import */ var
|
|
79402
|
-
/* harmony import */ var
|
|
79403
|
-
/* harmony import */ var
|
|
79404
|
-
/* harmony import */ var
|
|
79405
|
-
/* harmony import */ var
|
|
79406
|
-
/* harmony import */ var
|
|
79407
|
-
/* harmony import */ var
|
|
79408
|
-
/* harmony import */ var
|
|
79409
|
-
/* harmony import */ var
|
|
79410
|
-
/* harmony import */ var
|
|
79411
|
-
/* harmony import */ var
|
|
79412
|
-
/* harmony import */ var
|
|
79413
|
-
/* harmony import */ var
|
|
79414
|
-
/* harmony import */ var
|
|
79415
|
-
/* harmony import */ var
|
|
79416
|
-
/* harmony import */ var
|
|
79417
|
-
/* harmony import */ var
|
|
79418
|
-
/* harmony import */ var
|
|
79419
|
-
/* harmony import */ var
|
|
79420
|
-
/* harmony import */ var
|
|
79421
|
-
/* harmony import */ var
|
|
79422
|
-
/* harmony import */ var
|
|
79423
|
-
/* harmony import */ var
|
|
79424
|
-
/* harmony import */ var
|
|
79425
|
-
/* harmony import */ var
|
|
79426
|
-
/* harmony import */ var
|
|
79427
|
-
/* harmony import */ var
|
|
79428
|
-
/* harmony import */ var
|
|
79429
|
-
/* harmony import */ var
|
|
79430
|
-
/* harmony import */ var
|
|
79431
|
-
/* harmony import */ var
|
|
79432
|
-
/* harmony import */ var
|
|
79433
|
-
/* harmony import */ var
|
|
79434
|
-
/* harmony import */ var
|
|
79435
|
-
/* harmony import */ var
|
|
79436
|
-
/* harmony import */ var
|
|
79437
|
-
/* harmony import */ var
|
|
79438
|
-
/* harmony import */ var
|
|
79439
|
-
/* harmony import */ var
|
|
79440
|
-
/* harmony import */ var
|
|
79441
|
-
/* harmony import */ var
|
|
79442
|
-
/* harmony import */ var
|
|
79443
|
-
/* harmony import */ var
|
|
79444
|
-
/* harmony import */ var
|
|
79445
|
-
/* harmony import */ var
|
|
79446
|
-
/* harmony import */ var
|
|
79447
|
-
/* harmony import */ var
|
|
79448
|
-
/* harmony import */ var
|
|
79449
|
-
/* harmony import */ var
|
|
79450
|
-
/* harmony import */ var
|
|
79451
|
-
/* harmony import */ var
|
|
79452
|
-
/* harmony import */ var
|
|
79453
|
-
/* harmony import */ var
|
|
79454
|
-
/* harmony import */ var
|
|
79455
|
-
/* harmony import */ var
|
|
79456
|
-
/* harmony import */ var
|
|
79457
|
-
/* harmony import */ var
|
|
79458
|
-
/* harmony import */ var
|
|
79459
|
-
/* harmony import */ var
|
|
79460
|
-
/* harmony import */ var
|
|
79461
|
-
/* harmony import */ var
|
|
79462
|
-
/* harmony import */ var
|
|
79463
|
-
/* harmony import */ var
|
|
79464
|
-
/* harmony import */ var
|
|
79465
|
-
/* harmony import */ var
|
|
79466
|
-
/* harmony import */ var
|
|
79467
|
-
/* harmony import */ var
|
|
79468
|
-
/* harmony import */ var
|
|
79469
|
-
/* harmony import */ var
|
|
79470
|
-
/* harmony import */ var
|
|
79471
|
-
/* harmony import */ var
|
|
79472
|
-
/* harmony import */ var
|
|
79473
|
-
/* harmony import */ var
|
|
79474
|
-
/* harmony import */ var
|
|
79475
|
-
/* harmony import */ var
|
|
79476
|
-
/* harmony import */ var
|
|
79477
|
-
/* harmony import */ var
|
|
79478
|
-
/* harmony import */ var
|
|
79479
|
-
/* harmony import */ var
|
|
79480
|
-
/* harmony import */ var
|
|
79481
|
-
/* harmony import */ var
|
|
79482
|
-
/* harmony import */ var
|
|
79483
|
-
/* harmony import */ var
|
|
79484
|
-
/* harmony import */ var
|
|
79485
|
-
/* harmony import */ var
|
|
79486
|
-
/* harmony import */ var
|
|
79487
|
-
/* harmony import */ var
|
|
79488
|
-
/* harmony import */ var
|
|
79489
|
-
/* harmony import */ var
|
|
79490
|
-
/* harmony import */ var
|
|
79491
|
-
/* harmony import */ var
|
|
79492
|
-
/* harmony import */ var
|
|
79493
|
-
/* harmony import */ var
|
|
79494
|
-
/* harmony import */ var
|
|
79495
|
-
/* harmony import */ var
|
|
79496
|
-
/* harmony import */ var
|
|
79497
|
-
/* harmony import */ var
|
|
79498
|
-
/* harmony import */ var
|
|
79499
|
-
/* harmony import */ var
|
|
79500
|
-
/* harmony import */ var
|
|
79501
|
-
/* harmony import */ var
|
|
79502
|
-
/* harmony import */ var
|
|
79503
|
-
/* harmony import */ var
|
|
79504
|
-
/* harmony import */ var
|
|
79505
|
-
/* harmony import */ var
|
|
79506
|
-
/* harmony import */ var
|
|
79507
|
-
/* harmony import */ var
|
|
79508
|
-
/* harmony import */ var
|
|
79509
|
-
/* harmony import */ var
|
|
79510
|
-
/* harmony import */ var
|
|
79511
|
-
/* harmony import */ var
|
|
79707
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
79708
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
79709
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
79710
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
79711
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
79712
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
79713
|
+
/* harmony import */ var _FeatureGates__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./FeatureGates */ "../../core/common/lib/esm/FeatureGates.js");
|
|
79714
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
79715
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
79716
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
79717
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
79718
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
79719
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
79720
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
79721
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
79722
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
79723
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
79724
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
79725
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
79726
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
79727
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
79728
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
79729
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
79730
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
79731
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
79732
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
79733
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
79734
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
79735
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
79736
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
79737
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
79738
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
79739
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
79740
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
79741
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
79742
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
79743
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
79744
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
79745
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
79746
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
79747
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
79748
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
79749
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
79750
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
79751
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
79752
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
79753
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
79754
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
79755
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
79756
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
79757
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
79758
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
79759
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
79760
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
79761
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
79762
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
79763
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
79764
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
79765
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
79766
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
79767
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
79768
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
79769
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
79770
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
79771
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
79772
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
79773
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
79774
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
79775
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
79776
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
79777
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
79778
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
79779
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
79780
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
79781
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
79782
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
79783
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
79784
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
79785
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
79786
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
79787
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
79788
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
79789
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
79790
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
79791
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
79792
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
79793
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
79794
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
79795
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
79796
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
79797
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
79798
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
79799
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
79800
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
79801
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
79802
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
79803
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
79804
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
79805
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
79806
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
79807
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
79808
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
79809
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
79810
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
79811
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
79812
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
79813
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
79814
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
79815
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
79816
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
79817
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
79818
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
79819
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
79820
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
79821
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
79822
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
79823
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
79824
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
79825
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
79826
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
79827
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
79828
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
79829
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
79830
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
79831
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
79832
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
79833
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
79834
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
79835
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
79836
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
79512
79837
|
/*---------------------------------------------------------------------------------------------
|
|
79513
79838
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
79514
79839
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -79664,6 +79989,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79664
79989
|
|
|
79665
79990
|
|
|
79666
79991
|
|
|
79992
|
+
|
|
79667
79993
|
|
|
79668
79994
|
|
|
79669
79995
|
/** @docs-package-description
|
|
@@ -88747,11 +89073,14 @@ class IModelReadRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
88747
89073
|
async loadElementProps(_iModelToken, _elementIdentifier, _options) {
|
|
88748
89074
|
return this.forward(arguments);
|
|
88749
89075
|
}
|
|
89076
|
+
async generateElementMeshes(_iModelToken, _props) {
|
|
89077
|
+
return this.forward(arguments);
|
|
89078
|
+
}
|
|
88750
89079
|
}
|
|
88751
89080
|
/** The immutable name of the interface. */
|
|
88752
89081
|
IModelReadRpcInterface.interfaceName = "IModelReadRpcInterface";
|
|
88753
89082
|
/** The semantic version of the interface. */
|
|
88754
|
-
IModelReadRpcInterface.interfaceVersion = "3.
|
|
89083
|
+
IModelReadRpcInterface.interfaceVersion = "3.5.0";
|
|
88755
89084
|
__decorate([
|
|
88756
89085
|
_core_RpcOperation__WEBPACK_IMPORTED_MODULE_1__.RpcOperation.allowResponseCaching(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable)
|
|
88757
89086
|
], IModelReadRpcInterface.prototype, "getConnectionProps", null);
|
|
@@ -89410,7 +89739,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
89410
89739
|
/* harmony export */ "RpcNotFoundResponse": () => (/* binding */ RpcNotFoundResponse),
|
|
89411
89740
|
/* harmony export */ "RpcPendingResponse": () => (/* binding */ RpcPendingResponse)
|
|
89412
89741
|
/* harmony export */ });
|
|
89413
|
-
/* harmony import */ var js_base64__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-base64 */ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
89742
|
+
/* 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");
|
|
89414
89743
|
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
89415
89744
|
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
89416
89745
|
/* harmony import */ var _RpcConfiguration__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
@@ -114937,11 +115266,27 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
|
|
|
114937
115266
|
/** Request element mass properties from the backend.
|
|
114938
115267
|
* @note For better performance use [[getMassPropertiesPerCandidate]] when called from a loop with identical operations and a single candidate per iteration.
|
|
114939
115268
|
*/
|
|
114940
|
-
async getMassProperties(requestProps) {
|
|
115269
|
+
async getMassProperties(requestProps) {
|
|
115270
|
+
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassProperties(this.getRpcProps(), requestProps);
|
|
115271
|
+
}
|
|
114941
115272
|
/** Request mass properties for multiple elements from the backend. */
|
|
114942
115273
|
async getMassPropertiesPerCandidate(requestProps) {
|
|
114943
115274
|
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassPropertiesPerCandidate(this.getRpcProps(), requestProps);
|
|
114944
115275
|
}
|
|
115276
|
+
/** Produce encoded [Polyface]($core-geometry)s from the geometry stream of a [GeometricElement]($backend).
|
|
115277
|
+
* 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.
|
|
115278
|
+
* The polyfaces can be decoded using [readElementMeshes]($common).
|
|
115279
|
+
* Symbology, UV parameters, and normal vectors are not included in the result.
|
|
115280
|
+
* @param requestProps A description of how to produce the polyfaces and from which element to obtain them.
|
|
115281
|
+
* @returns an encoded list of polyfaces that can be decoded by [readElementMeshes]($common).
|
|
115282
|
+
* @throws Error if [ElementMeshRequestProps.source]($common) does not refer to a [GeometricElement]($backend).
|
|
115283
|
+
* @note This function is intended to support limited analysis of an element's geometry as a mesh. It is not intended for producing graphics.
|
|
115284
|
+
* @see [[TileAdmin.requestElementGraphics]] to obtain meshes appropriate for display.
|
|
115285
|
+
* @beta
|
|
115286
|
+
*/
|
|
115287
|
+
async generateElementMeshes(requestProps) {
|
|
115288
|
+
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).generateElementMeshes(this.getRpcProps(), requestProps);
|
|
115289
|
+
}
|
|
114945
115290
|
/** Convert a point in this iModel's Spatial coordinates to a [[Cartographic]] using the Geographic location services for this IModelConnection.
|
|
114946
115291
|
* @param spatial A point in the iModel's spatial coordinates
|
|
114947
115292
|
* @param result If defined, use this for output
|
|
@@ -123128,6 +123473,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
123128
123473
|
/* harmony export */ "ViewPose3d": () => (/* binding */ ViewPose3d)
|
|
123129
123474
|
/* harmony export */ });
|
|
123130
123475
|
/* harmony import */ var _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-geometry */ "../../core/geometry/lib/esm/core-geometry.js");
|
|
123476
|
+
/* harmony import */ var _ViewState__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ViewState */ "../../core/frontend/lib/esm/ViewState.js");
|
|
123131
123477
|
/*---------------------------------------------------------------------------------------------
|
|
123132
123478
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
123133
123479
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -123136,8 +123482,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
123136
123482
|
* @module Views
|
|
123137
123483
|
*/
|
|
123138
123484
|
|
|
123139
|
-
|
|
123140
|
-
|
|
123485
|
+
|
|
123486
|
+
/** The "pose" for a [View]($docs/learning/frontend/views#viewstate-parameters) describing the viewed area or volume, depending upon whether
|
|
123487
|
+
* the view is 2d or 3d.
|
|
123488
|
+
* @see [[ViewState.savePose]] to extract a pose from a view and [[ViewState.applyPose]] to apply a pose to a view.
|
|
123141
123489
|
* @note a ViewPose is immutable.
|
|
123142
123490
|
* @public
|
|
123143
123491
|
* @extensions
|
|
@@ -123146,15 +123494,22 @@ class ViewPose {
|
|
|
123146
123494
|
constructor(cameraOn) {
|
|
123147
123495
|
this.cameraOn = cameraOn;
|
|
123148
123496
|
}
|
|
123497
|
+
/** Computes the center of the viewed volume. */
|
|
123149
123498
|
get center() {
|
|
123150
123499
|
const delta = this.rotation.multiplyTransposeVector(this.extents);
|
|
123151
123500
|
return this.origin.plusScaled(delta, 0.5);
|
|
123152
123501
|
}
|
|
123502
|
+
/** Returns the target point of the view. This is the same as [[center]] unless [[cameraOn]] is `true`. */
|
|
123153
123503
|
get target() { return this.center; }
|
|
123504
|
+
/** Computes the Z vector of the [[rotation]] matrix. */
|
|
123154
123505
|
get zVec() { return this.rotation.getRow(2); }
|
|
123155
123506
|
}
|
|
123156
|
-
/**
|
|
123507
|
+
/** The "pose" for a [[ViewState3d]], including information about the view's [Camera]($common) if it is enabled.
|
|
123508
|
+
* @public
|
|
123509
|
+
* @extensions
|
|
123510
|
+
*/
|
|
123157
123511
|
class ViewPose3d extends ViewPose {
|
|
123512
|
+
/** Construct a pose from the specified 3d view. */
|
|
123158
123513
|
constructor(view) {
|
|
123159
123514
|
super(view.isCameraOn);
|
|
123160
123515
|
this.origin = view.origin.clone();
|
|
@@ -123162,17 +123517,24 @@ class ViewPose3d extends ViewPose {
|
|
|
123162
123517
|
this.rotation = view.rotation.clone();
|
|
123163
123518
|
this.camera = view.camera.clone();
|
|
123164
123519
|
}
|
|
123520
|
+
/** @internal override */
|
|
123165
123521
|
get target() {
|
|
123166
123522
|
return this.cameraOn ? this.camera.eye.plusScaled(this.rotation.getRow(2), -1.0 * this.camera.focusDist) : this.center;
|
|
123167
123523
|
}
|
|
123524
|
+
/** @internal override */
|
|
123168
123525
|
equal(other) {
|
|
123526
|
+
if (!(other instanceof ViewPose3d))
|
|
123527
|
+
return false;
|
|
123169
123528
|
return this.cameraOn === other.cameraOn &&
|
|
123170
123529
|
this.origin.isAlmostEqual(other.origin) &&
|
|
123171
123530
|
this.extents.isAlmostEqual(other.extents) &&
|
|
123172
123531
|
this.rotation.isAlmostEqual(other.rotation) &&
|
|
123173
123532
|
(!this.cameraOn || this.camera.equals(other.camera));
|
|
123174
123533
|
}
|
|
123534
|
+
/** @internal override */
|
|
123175
123535
|
equalState(view) {
|
|
123536
|
+
if (!(view instanceof _ViewState__WEBPACK_IMPORTED_MODULE_1__.ViewState3d))
|
|
123537
|
+
return false;
|
|
123176
123538
|
return this.cameraOn === view.isCameraOn &&
|
|
123177
123539
|
this.origin.isAlmostEqual(view.origin) &&
|
|
123178
123540
|
this.extents.isAlmostEqual(view.extents) &&
|
|
@@ -123180,26 +123542,39 @@ class ViewPose3d extends ViewPose {
|
|
|
123180
123542
|
(!this.cameraOn || this.camera.equals(view.camera));
|
|
123181
123543
|
}
|
|
123182
123544
|
}
|
|
123183
|
-
/**
|
|
123545
|
+
/** The "pose" for a [[ViewState2d]].
|
|
123546
|
+
* @public
|
|
123547
|
+
* @extensions
|
|
123548
|
+
*/
|
|
123184
123549
|
class ViewPose2d extends ViewPose {
|
|
123550
|
+
/** Construct a pose from the specified 2d view. */
|
|
123185
123551
|
constructor(view) {
|
|
123186
123552
|
super(false);
|
|
123187
|
-
this.
|
|
123553
|
+
this.origin2d = view.origin.clone();
|
|
123188
123554
|
this.delta = view.delta.clone();
|
|
123189
123555
|
this.angle = view.angle.clone();
|
|
123190
123556
|
}
|
|
123557
|
+
/** @internal override */
|
|
123191
123558
|
equal(other) {
|
|
123192
|
-
|
|
123559
|
+
if (!(other instanceof ViewPose2d))
|
|
123560
|
+
return false;
|
|
123561
|
+
return this.origin2d.isAlmostEqual(other.origin) &&
|
|
123193
123562
|
this.delta.isAlmostEqual(other.delta) &&
|
|
123194
123563
|
this.angle.isAlmostEqualNoPeriodShift(other.angle);
|
|
123195
123564
|
}
|
|
123565
|
+
/** @internal override */
|
|
123196
123566
|
equalState(view) {
|
|
123197
|
-
|
|
123567
|
+
if (!(view instanceof _ViewState__WEBPACK_IMPORTED_MODULE_1__.ViewState2d))
|
|
123568
|
+
return false;
|
|
123569
|
+
return this.origin2d.isAlmostEqual(view.origin) &&
|
|
123198
123570
|
this.delta.isAlmostEqual(view.delta) &&
|
|
123199
123571
|
this.angle.isAlmostEqualNoPeriodShift(view.angle);
|
|
123200
123572
|
}
|
|
123201
|
-
|
|
123573
|
+
/** @internal override */
|
|
123574
|
+
get origin() { return new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Point3d(this.origin2d.x, this.origin2d.y); }
|
|
123575
|
+
/** @internal override */
|
|
123202
123576
|
get extents() { return new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Vector3d(this.delta.x, this.delta.y); }
|
|
123577
|
+
/** @internal override */
|
|
123203
123578
|
get rotation() { return _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Matrix3d.createRotationAroundVector(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Vector3d.unitZ(), this.angle); }
|
|
123204
123579
|
}
|
|
123205
123580
|
|
|
@@ -124441,16 +124816,18 @@ class ViewState3d extends ViewState {
|
|
|
124441
124816
|
const index = this.details.modelClipGroups.findGroupIndex(modelId);
|
|
124442
124817
|
return -1 !== index ? this._modelClips[index] : undefined;
|
|
124443
124818
|
}
|
|
124444
|
-
/**
|
|
124819
|
+
/** Capture a copy of the viewed volume and camera parameters. */
|
|
124445
124820
|
savePose() { return new _ViewPose__WEBPACK_IMPORTED_MODULE_14__.ViewPose3d(this); }
|
|
124446
|
-
/** @internal */
|
|
124821
|
+
/** @internal override */
|
|
124447
124822
|
applyPose(val) {
|
|
124448
|
-
|
|
124449
|
-
|
|
124450
|
-
|
|
124451
|
-
|
|
124452
|
-
|
|
124453
|
-
|
|
124823
|
+
if (val instanceof _ViewPose__WEBPACK_IMPORTED_MODULE_14__.ViewPose3d) {
|
|
124824
|
+
this._cameraOn = val.cameraOn;
|
|
124825
|
+
this.setOrigin(val.origin);
|
|
124826
|
+
this.setExtents(val.extents);
|
|
124827
|
+
this.rotation.setFrom(val.rotation);
|
|
124828
|
+
this.camera.setFrom(val.camera);
|
|
124829
|
+
this._updateMaxGlobalScopeFactor();
|
|
124830
|
+
}
|
|
124454
124831
|
return this;
|
|
124455
124832
|
}
|
|
124456
124833
|
toJSON() {
|
|
@@ -125146,13 +125523,15 @@ class ViewState2d extends ViewState {
|
|
|
125146
125523
|
is3d() { return false; }
|
|
125147
125524
|
/** @internal */
|
|
125148
125525
|
isSpatialView() { return false; }
|
|
125149
|
-
/**
|
|
125526
|
+
/** Capture a copy of the viewed area. */
|
|
125150
125527
|
savePose() { return new _ViewPose__WEBPACK_IMPORTED_MODULE_14__.ViewPose2d(this); }
|
|
125151
|
-
/** @internal */
|
|
125528
|
+
/** @internal override */
|
|
125152
125529
|
applyPose(val) {
|
|
125153
|
-
|
|
125154
|
-
|
|
125155
|
-
|
|
125530
|
+
if (val instanceof _ViewPose__WEBPACK_IMPORTED_MODULE_14__.ViewPose2d) {
|
|
125531
|
+
this.setOrigin(val.origin);
|
|
125532
|
+
this.setExtents(val.delta);
|
|
125533
|
+
this.angle.setFrom(val.angle);
|
|
125534
|
+
}
|
|
125156
125535
|
return this;
|
|
125157
125536
|
}
|
|
125158
125537
|
/** Return the model for this 2d view. */
|
|
@@ -146393,6 +146772,19 @@ class MeshData {
|
|
|
146393
146772
|
if (undefined !== params.surface.textureMapping) {
|
|
146394
146773
|
this.texture = params.surface.textureMapping.texture;
|
|
146395
146774
|
this._textureAlwaysDisplayed = params.surface.textureMapping.alwaysDisplayed;
|
|
146775
|
+
if (undefined !== params.surface.material && !params.surface.material.isAtlas) {
|
|
146776
|
+
const matTM = params.surface.material.material.textureMapping;
|
|
146777
|
+
if (undefined !== matTM && undefined !== matTM.normalMapParams) {
|
|
146778
|
+
if (undefined !== matTM.normalMapParams.normalMap) {
|
|
146779
|
+
this.normalMap = matTM.normalMapParams.normalMap;
|
|
146780
|
+
}
|
|
146781
|
+
else {
|
|
146782
|
+
// 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.
|
|
146783
|
+
this.normalMap = this.texture;
|
|
146784
|
+
this.texture = undefined;
|
|
146785
|
+
}
|
|
146786
|
+
}
|
|
146787
|
+
}
|
|
146396
146788
|
}
|
|
146397
146789
|
else {
|
|
146398
146790
|
this.texture = undefined;
|
|
@@ -146477,6 +146869,7 @@ class MeshGeometry extends _CachedGeometry__WEBPACK_IMPORTED_MODULE_1__.LUTGeome
|
|
|
146477
146869
|
get colorInfo() { return this.mesh.lut.colorInfo; }
|
|
146478
146870
|
get uniformColor() { return this.colorInfo.isUniform ? this.colorInfo.uniform : undefined; }
|
|
146479
146871
|
get texture() { return this.mesh.texture; }
|
|
146872
|
+
get normalMap() { return this.mesh.normalMap; }
|
|
146480
146873
|
get hasBakedLighting() { return this.mesh.hasBakedLighting; }
|
|
146481
146874
|
get lut() { return this.mesh.lut; }
|
|
146482
146875
|
get hasScalarAnimation() { return this.mesh.lut.hasScalarAnimation; }
|
|
@@ -149287,6 +149680,8 @@ var TextureUnit;
|
|
|
149287
149680
|
TextureUnit[TextureUnit["RealityMeshThematicGradient"] = WebGLRenderingContext.TEXTURE11] = "RealityMeshThematicGradient";
|
|
149288
149681
|
// Lookup table for indexed edges - used only if WebGL 2 is available.
|
|
149289
149682
|
TextureUnit[TextureUnit["EdgeLUT"] = WebGLRenderingContext.TEXTURE12] = "EdgeLUT";
|
|
149683
|
+
// Normal map texture - used only if WebGL 2 is available.
|
|
149684
|
+
TextureUnit[TextureUnit["NormalMap"] = WebGLRenderingContext.TEXTURE13] = "NormalMap";
|
|
149290
149685
|
})(TextureUnit || (TextureUnit = {}));
|
|
149291
149686
|
/** @internal */
|
|
149292
149687
|
function isPlanar(order) {
|
|
@@ -152792,7 +153187,7 @@ class VertexShaderBuilder extends ShaderBuilder {
|
|
|
152792
153187
|
*/
|
|
152793
153188
|
class FragmentShaderBuilder extends ShaderBuilder {
|
|
152794
153189
|
constructor(flags = {}) {
|
|
152795
|
-
super(
|
|
153190
|
+
super(22 /* COUNT */, flags);
|
|
152796
153191
|
this.requiresEarlyZWorkaround = false;
|
|
152797
153192
|
if (_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2)
|
|
152798
153193
|
this.addFragOutput("FragColor", -1);
|
|
@@ -152838,6 +153233,11 @@ class FragmentShaderBuilder extends ShaderBuilder {
|
|
|
152838
153233
|
prelude.addFunction("bool checkForEarlyDiscard()", checkForEarlyDiscard);
|
|
152839
153234
|
main.addline(" if (checkForEarlyDiscard()) { discard; return; }");
|
|
152840
153235
|
}
|
|
153236
|
+
const finalizeNormal = this.get(21 /* FinalizeNormal */);
|
|
153237
|
+
if (undefined !== finalizeNormal) {
|
|
153238
|
+
prelude.addFunction("vec3 finalizeNormal()", finalizeNormal);
|
|
153239
|
+
main.addline(" g_normal = finalizeNormal();");
|
|
153240
|
+
}
|
|
152841
153241
|
main.addline(" vec4 baseColor = computeBaseColor();");
|
|
152842
153242
|
const finalizeDepth = this.get(18 /* FinalizeDepth */);
|
|
152843
153243
|
if (undefined !== finalizeDepth) {
|
|
@@ -154370,6 +154770,7 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
154370
154770
|
get isLit() { return _primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_2__.SurfaceType.Lit === this.surfaceType || _primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_2__.SurfaceType.TexturedLit === this.surfaceType; }
|
|
154371
154771
|
get isTexturedType() { return _primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_2__.SurfaceType.Textured === this.surfaceType || _primitives_SurfaceParams__WEBPACK_IMPORTED_MODULE_2__.SurfaceType.TexturedLit === this.surfaceType; }
|
|
154372
154772
|
get hasTexture() { return this.isTexturedType && undefined !== this.texture; }
|
|
154773
|
+
get hasNormalMap() { return this.isLit && this.isTexturedType && undefined !== this.normalMap; }
|
|
154373
154774
|
get isGlyph() { return this.mesh.isGlyph; }
|
|
154374
154775
|
get alwaysRenderTranslucent() { return this.isGlyph; }
|
|
154375
154776
|
get isTileSection() { return undefined !== this.texture && this.texture.isTileSection; }
|
|
@@ -154486,6 +154887,9 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
154486
154887
|
useTexture(params) {
|
|
154487
154888
|
return this.wantTextures(params.target, this.hasTexture);
|
|
154488
154889
|
}
|
|
154890
|
+
useNormalMap(params) {
|
|
154891
|
+
return this.wantNormalMaps(params.target, this.hasNormalMap);
|
|
154892
|
+
}
|
|
154489
154893
|
computeSurfaceFlags(params, flags) {
|
|
154490
154894
|
const target = params.target;
|
|
154491
154895
|
const vf = target.currentViewFlags;
|
|
@@ -154493,7 +154897,6 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
154493
154897
|
flags[3 /* IgnoreMaterial */] = useMaterial ? 0 : 1;
|
|
154494
154898
|
flags[9 /* HasMaterialAtlas */] = useMaterial && this.hasMaterialAtlas ? 1 : 0;
|
|
154495
154899
|
flags[1 /* ApplyLighting */] = 0;
|
|
154496
|
-
flags[8 /* HasNormalMap */] = 0;
|
|
154497
154900
|
flags[6 /* HasColorAndNormal */] = 0;
|
|
154498
154901
|
if (this.isLit) {
|
|
154499
154902
|
flags[2 /* HasNormals */] = 1;
|
|
@@ -154510,6 +154913,7 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
154510
154913
|
flags[2 /* HasNormals */] = 0;
|
|
154511
154914
|
}
|
|
154512
154915
|
flags[0 /* HasTexture */] = this.useTexture(params) ? 1 : 0;
|
|
154916
|
+
flags[8 /* HasNormalMap */] = this.useNormalMap(params) ? 1 : 0;
|
|
154513
154917
|
// The transparency threshold controls how transparent a surface must be to allow light to pass through; more opaque surfaces cast shadows.
|
|
154514
154918
|
flags[4 /* TransparencyThreshold */] = params.target.isDrawingShadowMap ? 1 : 0;
|
|
154515
154919
|
flags[5 /* BackgroundFill */] = 0;
|
|
@@ -154556,6 +154960,17 @@ class SurfaceGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_7__.MeshGeo
|
|
|
154556
154960
|
return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FillFlags.Always === (fill & _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FillFlags.Always);
|
|
154557
154961
|
}
|
|
154558
154962
|
}
|
|
154963
|
+
wantNormalMaps(target, normalMapExists) {
|
|
154964
|
+
if (!normalMapExists || !target.displayNormalMaps)
|
|
154965
|
+
return false;
|
|
154966
|
+
const flags = target.currentViewFlags;
|
|
154967
|
+
switch (flags.renderMode) {
|
|
154968
|
+
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RenderMode.SmoothShade:
|
|
154969
|
+
return flags.textures;
|
|
154970
|
+
default:
|
|
154971
|
+
return false;
|
|
154972
|
+
}
|
|
154973
|
+
}
|
|
154559
154974
|
}
|
|
154560
154975
|
|
|
154561
154976
|
|
|
@@ -155230,6 +155645,7 @@ class System extends _RenderSystem__WEBPACK_IMPORTED_MODULE_7__.RenderSystem {
|
|
|
155230
155645
|
textureWeight: args.textureMapping.weight,
|
|
155231
155646
|
worldMapping: args.textureMapping.worldMapping,
|
|
155232
155647
|
}));
|
|
155648
|
+
params.textureMapping.normalMapParams = args.textureMapping.normalMapParams;
|
|
155233
155649
|
}
|
|
155234
155650
|
if (args.source) {
|
|
155235
155651
|
params.key = args.source.id;
|
|
@@ -155573,6 +155989,7 @@ class Target extends _RenderTarget__WEBPACK_IMPORTED_MODULE_8__.RenderTarget {
|
|
|
155573
155989
|
this.displayRealityTilePreload = false;
|
|
155574
155990
|
this.displayRealityTileRanges = false;
|
|
155575
155991
|
this.logRealityTiles = false;
|
|
155992
|
+
this.displayNormalMaps = true;
|
|
155576
155993
|
this.freezeRealityTiles = false;
|
|
155577
155994
|
this._isDisposed = false;
|
|
155578
155995
|
this._scratchRange = new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range3d();
|
|
@@ -159817,9 +160234,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
159817
160234
|
/* harmony export */ });
|
|
159818
160235
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
159819
160236
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
159820
|
-
/* harmony import */ var
|
|
159821
|
-
/* harmony import */ var
|
|
159822
|
-
/* harmony import */ var
|
|
160237
|
+
/* harmony import */ var _System__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../System */ "../../core/frontend/lib/esm/render/webgl/System.js");
|
|
160238
|
+
/* harmony import */ var _RenderFlags__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../RenderFlags */ "../../core/frontend/lib/esm/render/webgl/RenderFlags.js");
|
|
160239
|
+
/* harmony import */ var _Surface__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Surface */ "../../core/frontend/lib/esm/render/webgl/glsl/Surface.js");
|
|
160240
|
+
/* harmony import */ var _Vertex__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Vertex */ "../../core/frontend/lib/esm/render/webgl/glsl/Vertex.js");
|
|
159823
160241
|
/*---------------------------------------------------------------------------------------------
|
|
159824
160242
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
159825
160243
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -159832,6 +160250,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
159832
160250
|
|
|
159833
160251
|
|
|
159834
160252
|
|
|
160253
|
+
|
|
159835
160254
|
const initialize = `
|
|
159836
160255
|
g_anim_step = vec2(1.0) / u_animLUTParams.xy;
|
|
159837
160256
|
g_anim_center = g_anim_step * 0.5;
|
|
@@ -159987,12 +160406,12 @@ function addAnimation(vert, isSurface, isThematic) {
|
|
|
159987
160406
|
vert.addGlobal("g_anim_step", 3 /* Vec2 */);
|
|
159988
160407
|
vert.addGlobal("g_anim_center", 3 /* Vec2 */);
|
|
159989
160408
|
vert.addInitializer(initialize);
|
|
159990
|
-
vert.addFunction(
|
|
160409
|
+
vert.addFunction(_Vertex__WEBPACK_IMPORTED_MODULE_5__.unquantizePosition);
|
|
159991
160410
|
vert.addUniform("u_animLUT", 8 /* Sampler2D */, (prog) => {
|
|
159992
160411
|
prog.addGraphicUniform("u_animLUT", (uniform, params) => {
|
|
159993
160412
|
const channels = (params.geometry.asLUT).lut.auxChannels;
|
|
159994
160413
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== channels);
|
|
159995
|
-
channels.texture.bindSampler(uniform,
|
|
160414
|
+
channels.texture.bindSampler(uniform, _RenderFlags__WEBPACK_IMPORTED_MODULE_3__.TextureUnit.AuxChannelLUT);
|
|
159996
160415
|
});
|
|
159997
160416
|
});
|
|
159998
160417
|
vert.addUniform("u_animLUTParams", 4 /* Vec3 */, (prog) => {
|
|
@@ -160044,7 +160463,7 @@ function addAnimation(vert, isSurface, isThematic) {
|
|
|
160044
160463
|
});
|
|
160045
160464
|
// Normal and param
|
|
160046
160465
|
if (isSurface) {
|
|
160047
|
-
vert.addFunction(
|
|
160466
|
+
vert.addFunction(_Surface__WEBPACK_IMPORTED_MODULE_4__.octDecodeNormal);
|
|
160048
160467
|
vert.addFunction(computeAnimationFrameNormal);
|
|
160049
160468
|
vert.addFunction(computeAnimationNormal);
|
|
160050
160469
|
vert.addFunction(computeAnimationFrameParam);
|
|
@@ -160058,7 +160477,7 @@ function addAnimation(vert, isSurface, isThematic) {
|
|
|
160058
160477
|
uniform.setUniform3fv(animParams);
|
|
160059
160478
|
});
|
|
160060
160479
|
});
|
|
160061
|
-
if (isThematic === 0 /* No */) {
|
|
160480
|
+
if (isThematic === 0 /* No */ || _System__WEBPACK_IMPORTED_MODULE_2__.System.instance.capabilities.isWebGL2) {
|
|
160062
160481
|
vert.addUniform("u_animScalarParams", 4 /* Vec3 */, (prog) => {
|
|
160063
160482
|
prog.addGraphicUniform("u_animScalarParams", (uniform, params) => {
|
|
160064
160483
|
const scalars = getScalarChannel(params);
|
|
@@ -160703,7 +161122,8 @@ function createCombineTexturesProgram(context) {
|
|
|
160703
161122
|
"use strict";
|
|
160704
161123
|
__webpack_require__.r(__webpack_exports__);
|
|
160705
161124
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
160706
|
-
/* harmony export */ "
|
|
161125
|
+
/* harmony export */ "addChooseVec2WithBitFlagsFunction": () => (/* binding */ addChooseVec2WithBitFlagsFunction),
|
|
161126
|
+
/* harmony export */ "addChooseVec3WithBitFlagFunction": () => (/* binding */ addChooseVec3WithBitFlagFunction),
|
|
160707
161127
|
/* harmony export */ "addExtractNthBit": () => (/* binding */ addExtractNthBit),
|
|
160708
161128
|
/* harmony export */ "addEyeSpace": () => (/* binding */ addEyeSpace),
|
|
160709
161129
|
/* harmony export */ "addFrustum": () => (/* binding */ addFrustum),
|
|
@@ -160723,17 +161143,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
160723
161143
|
|
|
160724
161144
|
|
|
160725
161145
|
|
|
160726
|
-
|
|
160727
|
-
|
|
160728
|
-
|
|
160729
|
-
|
|
160730
|
-
|
|
161146
|
+
// These are not used anywhere currently, but will leave them here commented out in case we want them later.
|
|
161147
|
+
// const chooseFloatWithBitFlag = `
|
|
161148
|
+
// float chooseFloatWithBitFlag(float f1, float f2, float flags, float n) { return nthBitSet(flags, n) ? f2 : f1; }
|
|
161149
|
+
// `;
|
|
161150
|
+
// const chooseFloatWithBitFlag2 = `
|
|
161151
|
+
// float chooseFloatWithBitFlag(float f1, float f2, uint flags, uint n) { return 0u != (flags & n) ? f2 : f1; }
|
|
161152
|
+
// `;
|
|
161153
|
+
const chooseVec2With2BitFlags = `
|
|
161154
|
+
vec2 chooseVec2With2BitFlags(vec2 v1, vec2 v2, float flags, float n1, float n2) { return (nthBitSet(flags, n1) || nthBitSet(flags, n2)) ? v2 : v1; }
|
|
160731
161155
|
`;
|
|
160732
|
-
const
|
|
160733
|
-
vec2
|
|
160734
|
-
`;
|
|
160735
|
-
const chooseVec2WithBitFlag2 = `
|
|
160736
|
-
vec2 chooseVec2WithBitFlag(vec2 v1, vec2 v2, uint flags, uint n) { return 0u != (flags & n) ? v2 : v1; }
|
|
161156
|
+
const chooseVec2With2BitFlags2 = `
|
|
161157
|
+
vec2 chooseVec2With2BitFlags(vec2 v1, vec2 v2, uint flags, uint n1, uint n2) { return 0u != (flags & (n1 | n2)) ? v2 : v1; }
|
|
160737
161158
|
`;
|
|
160738
161159
|
const chooseVec3WithBitFlag = `
|
|
160739
161160
|
vec3 chooseVec3WithBitFlag(vec3 v1, vec3 v2, float flags, float n) { return nthBitSet(flags, n) ? v2 : v1; }
|
|
@@ -160742,41 +161163,34 @@ const chooseVec3WithBitFlag2 = `
|
|
|
160742
161163
|
vec3 chooseVec3WithBitFlag(vec3 v1, vec3 v2, uint flags, uint n) { return 0u != (flags & n) ? v2 : v1; }
|
|
160743
161164
|
`;
|
|
160744
161165
|
/** @internal */
|
|
160745
|
-
function
|
|
161166
|
+
function addChooseVec2WithBitFlagsFunction(shader) {
|
|
160746
161167
|
if (_System__WEBPACK_IMPORTED_MODULE_1__.System.instance.capabilities.isWebGL2) {
|
|
160747
161168
|
shader.addFunction(extractNthBit2);
|
|
160748
|
-
shader.addFunction(
|
|
160749
|
-
shader.addFunction(chooseVec2WithBitFlag2);
|
|
160750
|
-
shader.addFunction(chooseVec3WithBitFlag2);
|
|
161169
|
+
shader.addFunction(chooseVec2With2BitFlags2);
|
|
160751
161170
|
}
|
|
160752
161171
|
else {
|
|
160753
161172
|
shader.addFunction(nthBitSet);
|
|
160754
|
-
shader.addFunction(
|
|
160755
|
-
shader.addFunction(chooseVec2WithBitFlag);
|
|
160756
|
-
shader.addFunction(chooseVec3WithBitFlag);
|
|
161173
|
+
shader.addFunction(chooseVec2With2BitFlags);
|
|
160757
161174
|
}
|
|
160758
161175
|
}
|
|
160759
|
-
|
|
160760
|
-
|
|
160761
|
-
shader.addConstant("kShaderBit_NonUniformColor", 1 /* Int */, "1");
|
|
160762
|
-
shader.addConstant("kShaderBit_OITFlatAlphaWeight", 1 /* Int */, "2");
|
|
160763
|
-
shader.addConstant("kShaderBit_OITScaleOutput", 1 /* Int */, "3");
|
|
160764
|
-
shader.addConstant("kShaderBit_IgnoreNonLocatable", 1 /* Int */, "4");
|
|
160765
|
-
addChooseWithBitFlagFunctions(shader);
|
|
161176
|
+
/** @internal */
|
|
161177
|
+
function addChooseVec3WithBitFlagFunction(shader) {
|
|
160766
161178
|
if (_System__WEBPACK_IMPORTED_MODULE_1__.System.instance.capabilities.isWebGL2) {
|
|
160767
161179
|
shader.addFunction(extractNthBit2);
|
|
160768
|
-
shader.addFunction(chooseFloatWithBitFlag2);
|
|
160769
|
-
shader.addFunction(chooseVec2WithBitFlag2);
|
|
160770
161180
|
shader.addFunction(chooseVec3WithBitFlag2);
|
|
160771
161181
|
}
|
|
160772
161182
|
else {
|
|
160773
161183
|
shader.addFunction(nthBitSet);
|
|
160774
|
-
shader.addFunction(extractNthBit);
|
|
160775
|
-
shader.addFunction(chooseFloatWithBitFlag);
|
|
160776
|
-
shader.addFunction(chooseVec2WithBitFlag);
|
|
160777
161184
|
shader.addFunction(chooseVec3WithBitFlag);
|
|
160778
161185
|
}
|
|
160779
161186
|
}
|
|
161187
|
+
function addShaderFlagsConstants(shader) {
|
|
161188
|
+
shader.addConstant("kShaderBit_Monochrome", 1 /* Int */, "0");
|
|
161189
|
+
shader.addConstant("kShaderBit_NonUniformColor", 1 /* Int */, "1");
|
|
161190
|
+
shader.addConstant("kShaderBit_OITFlatAlphaWeight", 1 /* Int */, "2");
|
|
161191
|
+
shader.addConstant("kShaderBit_OITScaleOutput", 1 /* Int */, "3");
|
|
161192
|
+
shader.addConstant("kShaderBit_IgnoreNonLocatable", 1 /* Int */, "4");
|
|
161193
|
+
}
|
|
160780
161194
|
const shaderFlagArray = new Int32Array(5);
|
|
160781
161195
|
const kShaderBitMonochrome = 0;
|
|
160782
161196
|
const kShaderBitNonUniformColor = 1;
|
|
@@ -160823,8 +161237,8 @@ function setShaderFlags(uniform, params) {
|
|
|
160823
161237
|
}
|
|
160824
161238
|
/** @internal */
|
|
160825
161239
|
function addShaderFlags(builder) {
|
|
160826
|
-
|
|
160827
|
-
|
|
161240
|
+
addShaderFlagsConstants(builder.vert);
|
|
161241
|
+
addShaderFlagsConstants(builder.frag);
|
|
160828
161242
|
builder.addUniformArray("u_shaderFlags", 0 /* Boolean */, 5, (prog) => {
|
|
160829
161243
|
prog.addGraphicUniform("u_shaderFlags", (uniform, params) => setShaderFlags(uniform, params));
|
|
160830
161244
|
});
|
|
@@ -163070,8 +163484,6 @@ const applyLighting = `
|
|
|
163070
163484
|
|
|
163071
163485
|
// Extract surface properties
|
|
163072
163486
|
vec3 rgb = baseColor.rgb;
|
|
163073
|
-
vec3 normal = normalize(v_n.xyz);
|
|
163074
|
-
normal *= 2.0 * float(gl_FrontFacing) - 1.0;
|
|
163075
163487
|
vec3 toEye = kFrustumType_Perspective == u_frustum.z ? normalize(v_eyeSpace.xyz) : vec3(0.0, 0.0, -1.0);
|
|
163076
163488
|
|
|
163077
163489
|
// Extract material properties
|
|
@@ -163088,8 +163500,8 @@ const applyLighting = `
|
|
|
163088
163500
|
|
|
163089
163501
|
float directionalDiffuseIntensity = 0.0;
|
|
163090
163502
|
float directionalSpecularIntensity = 0.0;
|
|
163091
|
-
computeDirectionalLight(directionalDiffuseIntensity, directionalSpecularIntensity,
|
|
163092
|
-
computeDirectionalLight(directionalDiffuseIntensity, directionalSpecularIntensity,
|
|
163503
|
+
computeDirectionalLight(directionalDiffuseIntensity, directionalSpecularIntensity, g_normal, toEye, u_sunDir, sunIntensity, specularExponent);
|
|
163504
|
+
computeDirectionalLight(directionalDiffuseIntensity, directionalSpecularIntensity, g_normal ,toEye, portraitDir, portraitIntensity, specularExponent);
|
|
163093
163505
|
|
|
163094
163506
|
const float directionalFudge = 0.92; // leftover from old lighting implementation
|
|
163095
163507
|
vec3 diffuseAccum = directionalDiffuseIntensity * diffuseWeight * rgb * directionalFudge; // directional light is white.
|
|
@@ -163109,18 +163521,18 @@ const applyLighting = `
|
|
|
163109
163521
|
float hemiIntensity = u_lightSettings[11];
|
|
163110
163522
|
|
|
163111
163523
|
// diffuse
|
|
163112
|
-
float hemiDot = dot(
|
|
163524
|
+
float hemiDot = dot(g_normal, u_upVector);
|
|
163113
163525
|
float hemiDiffuseWeight = 0.5 * hemiDot + 0.5;
|
|
163114
163526
|
vec3 hemiColor = mix(ground, sky, hemiDiffuseWeight);
|
|
163115
163527
|
diffuseAccum += hemiIntensity * hemiColor * rgb;
|
|
163116
163528
|
|
|
163117
163529
|
// sky specular
|
|
163118
|
-
vec3 reflectSky = normalize(reflect(u_upVector,
|
|
163530
|
+
vec3 reflectSky = normalize(reflect(u_upVector, g_normal));
|
|
163119
163531
|
float skyDot = max(dot(reflectSky, toEye), 0.0001);
|
|
163120
163532
|
float hemiSpecWeight = hemiIntensity * pow(skyDot, specularExponent);
|
|
163121
163533
|
|
|
163122
163534
|
// ground specular
|
|
163123
|
-
vec3 reflectGround = normalize(reflect(-u_upVector,
|
|
163535
|
+
vec3 reflectGround = normalize(reflect(-u_upVector, g_normal));
|
|
163124
163536
|
float groundDot = max(dot(reflectGround, toEye), 0.0001);
|
|
163125
163537
|
hemiSpecWeight += hemiIntensity * pow(groundDot, specularExponent);
|
|
163126
163538
|
|
|
@@ -163131,7 +163543,7 @@ const applyLighting = `
|
|
|
163131
163543
|
// Apply fresnel reflection.
|
|
163132
163544
|
float fresnelIntensity = u_lightSettings[15];
|
|
163133
163545
|
if (0.0 != fresnelIntensity) {
|
|
163134
|
-
float fresnel = -dot(toEye,
|
|
163546
|
+
float fresnel = -dot(toEye, g_normal);
|
|
163135
163547
|
if (fresnelIntensity < 0.0) {
|
|
163136
163548
|
fresnelIntensity = abs(fresnelIntensity);
|
|
163137
163549
|
fresnel = 1.0 - fresnel;
|
|
@@ -164001,7 +164413,7 @@ function createPointCloudBuilder(classified, featureMode, thematic) {
|
|
|
164001
164413
|
}
|
|
164002
164414
|
if (1 /* Yes */ === thematic) {
|
|
164003
164415
|
(0,_Thematic__WEBPACK_IMPORTED_MODULE_7__.addThematicDisplay)(builder, true);
|
|
164004
|
-
(0,_Surface__WEBPACK_IMPORTED_MODULE_8__.addTexture)(builder, 0 /* No */, 1 /* Yes */, true);
|
|
164416
|
+
(0,_Surface__WEBPACK_IMPORTED_MODULE_8__.addTexture)(builder, 0 /* No */, 1 /* Yes */, true, false);
|
|
164005
164417
|
}
|
|
164006
164418
|
return builder;
|
|
164007
164419
|
}
|
|
@@ -164468,7 +164880,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
164468
164880
|
/* harmony export */ "addColorOverrideMix": () => (/* binding */ addColorOverrideMix),
|
|
164469
164881
|
/* harmony export */ "createClassifierRealityMeshHiliter": () => (/* binding */ createClassifierRealityMeshHiliter),
|
|
164470
164882
|
/* harmony export */ "createRealityMeshBuilder": () => (/* binding */ createRealityMeshBuilder),
|
|
164471
|
-
/* harmony export */ "createRealityMeshHiliter": () => (/* binding */ createRealityMeshHiliter)
|
|
164883
|
+
/* harmony export */ "createRealityMeshHiliter": () => (/* binding */ createRealityMeshHiliter),
|
|
164884
|
+
/* harmony export */ "finalizeNormal": () => (/* binding */ finalizeNormal)
|
|
164472
164885
|
/* harmony export */ });
|
|
164473
164886
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
164474
164887
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
@@ -164521,6 +164934,9 @@ const computeNormal = `
|
|
|
164521
164934
|
g_hillshadeIndex = normal.z; // save off world Z for thematic hill shade mode index
|
|
164522
164935
|
return normalize(u_worldToViewN * normal);
|
|
164523
164936
|
`;
|
|
164937
|
+
const finalizeNormal = `
|
|
164938
|
+
return normalize(v_n) * (2.0 * float(gl_FrontFacing) - 1.0);
|
|
164939
|
+
`;
|
|
164524
164940
|
const testInside = `
|
|
164525
164941
|
bool testInside(float x0, float y0, float x1, float y1, float x, float y) {
|
|
164526
164942
|
vec2 perp = vec2(y0 - y1, x1 - x0), test = vec2(x - x0, y - y0);
|
|
@@ -164695,6 +165111,8 @@ function addThematicToRealityMesh(builder, gradientTextureUnit) {
|
|
|
164695
165111
|
builder.vert.addFunction(_Surface__WEBPACK_IMPORTED_MODULE_15__.octDecodeNormal);
|
|
164696
165112
|
builder.vert.addGlobal("g_hillshadeIndex", 2 /* Float */);
|
|
164697
165113
|
builder.addFunctionComputedVarying("v_n", 4 /* Vec3 */, "computeLightingNormal", computeNormal);
|
|
165114
|
+
builder.frag.addGlobal("g_normal", 4 /* Vec3 */);
|
|
165115
|
+
builder.frag.set(21 /* FinalizeNormal */, finalizeNormal);
|
|
164698
165116
|
(0,_Thematic__WEBPACK_IMPORTED_MODULE_16__.addThematicDisplay)(builder, false, true);
|
|
164699
165117
|
builder.addInlineComputedVarying("v_thematicIndex", 2 /* Float */, (0,_Thematic__WEBPACK_IMPORTED_MODULE_16__.getComputeThematicIndex)(builder.vert.usesInstancedGeometry, false, false));
|
|
164700
165118
|
builder.vert.addUniform("u_worldToViewN", 6 /* Mat3 */, (prog) => {
|
|
@@ -165333,10 +165751,7 @@ float shadowMapEVSM(vec3 shadowPos) {
|
|
|
165333
165751
|
const applySolarShadowMap = `
|
|
165334
165752
|
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)
|
|
165335
165753
|
return baseColor;
|
|
165336
|
-
|
|
165337
|
-
vec3 normal = normalize(v_n);
|
|
165338
|
-
normal = (dot(normal, toEye) > 0.0) ? -normal : normal;
|
|
165339
|
-
float visible = (u_surfaceFlags[kSurfaceBitIndex_HasNormals] && (dot(normal, u_sunDir) < 0.0)) ? 0.0 : shadowMapEVSM(v_shadowPos);
|
|
165754
|
+
float visible = (u_surfaceFlags[kSurfaceBitIndex_HasNormals] && (dot(g_normal, u_sunDir) < 0.0)) ? 0.0 : shadowMapEVSM(v_shadowPos);
|
|
165340
165755
|
return vec4(baseColor.rgb * mix(u_shadowParams.rgb, vec3(1.0), visible), baseColor.a);
|
|
165341
165756
|
`;
|
|
165342
165757
|
const applySolarShadowMapTerrain = `
|
|
@@ -165570,7 +165985,7 @@ function addMaterial(builder, instanced) {
|
|
|
165570
165985
|
(0,_Decode__WEBPACK_IMPORTED_MODULE_10__.addUnpackAndNormalize2Bytes)(frag);
|
|
165571
165986
|
frag.addFunction(decodeFragMaterialParams);
|
|
165572
165987
|
frag.addInitializer("decodeMaterialParams(v_materialParams);");
|
|
165573
|
-
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.
|
|
165988
|
+
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addChooseVec3WithBitFlagFunction)(frag);
|
|
165574
165989
|
frag.set(2 /* ApplyMaterialOverrides */, applyTextureWeight);
|
|
165575
165990
|
const vert = builder.vert;
|
|
165576
165991
|
vert.addGlobal("mat_rgb", 5 /* Vec4 */); // a = 0 if not overridden, else 1
|
|
@@ -165659,7 +166074,7 @@ function createCommon(isInstanced, animated, shadowable, isThematic, isHiliter,
|
|
|
165659
166074
|
function createSurfaceHiliter(instanced, classified, posType) {
|
|
165660
166075
|
const builder = createCommon(instanced, 0 /* No */, 0 /* No */, 0 /* No */, true, posType);
|
|
165661
166076
|
addSurfaceFlags(builder, true, false);
|
|
165662
|
-
addTexture(builder, 0 /* No */, 0 /* No
|
|
166077
|
+
addTexture(builder, 0 /* No */, 0 /* No */, false, true);
|
|
165663
166078
|
if (classified) {
|
|
165664
166079
|
(0,_PlanarClassification__WEBPACK_IMPORTED_MODULE_15__.addHilitePlanarClassifier)(builder);
|
|
165665
166080
|
builder.vert.addGlobal("feature_ignore_material", 0 /* Boolean */, "false");
|
|
@@ -165693,12 +166108,14 @@ function addSurfaceFlagsLookup(builder) {
|
|
|
165693
166108
|
builder.addBitFlagConstant("kSurfaceBit_HasTexture", 0 /* HasTexture */);
|
|
165694
166109
|
builder.addBitFlagConstant("kSurfaceBit_IgnoreMaterial", 3 /* IgnoreMaterial */);
|
|
165695
166110
|
builder.addBitFlagConstant("kSurfaceBit_OverrideRgb", 7 /* OverrideRgb */);
|
|
166111
|
+
builder.addBitFlagConstant("kSurfaceBit_HasNormalMap", 8 /* HasNormalMap */);
|
|
165696
166112
|
// Only need masks for flags modified in vertex shader
|
|
165697
166113
|
const suffix = _System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2 ? "u" : ".0";
|
|
165698
166114
|
const type = _System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2 ? 10 /* Uint */ : 2 /* Float */;
|
|
165699
166115
|
builder.addConstant("kSurfaceMask_HasTexture", type, 1 /* HasTexture */.toString() + suffix);
|
|
165700
166116
|
builder.addConstant("kSurfaceMask_IgnoreMaterial", type, 8 /* IgnoreMaterial */.toString() + suffix);
|
|
165701
166117
|
builder.addConstant("kSurfaceMask_OverrideRgb", type, 128 /* OverrideRgb */.toString() + suffix);
|
|
166118
|
+
builder.addConstant("kSurfaceMask_HasNormalMap", type, 256 /* HasNormalMap */.toString() + suffix);
|
|
165702
166119
|
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addExtractNthBit)(builder);
|
|
165703
166120
|
if (_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2) {
|
|
165704
166121
|
builder.addFunction(isSurfaceBitSet2);
|
|
@@ -165713,19 +166130,20 @@ const initSurfaceFlags = `
|
|
|
165713
166130
|
surfaceFlags = u_surfaceFlags[kSurfaceBitIndex_HasTexture] ? kSurfaceMask_HasTexture : 0.0;
|
|
165714
166131
|
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_IgnoreMaterial] ? kSurfaceMask_IgnoreMaterial : 0.0;
|
|
165715
166132
|
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_OverrideRgb] ? kSurfaceMask_OverrideRgb : 0.0;
|
|
166133
|
+
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_HasNormalMap] ? kSurfaceMask_HasNormalMap : 0.0;
|
|
165716
166134
|
`;
|
|
165717
166135
|
const initSurfaceFlags2 = `
|
|
165718
166136
|
surfaceFlags = u_surfaceFlags[kSurfaceBitIndex_HasTexture] ? kSurfaceMask_HasTexture : 0u;
|
|
165719
166137
|
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_IgnoreMaterial] ? kSurfaceMask_IgnoreMaterial : 0u;
|
|
165720
166138
|
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_OverrideRgb] ? kSurfaceMask_OverrideRgb : 0u;
|
|
166139
|
+
surfaceFlags += u_surfaceFlags[kSurfaceBitIndex_HasNormalMap] ? kSurfaceMask_HasNormalMap : 0u;
|
|
165721
166140
|
`;
|
|
165722
166141
|
const computeBaseSurfaceFlags = `
|
|
165723
|
-
bool hasTexture = u_surfaceFlags[kSurfaceBitIndex_HasTexture];
|
|
165724
166142
|
if (feature_ignore_material) {
|
|
165725
|
-
if (
|
|
165726
|
-
hasTexture = false;
|
|
166143
|
+
if (u_surfaceFlags[kSurfaceBitIndex_HasTexture])
|
|
165727
166144
|
surfaceFlags -= kSurfaceMask_HasTexture;
|
|
165728
|
-
|
|
166145
|
+
if (u_surfaceFlags[kSurfaceBitIndex_HasNormalMap])
|
|
166146
|
+
surfaceFlags -= kSurfaceMask_HasNormalMap;
|
|
165729
166147
|
|
|
165730
166148
|
surfaceFlags += kSurfaceMask_IgnoreMaterial;
|
|
165731
166149
|
}
|
|
@@ -165763,6 +166181,39 @@ function getComputeNormal(quantized) {
|
|
|
165763
166181
|
return normalize(MAT_NORM * octDecodeNormal(normal));
|
|
165764
166182
|
`;
|
|
165765
166183
|
}
|
|
166184
|
+
const finalizeNormalPrelude = `
|
|
166185
|
+
vec3 normal = normalize(v_n) * (2.0 * float(gl_FrontFacing) - 1.0);
|
|
166186
|
+
`;
|
|
166187
|
+
const finalizeNormalNormalMap = `
|
|
166188
|
+
if (isSurfaceBitSet(kSurfaceBit_HasNormalMap)) {
|
|
166189
|
+
// Modify the normal with the normal map texture.
|
|
166190
|
+
// First calculate the tangent.
|
|
166191
|
+
vec3 dp1 = dFdx(v_eyeSpace);
|
|
166192
|
+
vec3 dp2 = dFdy(v_eyeSpace);
|
|
166193
|
+
vec2 duv1 = dFdx(v_texCoord);
|
|
166194
|
+
vec2 duv2 = dFdy(v_texCoord);
|
|
166195
|
+
vec3 tangent = normalize(duv2.y * dp1 - duv1.y * dp2);
|
|
166196
|
+
tangent = normalize (tangent - normal * dot (normal, tangent)); // re-orthogonalize with normal
|
|
166197
|
+
bool flip = (duv1.x * duv2.y - duv2.x * duv1.y) < 0.0;
|
|
166198
|
+
if (flip)
|
|
166199
|
+
tangent = -tangent;
|
|
166200
|
+
vec3 biTangent = cross (normal, tangent);
|
|
166201
|
+
if (flip)
|
|
166202
|
+
biTangent = -biTangent;
|
|
166203
|
+
vec3 normM = TEXTURE(s_normalMap, v_texCoord).xyz;
|
|
166204
|
+
if (length (normM) > 0.0001) { // check for empty normal texture
|
|
166205
|
+
normM = (normM - 0.5) * 2.0;
|
|
166206
|
+
normM = normalize (normM);
|
|
166207
|
+
normM.x *= abs(u_normalMapScale);
|
|
166208
|
+
normM.y *= u_normalMapScale;
|
|
166209
|
+
normM = normalize (normM);
|
|
166210
|
+
normal = normalize (normM.x * tangent + normM.y * biTangent + normM.z * normal);
|
|
166211
|
+
}
|
|
166212
|
+
}
|
|
166213
|
+
`;
|
|
166214
|
+
const finalizeNormalPostlude = `
|
|
166215
|
+
return normal;
|
|
166216
|
+
`;
|
|
165766
166217
|
function getComputeAnimatedNormal(quantized) {
|
|
165767
166218
|
return `
|
|
165768
166219
|
if (u_animNormalParams.x >= 0.0)
|
|
@@ -165778,7 +166229,7 @@ function getComputeTexCoord(quantized) {
|
|
|
165778
166229
|
return `
|
|
165779
166230
|
vec4 rgba = ${vertData};
|
|
165780
166231
|
vec2 qcoords = vec2(decodeUInt16(rgba.xy), decodeUInt16(rgba.zw));
|
|
165781
|
-
return
|
|
166232
|
+
return chooseVec2With2BitFlags(vec2(0.0), unquantize2d(qcoords, u_qTexCoordParams), surfaceFlags, kSurfaceBit_HasTexture, kSurfaceBit_HasNormalMap);
|
|
165782
166233
|
`;
|
|
165783
166234
|
}
|
|
165784
166235
|
function getComputeAnimatedTexCoord(quantized) {
|
|
@@ -165840,9 +166291,29 @@ function addNormal(builder, instanced, animated) {
|
|
|
165840
166291
|
(0,_Vertex__WEBPACK_IMPORTED_MODULE_20__.addNormalMatrix)(builder.vert, instanced);
|
|
165841
166292
|
const quantized = "quantized" === builder.vert.positionType;
|
|
165842
166293
|
builder.vert.addFunction(octDecodeNormal);
|
|
165843
|
-
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addChooseWithBitFlagFunctions)(builder.vert);
|
|
165844
166294
|
builder.vert.addFunction("vec3 computeSurfaceNormal()", getComputeNormal(quantized));
|
|
165845
166295
|
builder.addFunctionComputedVarying("v_n", 4 /* Vec3 */, "computeLightingNormal", animated ? getComputeAnimatedNormal(quantized) : "return computeSurfaceNormal();");
|
|
166296
|
+
builder.frag.addGlobal("g_normal", 4 /* Vec3 */);
|
|
166297
|
+
let finalizeNormal = finalizeNormalPrelude;
|
|
166298
|
+
if (_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2) {
|
|
166299
|
+
finalizeNormal += finalizeNormalNormalMap;
|
|
166300
|
+
builder.frag.addUniform("u_normalMapScale", 2 /* Float */, (prog) => {
|
|
166301
|
+
prog.addGraphicUniform("u_normalMapScale", (uniform, params) => {
|
|
166302
|
+
var _a;
|
|
166303
|
+
let normalMapScale = 1.0;
|
|
166304
|
+
if (undefined !== params.geometry.materialInfo && !params.geometry.materialInfo.isAtlas &&
|
|
166305
|
+
undefined !== params.geometry.materialInfo.textureMapping &&
|
|
166306
|
+
undefined !== params.geometry.materialInfo.textureMapping.normalMapParams) {
|
|
166307
|
+
normalMapScale = (_a = params.geometry.materialInfo.textureMapping.normalMapParams.scale) !== null && _a !== void 0 ? _a : 1.0;
|
|
166308
|
+
if (!params.geometry.materialInfo.textureMapping.normalMapParams.greenDown)
|
|
166309
|
+
normalMapScale = -normalMapScale;
|
|
166310
|
+
}
|
|
166311
|
+
uniform.setUniform1f(normalMapScale);
|
|
166312
|
+
});
|
|
166313
|
+
});
|
|
166314
|
+
}
|
|
166315
|
+
finalizeNormal += finalizeNormalPostlude;
|
|
166316
|
+
builder.frag.set(21 /* FinalizeNormal */, finalizeNormal);
|
|
165846
166317
|
// Set to true to colorize surfaces based on normals (in world space).
|
|
165847
166318
|
// You must also set checkMaxVarying to false in ProgramBuilder.buildProgram to avoid assertions, if using a non-optimized build.
|
|
165848
166319
|
const debugNormals = false;
|
|
@@ -165852,19 +166323,21 @@ function addNormal(builder, instanced, animated) {
|
|
|
165852
166323
|
}
|
|
165853
166324
|
}
|
|
165854
166325
|
/** @internal */
|
|
165855
|
-
function addTexture(builder, animated, isThematic, isPointCloud
|
|
166326
|
+
function addTexture(builder, animated, isThematic, isPointCloud, isHilite) {
|
|
165856
166327
|
if (isThematic) {
|
|
165857
166328
|
builder.addInlineComputedVarying("v_thematicIndex", 2 /* Float */, (0,_Thematic__WEBPACK_IMPORTED_MODULE_18__.getComputeThematicIndex)(builder.vert.usesInstancedGeometry, isPointCloud, true));
|
|
165858
166329
|
}
|
|
165859
|
-
|
|
166330
|
+
// Point clouds do not need to compute texture coordinates since the only texture they use is the thematic gradient.
|
|
166331
|
+
// Surfaces now need texture coordinates even for thematic in case they have a normal map (except for webgl1 which does not have normal maps).
|
|
166332
|
+
if (!isPointCloud && (_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2 || !isThematic)) {
|
|
165860
166333
|
builder.vert.addFunction(_Decode__WEBPACK_IMPORTED_MODULE_10__.unquantize2d);
|
|
165861
|
-
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.
|
|
166334
|
+
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addChooseVec2WithBitFlagsFunction)(builder.vert);
|
|
165862
166335
|
const quantized = "quantized" === builder.vert.positionType;
|
|
165863
166336
|
builder.addFunctionComputedVarying("v_texCoord", 3 /* Vec2 */, "computeTexCoord", animated ? getComputeAnimatedTexCoord(quantized) : getComputeTexCoord(quantized));
|
|
165864
166337
|
builder.vert.addUniform("u_qTexCoordParams", 5 /* Vec4 */, (prog) => {
|
|
165865
166338
|
prog.addGraphicUniform("u_qTexCoordParams", (uniform, params) => {
|
|
165866
166339
|
const surfGeom = params.geometry.asSurface;
|
|
165867
|
-
if (surfGeom.useTexture(params.programParams)) {
|
|
166340
|
+
if (surfGeom.useTexture(params.programParams) || (surfGeom.useNormalMap(params.programParams) && !isPointCloud)) {
|
|
165868
166341
|
const uvQParams = surfGeom.lut.uvQParams;
|
|
165869
166342
|
if (undefined !== uvQParams) {
|
|
165870
166343
|
uniform.setUniform4fv(uvQParams);
|
|
@@ -165890,6 +166363,21 @@ function addTexture(builder, animated, isThematic, isPointCloud = false) {
|
|
|
165890
166363
|
}
|
|
165891
166364
|
});
|
|
165892
166365
|
});
|
|
166366
|
+
if (!isHilite && !isPointCloud && _System__WEBPACK_IMPORTED_MODULE_5__.System.instance.capabilities.isWebGL2) {
|
|
166367
|
+
builder.frag.addUniform("s_normalMap", 8 /* Sampler2D */, (prog) => {
|
|
166368
|
+
prog.addGraphicUniform("s_normalMap", (uniform, params) => {
|
|
166369
|
+
const surfGeom = params.geometry.asSurface;
|
|
166370
|
+
if (surfGeom.useNormalMap(params.programParams)) {
|
|
166371
|
+
const normalMap = surfGeom.normalMap;
|
|
166372
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== normalMap);
|
|
166373
|
+
normalMap.texture.bindSampler(uniform, _RenderFlags__WEBPACK_IMPORTED_MODULE_3__.TextureUnit.NormalMap);
|
|
166374
|
+
}
|
|
166375
|
+
else {
|
|
166376
|
+
_System__WEBPACK_IMPORTED_MODULE_5__.System.instance.ensureSamplerBound(uniform, _RenderFlags__WEBPACK_IMPORTED_MODULE_3__.TextureUnit.NormalMap);
|
|
166377
|
+
}
|
|
166378
|
+
});
|
|
166379
|
+
});
|
|
166380
|
+
}
|
|
165893
166381
|
}
|
|
165894
166382
|
const discardClassifiedByAlpha = `
|
|
165895
166383
|
if (u_no_classifier_discard)
|
|
@@ -165943,14 +166431,13 @@ function createSurfaceBuilder(flags) {
|
|
|
165943
166431
|
(0,_FeatureSymbology__WEBPACK_IMPORTED_MODULE_11__.addSurfaceDiscard)(builder, flags);
|
|
165944
166432
|
addNormal(builder, flags.isInstanced, flags.isAnimated);
|
|
165945
166433
|
// 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).
|
|
165946
|
-
(0,_Common__WEBPACK_IMPORTED_MODULE_9__.addChooseWithBitFlagFunctions)(builder.frag);
|
|
165947
166434
|
builder.frag.set(3 /* FinalizeBaseColor */, applyBackgroundColor);
|
|
165948
166435
|
builder.frag.addUniform("u_bgColor", 4 /* Vec3 */, (prog) => {
|
|
165949
166436
|
prog.addProgramUniform("u_bgColor", (uniform, params) => {
|
|
165950
166437
|
params.target.uniforms.style.bindBackgroundRgb(uniform);
|
|
165951
166438
|
});
|
|
165952
166439
|
});
|
|
165953
|
-
addTexture(builder, flags.isAnimated, flags.isThematic);
|
|
166440
|
+
addTexture(builder, flags.isAnimated, flags.isThematic, false, false);
|
|
165954
166441
|
builder.frag.addUniform("u_applyGlyphTex", 0 /* Boolean */, (prog) => {
|
|
165955
166442
|
prog.addGraphicUniform("u_applyGlyphTex", (uniform, params) => {
|
|
165956
166443
|
const surfGeom = params.geometry.asSurface;
|
|
@@ -166095,7 +166582,7 @@ vec3 getIsoLineColor(float ndx, float stepCount) {
|
|
|
166095
166582
|
const fwidthWhenAvailable = `\nfloat _universal_fwidth(float coord) { return fwidth(coord); }\n`;
|
|
166096
166583
|
const fwidthWhenNotAvailable = `\nfloat _universal_fwidth(float coord) { return coord; }\n`; // ###TODO: can we do something reasonable in this case?
|
|
166097
166584
|
const slopeAndHillShadeShader = ` else if (kThematicDisplayMode_Slope == u_thematicDisplayMode) {
|
|
166098
|
-
float d = dot(
|
|
166585
|
+
float d = dot(g_normal, u_thematicAxis);
|
|
166099
166586
|
if (d < 0.0)
|
|
166100
166587
|
d = -d;
|
|
166101
166588
|
|
|
@@ -166113,11 +166600,7 @@ const slopeAndHillShadeShader = ` else if (kThematicDisplayMode_Slope == u_thema
|
|
|
166113
166600
|
|
|
166114
166601
|
ndx = d;
|
|
166115
166602
|
} else if (kThematicDisplayMode_HillShade == u_thematicDisplayMode) {
|
|
166116
|
-
float d = dot(
|
|
166117
|
-
|
|
166118
|
-
// In the case of HillShade, v_thematicIndex contains the normal's z in world space.
|
|
166119
|
-
if (!gl_FrontFacing && v_thematicIndex < 0.0)
|
|
166120
|
-
d = -d;
|
|
166603
|
+
float d = dot(g_normal, u_thematicSunDirection);
|
|
166121
166604
|
|
|
166122
166605
|
ndx = max(0.0, d);
|
|
166123
166606
|
}`;
|
|
@@ -169085,23 +169568,23 @@ class GltfReader {
|
|
|
169085
169568
|
return undefined !== view ? view.toBufferData(type) : undefined;
|
|
169086
169569
|
}
|
|
169087
169570
|
readFeatureIndices(_json) { return undefined; }
|
|
169571
|
+
extractId(value) {
|
|
169572
|
+
switch (typeof value) {
|
|
169573
|
+
case "string":
|
|
169574
|
+
return value;
|
|
169575
|
+
case "number":
|
|
169576
|
+
return value.toString();
|
|
169577
|
+
default:
|
|
169578
|
+
return undefined;
|
|
169579
|
+
}
|
|
169580
|
+
}
|
|
169088
169581
|
extractTextureId(material) {
|
|
169089
169582
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
169090
169583
|
if (typeof material !== "object")
|
|
169091
169584
|
return undefined;
|
|
169092
|
-
const extractId = (value) => {
|
|
169093
|
-
switch (typeof value) {
|
|
169094
|
-
case "string":
|
|
169095
|
-
return value;
|
|
169096
|
-
case "number":
|
|
169097
|
-
return value.toString();
|
|
169098
|
-
default:
|
|
169099
|
-
return undefined;
|
|
169100
|
-
}
|
|
169101
|
-
};
|
|
169102
169585
|
// Bimium's shader value...almost certainly obsolete at this point.
|
|
169103
169586
|
if (isGltf1Material(material))
|
|
169104
|
-
return (_a = material.diffuse) !== null && _a !== void 0 ? _a : extractId((_b = material.values) === null || _b === void 0 ? void 0 : _b.tex);
|
|
169587
|
+
return (_a = material.diffuse) !== null && _a !== void 0 ? _a : this.extractId((_b = material.values) === null || _b === void 0 ? void 0 : _b.tex);
|
|
169105
169588
|
// KHR_techniques_webgl extension
|
|
169106
169589
|
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;
|
|
169107
169590
|
const ext = Array.isArray(techniques) ? (_e = material.extensions) === null || _e === void 0 ? void 0 : _e.KHR_techniques_webgl : undefined;
|
|
@@ -169111,12 +169594,20 @@ class GltfReader {
|
|
|
169111
169594
|
for (const uniformName of Object.keys(uniforms)) {
|
|
169112
169595
|
const uniform = uniforms[uniformName];
|
|
169113
169596
|
if (typeof uniform === "object" && uniform.type === GltfDataType.Sampler2d)
|
|
169114
|
-
return extractId((_f = ext.values[uniformName]) === null || _f === void 0 ? void 0 : _f.index);
|
|
169597
|
+
return this.extractId((_f = ext.values[uniformName]) === null || _f === void 0 ? void 0 : _f.index);
|
|
169115
169598
|
}
|
|
169116
169599
|
}
|
|
169117
169600
|
}
|
|
169118
|
-
const id = extractId((_h = (_g = material.pbrMetallicRoughness) === null || _g === void 0 ? void 0 : _g.baseColorTexture) === null || _h === void 0 ? void 0 : _h.index);
|
|
169119
|
-
return id !== null && id !== void 0 ? id : extractId((_j = material.emissiveTexture) === null || _j === void 0 ? void 0 : _j.index);
|
|
169601
|
+
const id = this.extractId((_h = (_g = material.pbrMetallicRoughness) === null || _g === void 0 ? void 0 : _g.baseColorTexture) === null || _h === void 0 ? void 0 : _h.index);
|
|
169602
|
+
return id !== null && id !== void 0 ? id : this.extractId((_j = material.emissiveTexture) === null || _j === void 0 ? void 0 : _j.index);
|
|
169603
|
+
}
|
|
169604
|
+
extractNormalMapId(material) {
|
|
169605
|
+
var _a;
|
|
169606
|
+
if (typeof material !== "object")
|
|
169607
|
+
return undefined;
|
|
169608
|
+
if (isGltf1Material(material))
|
|
169609
|
+
return undefined;
|
|
169610
|
+
return this.extractId((_a = material.normalTexture) === null || _a === void 0 ? void 0 : _a.index);
|
|
169120
169611
|
}
|
|
169121
169612
|
isMaterialTransparent(material) {
|
|
169122
169613
|
var _a, _b;
|
|
@@ -169137,9 +169628,15 @@ class GltfReader {
|
|
|
169137
169628
|
createDisplayParams(material, hasBakedLighting) {
|
|
169138
169629
|
const isTransparent = this.isMaterialTransparent(material);
|
|
169139
169630
|
const textureId = this.extractTextureId(material);
|
|
169140
|
-
const
|
|
169631
|
+
const normalMapId = this.extractNormalMapId(material);
|
|
169632
|
+
const textureMapping = (undefined !== textureId || undefined !== normalMapId) ? this.findTextureMapping(textureId, isTransparent, normalMapId) : undefined;
|
|
169141
169633
|
const color = colorFromMaterial(material, isTransparent);
|
|
169142
|
-
|
|
169634
|
+
let renderMaterial;
|
|
169635
|
+
if (undefined !== textureMapping && undefined !== textureMapping.normalMapParams) {
|
|
169636
|
+
const args = { diffuse: { color }, specular: { color: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef.white }, textureMapping };
|
|
169637
|
+
renderMaterial = _IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.renderSystem.createRenderMaterial(args);
|
|
169638
|
+
}
|
|
169639
|
+
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);
|
|
169143
169640
|
}
|
|
169144
169641
|
readMeshPrimitives(node, featureTable, thisTransform, thisBias) {
|
|
169145
169642
|
const meshes = [];
|
|
@@ -169586,7 +170083,7 @@ class GltfReader {
|
|
|
169586
170083
|
if (dracoMeshes.length === 0)
|
|
169587
170084
|
return;
|
|
169588
170085
|
try {
|
|
169589
|
-
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-
|
|
170086
|
+
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;
|
|
169590
170087
|
await Promise.all(dracoMeshes.map(async (x) => this.decodeDracoMesh(x, dracoLoader)));
|
|
169591
170088
|
}
|
|
169592
170089
|
catch (err) {
|
|
@@ -169716,11 +170213,38 @@ class GltfReader {
|
|
|
169716
170213
|
});
|
|
169717
170214
|
return renderTexture !== null && renderTexture !== void 0 ? renderTexture : false;
|
|
169718
170215
|
}
|
|
169719
|
-
findTextureMapping(id, isTransparent) {
|
|
169720
|
-
|
|
169721
|
-
|
|
169722
|
-
|
|
169723
|
-
|
|
170216
|
+
findTextureMapping(id, isTransparent, normalMapId) {
|
|
170217
|
+
if (undefined === id && undefined === normalMapId)
|
|
170218
|
+
return undefined;
|
|
170219
|
+
let texture;
|
|
170220
|
+
if (undefined !== id) {
|
|
170221
|
+
texture = this._resolvedTextures.get({ id, isTransparent });
|
|
170222
|
+
if (undefined === texture)
|
|
170223
|
+
this._resolvedTextures.set({ id, isTransparent }, texture = this.resolveTexture(id, isTransparent));
|
|
170224
|
+
}
|
|
170225
|
+
let normalMap;
|
|
170226
|
+
if (undefined !== normalMapId) {
|
|
170227
|
+
normalMap = this._resolvedTextures.get({ id: normalMapId, isTransparent: false });
|
|
170228
|
+
if (undefined === normalMap)
|
|
170229
|
+
this._resolvedTextures.set({ id: normalMapId, isTransparent: false }, normalMap = this.resolveTexture(normalMapId, false));
|
|
170230
|
+
}
|
|
170231
|
+
let nMap;
|
|
170232
|
+
if (normalMap) {
|
|
170233
|
+
if (texture) {
|
|
170234
|
+
nMap = {
|
|
170235
|
+
normalMap,
|
|
170236
|
+
};
|
|
170237
|
+
}
|
|
170238
|
+
else {
|
|
170239
|
+
texture = normalMap;
|
|
170240
|
+
nMap = {};
|
|
170241
|
+
}
|
|
170242
|
+
}
|
|
170243
|
+
if (!texture)
|
|
170244
|
+
return undefined;
|
|
170245
|
+
const textureMapping = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapping(texture, new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapping.Params());
|
|
170246
|
+
textureMapping.normalMapParams = nMap;
|
|
170247
|
+
return textureMapping;
|
|
169724
170248
|
}
|
|
169725
170249
|
}
|
|
169726
170250
|
/** Produce a [[RenderGraphic]] from a [glTF](https://www.khronos.org/gltf/) asset suitable for use in [view decorations]($docs/learning/frontend/ViewDecorations).
|
|
@@ -171092,6 +171616,7 @@ class ImdlReader {
|
|
|
171092
171616
|
mapMode: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asInt(paramsJson.mode),
|
|
171093
171617
|
worldMapping: _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.JsonUtils.asBool(paramsJson.worldMapping),
|
|
171094
171618
|
};
|
|
171619
|
+
// TODO: Need to extract normal map properties from json once they're sent by the backend.
|
|
171095
171620
|
return new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapping(texture, new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapping.Params(paramProps));
|
|
171096
171621
|
}
|
|
171097
171622
|
async loadNamedTextures() {
|
|
@@ -172731,7 +173256,7 @@ function readPnts(stream, dataOffset, pnts) {
|
|
|
172731
173256
|
async function decodeDracoPointCloud(buf) {
|
|
172732
173257
|
var _a, _b, _c, _d, _e, _f;
|
|
172733
173258
|
try {
|
|
172734
|
-
const dracoLoader = (await Promise.all(/*! import() */[__webpack_require__.e("vendors-
|
|
173259
|
+
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;
|
|
172735
173260
|
const mesh = await dracoLoader.parse(buf, {});
|
|
172736
173261
|
if (mesh.topology !== "point-list")
|
|
172737
173262
|
return undefined;
|
|
@@ -300427,7 +300952,7 @@ exports.IModelSession = void 0;
|
|
|
300427
300952
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
300428
300953
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
300429
300954
|
*--------------------------------------------------------------------------------------------*/
|
|
300430
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
300955
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
300431
300956
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
300432
300957
|
const imodels_client_management_1 = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.2.1/node_modules/@itwin/imodels-client-management/lib/esm/index.js");
|
|
300433
300958
|
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");
|
|
@@ -300516,7 +301041,7 @@ exports.IModelSession = IModelSession;
|
|
|
300516
301041
|
*--------------------------------------------------------------------------------------------*/
|
|
300517
301042
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
300518
301043
|
exports.TestContext = void 0;
|
|
300519
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
301044
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
300520
301045
|
const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
300521
301046
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
300522
301047
|
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");
|
|
@@ -305579,7 +306104,7 @@ var WidgetState;
|
|
|
305579
306104
|
|
|
305580
306105
|
/***/ }),
|
|
305581
306106
|
|
|
305582
|
-
/***/ "?
|
|
306107
|
+
/***/ "?1120":
|
|
305583
306108
|
/*!**********************!*\
|
|
305584
306109
|
!*** util (ignored) ***!
|
|
305585
306110
|
\**********************/
|
|
@@ -306930,9 +307455,9 @@ flatbuffers.ByteBuffer.prototype.createLong = function(low, high) {
|
|
|
306930
307455
|
|
|
306931
307456
|
/***/ }),
|
|
306932
307457
|
|
|
306933
|
-
/***/ "../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
307458
|
+
/***/ "../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs":
|
|
306934
307459
|
/*!**********************************************************************************************!*\
|
|
306935
|
-
!*** ../../common/temp/node_modules/.pnpm/js-base64@3.7.
|
|
307460
|
+
!*** ../../common/temp/node_modules/.pnpm/js-base64@3.7.3/node_modules/js-base64/base64.mjs ***!
|
|
306936
307461
|
\**********************************************************************************************/
|
|
306937
307462
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
306938
307463
|
|
|
@@ -306972,7 +307497,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
306972
307497
|
*
|
|
306973
307498
|
* @author Dan Kogai (https://github.com/dankogai)
|
|
306974
307499
|
*/
|
|
306975
|
-
const version = '3.7.
|
|
307500
|
+
const version = '3.7.3';
|
|
306976
307501
|
/**
|
|
306977
307502
|
* @deprecated use lowercase `version`.
|
|
306978
307503
|
*/
|
|
@@ -307261,9 +307786,9 @@ const gBase64 = {
|
|
|
307261
307786
|
|
|
307262
307787
|
/***/ }),
|
|
307263
307788
|
|
|
307264
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307789
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js":
|
|
307265
307790
|
/*!******************************************************************************************************************************!*\
|
|
307266
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307791
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
|
307267
307792
|
\******************************************************************************************************************************/
|
|
307268
307793
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307269
307794
|
|
|
@@ -307282,9 +307807,9 @@ function _arrayLikeToArray(arr, len) {
|
|
|
307282
307807
|
|
|
307283
307808
|
/***/ }),
|
|
307284
307809
|
|
|
307285
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307810
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js":
|
|
307286
307811
|
/*!****************************************************************************************************************************!*\
|
|
307287
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307812
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
|
307288
307813
|
\****************************************************************************************************************************/
|
|
307289
307814
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307290
307815
|
|
|
@@ -307299,9 +307824,9 @@ function _arrayWithHoles(arr) {
|
|
|
307299
307824
|
|
|
307300
307825
|
/***/ }),
|
|
307301
307826
|
|
|
307302
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307827
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js":
|
|
307303
307828
|
/*!***********************************************************************************************************************************!*\
|
|
307304
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307829
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
|
307305
307830
|
\***********************************************************************************************************************************/
|
|
307306
307831
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307307
307832
|
|
|
@@ -307319,9 +307844,9 @@ function _assertThisInitialized(self) {
|
|
|
307319
307844
|
|
|
307320
307845
|
/***/ }),
|
|
307321
307846
|
|
|
307322
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307847
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js":
|
|
307323
307848
|
/*!****************************************************************************************************************************!*\
|
|
307324
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307849
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
|
307325
307850
|
\****************************************************************************************************************************/
|
|
307326
307851
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307327
307852
|
|
|
@@ -307338,9 +307863,9 @@ function _classCallCheck(instance, Constructor) {
|
|
|
307338
307863
|
|
|
307339
307864
|
/***/ }),
|
|
307340
307865
|
|
|
307341
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307866
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js":
|
|
307342
307867
|
/*!*************************************************************************************************************************!*\
|
|
307343
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307868
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
|
307344
307869
|
\*************************************************************************************************************************/
|
|
307345
307870
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307346
307871
|
|
|
@@ -307349,13 +307874,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307349
307874
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307350
307875
|
/* harmony export */ "default": () => (/* binding */ _createClass)
|
|
307351
307876
|
/* harmony export */ });
|
|
307877
|
+
/* 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");
|
|
307878
|
+
|
|
307352
307879
|
function _defineProperties(target, props) {
|
|
307353
307880
|
for (var i = 0; i < props.length; i++) {
|
|
307354
307881
|
var descriptor = props[i];
|
|
307355
307882
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
307356
307883
|
descriptor.configurable = true;
|
|
307357
307884
|
if ("value" in descriptor) descriptor.writable = true;
|
|
307358
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
307885
|
+
Object.defineProperty(target, (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(descriptor.key), descriptor);
|
|
307359
307886
|
}
|
|
307360
307887
|
}
|
|
307361
307888
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
@@ -307369,9 +307896,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
307369
307896
|
|
|
307370
307897
|
/***/ }),
|
|
307371
307898
|
|
|
307372
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307899
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js":
|
|
307373
307900
|
/*!****************************************************************************************************************************!*\
|
|
307374
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307901
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
|
307375
307902
|
\****************************************************************************************************************************/
|
|
307376
307903
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307377
307904
|
|
|
@@ -307380,7 +307907,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307380
307907
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307381
307908
|
/* harmony export */ "default": () => (/* binding */ _defineProperty)
|
|
307382
307909
|
/* harmony export */ });
|
|
307910
|
+
/* 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");
|
|
307911
|
+
|
|
307383
307912
|
function _defineProperty(obj, key, value) {
|
|
307913
|
+
key = (0,_toPropertyKey_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key);
|
|
307384
307914
|
if (key in obj) {
|
|
307385
307915
|
Object.defineProperty(obj, key, {
|
|
307386
307916
|
value: value,
|
|
@@ -307396,9 +307926,9 @@ function _defineProperty(obj, key, value) {
|
|
|
307396
307926
|
|
|
307397
307927
|
/***/ }),
|
|
307398
307928
|
|
|
307399
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307929
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js":
|
|
307400
307930
|
/*!****************************************************************************************************************************!*\
|
|
307401
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307931
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
|
307402
307932
|
\****************************************************************************************************************************/
|
|
307403
307933
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307404
307934
|
|
|
@@ -307416,9 +307946,9 @@ function _getPrototypeOf(o) {
|
|
|
307416
307946
|
|
|
307417
307947
|
/***/ }),
|
|
307418
307948
|
|
|
307419
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307949
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js":
|
|
307420
307950
|
/*!**********************************************************************************************************************!*\
|
|
307421
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307951
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
|
307422
307952
|
\**********************************************************************************************************************/
|
|
307423
307953
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307424
307954
|
|
|
@@ -307427,7 +307957,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307427
307957
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307428
307958
|
/* harmony export */ "default": () => (/* binding */ _inherits)
|
|
307429
307959
|
/* harmony export */ });
|
|
307430
|
-
/* harmony import */ var _setPrototypeOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setPrototypeOf.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307960
|
+
/* 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");
|
|
307431
307961
|
|
|
307432
307962
|
function _inherits(subClass, superClass) {
|
|
307433
307963
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -307448,9 +307978,9 @@ function _inherits(subClass, superClass) {
|
|
|
307448
307978
|
|
|
307449
307979
|
/***/ }),
|
|
307450
307980
|
|
|
307451
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307981
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js":
|
|
307452
307982
|
/*!*****************************************************************************************************************************!*\
|
|
307453
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307983
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
|
307454
307984
|
\*****************************************************************************************************************************/
|
|
307455
307985
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307456
307986
|
|
|
@@ -307465,9 +307995,9 @@ function _iterableToArray(iter) {
|
|
|
307465
307995
|
|
|
307466
307996
|
/***/ }),
|
|
307467
307997
|
|
|
307468
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307998
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js":
|
|
307469
307999
|
/*!*****************************************************************************************************************************!*\
|
|
307470
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308000
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
|
307471
308001
|
\*****************************************************************************************************************************/
|
|
307472
308002
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307473
308003
|
|
|
@@ -307482,9 +308012,9 @@ function _nonIterableRest() {
|
|
|
307482
308012
|
|
|
307483
308013
|
/***/ }),
|
|
307484
308014
|
|
|
307485
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308015
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js":
|
|
307486
308016
|
/*!***************************************************************************************************************************************!*\
|
|
307487
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308017
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
|
307488
308018
|
\***************************************************************************************************************************************/
|
|
307489
308019
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307490
308020
|
|
|
@@ -307493,8 +308023,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307493
308023
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307494
308024
|
/* harmony export */ "default": () => (/* binding */ _possibleConstructorReturn)
|
|
307495
308025
|
/* harmony export */ });
|
|
307496
|
-
/* harmony import */ var _typeof_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./typeof.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307497
|
-
/* harmony import */ var _assertThisInitialized_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308026
|
+
/* 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");
|
|
308027
|
+
/* 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");
|
|
307498
308028
|
|
|
307499
308029
|
|
|
307500
308030
|
function _possibleConstructorReturn(self, call) {
|
|
@@ -307508,9 +308038,9 @@ function _possibleConstructorReturn(self, call) {
|
|
|
307508
308038
|
|
|
307509
308039
|
/***/ }),
|
|
307510
308040
|
|
|
307511
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308041
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js":
|
|
307512
308042
|
/*!****************************************************************************************************************************!*\
|
|
307513
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308043
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
|
307514
308044
|
\****************************************************************************************************************************/
|
|
307515
308045
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307516
308046
|
|
|
@@ -307529,9 +308059,9 @@ function _setPrototypeOf(o, p) {
|
|
|
307529
308059
|
|
|
307530
308060
|
/***/ }),
|
|
307531
308061
|
|
|
307532
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308062
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js":
|
|
307533
308063
|
/*!*********************************************************************************************************************!*\
|
|
307534
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308064
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toArray.js ***!
|
|
307535
308065
|
\*********************************************************************************************************************/
|
|
307536
308066
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307537
308067
|
|
|
@@ -307540,10 +308070,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307540
308070
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307541
308071
|
/* harmony export */ "default": () => (/* binding */ _toArray)
|
|
307542
308072
|
/* harmony export */ });
|
|
307543
|
-
/* harmony import */ var _arrayWithHoles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithHoles.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307544
|
-
/* harmony import */ var _iterableToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307545
|
-
/* harmony import */ var _unsupportedIterableToArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
307546
|
-
/* harmony import */ var _nonIterableRest_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./nonIterableRest.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308073
|
+
/* 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");
|
|
308074
|
+
/* 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");
|
|
308075
|
+
/* 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");
|
|
308076
|
+
/* 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");
|
|
307547
308077
|
|
|
307548
308078
|
|
|
307549
308079
|
|
|
@@ -307554,9 +308084,57 @@ function _toArray(arr) {
|
|
|
307554
308084
|
|
|
307555
308085
|
/***/ }),
|
|
307556
308086
|
|
|
307557
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308087
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js":
|
|
308088
|
+
/*!*************************************************************************************************************************!*\
|
|
308089
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPrimitive.js ***!
|
|
308090
|
+
\*************************************************************************************************************************/
|
|
308091
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
308092
|
+
|
|
308093
|
+
"use strict";
|
|
308094
|
+
__webpack_require__.r(__webpack_exports__);
|
|
308095
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
308096
|
+
/* harmony export */ "default": () => (/* binding */ _toPrimitive)
|
|
308097
|
+
/* harmony export */ });
|
|
308098
|
+
/* 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");
|
|
308099
|
+
|
|
308100
|
+
function _toPrimitive(input, hint) {
|
|
308101
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(input) !== "object" || input === null) return input;
|
|
308102
|
+
var prim = input[Symbol.toPrimitive];
|
|
308103
|
+
if (prim !== undefined) {
|
|
308104
|
+
var res = prim.call(input, hint || "default");
|
|
308105
|
+
if ((0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(res) !== "object") return res;
|
|
308106
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
308107
|
+
}
|
|
308108
|
+
return (hint === "string" ? String : Number)(input);
|
|
308109
|
+
}
|
|
308110
|
+
|
|
308111
|
+
/***/ }),
|
|
308112
|
+
|
|
308113
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js":
|
|
308114
|
+
/*!***************************************************************************************************************************!*\
|
|
308115
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js ***!
|
|
308116
|
+
\***************************************************************************************************************************/
|
|
308117
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
308118
|
+
|
|
308119
|
+
"use strict";
|
|
308120
|
+
__webpack_require__.r(__webpack_exports__);
|
|
308121
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
308122
|
+
/* harmony export */ "default": () => (/* binding */ _toPropertyKey)
|
|
308123
|
+
/* harmony export */ });
|
|
308124
|
+
/* 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");
|
|
308125
|
+
/* 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");
|
|
308126
|
+
|
|
308127
|
+
|
|
308128
|
+
function _toPropertyKey(arg) {
|
|
308129
|
+
var key = (0,_toPrimitive_js__WEBPACK_IMPORTED_MODULE_1__["default"])(arg, "string");
|
|
308130
|
+
return (0,_typeof_js__WEBPACK_IMPORTED_MODULE_0__["default"])(key) === "symbol" ? key : String(key);
|
|
308131
|
+
}
|
|
308132
|
+
|
|
308133
|
+
/***/ }),
|
|
308134
|
+
|
|
308135
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js":
|
|
307558
308136
|
/*!********************************************************************************************************************!*\
|
|
307559
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308137
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
|
307560
308138
|
\********************************************************************************************************************/
|
|
307561
308139
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307562
308140
|
|
|
@@ -307577,9 +308155,9 @@ function _typeof(obj) {
|
|
|
307577
308155
|
|
|
307578
308156
|
/***/ }),
|
|
307579
308157
|
|
|
307580
|
-
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308158
|
+
/***/ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js":
|
|
307581
308159
|
/*!****************************************************************************************************************************************!*\
|
|
307582
|
-
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308160
|
+
!*** ../../common/temp/node_modules/.pnpm/@babel+runtime@7.20.6/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
|
307583
308161
|
\****************************************************************************************************************************************/
|
|
307584
308162
|
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
307585
308163
|
|
|
@@ -307588,7 +308166,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
307588
308166
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
307589
308167
|
/* harmony export */ "default": () => (/* binding */ _unsupportedIterableToArray)
|
|
307590
308168
|
/* harmony export */ });
|
|
307591
|
-
/* harmony import */ var _arrayLikeToArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayLikeToArray.js */ "../../common/temp/node_modules/.pnpm/@babel+runtime@7.
|
|
308169
|
+
/* 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");
|
|
307592
308170
|
|
|
307593
308171
|
function _unsupportedIterableToArray(o, minLen) {
|
|
307594
308172
|
if (!o) return;
|
|
@@ -308022,15 +308600,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
308022
308600
|
/* harmony export */ "t": () => (/* binding */ t),
|
|
308023
308601
|
/* harmony export */ "use": () => (/* binding */ use)
|
|
308024
308602
|
/* harmony export */ });
|
|
308025
|
-
/* 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.
|
|
308026
|
-
/* 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.
|
|
308027
|
-
/* 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.
|
|
308028
|
-
/* 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.
|
|
308029
|
-
/* 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.
|
|
308030
|
-
/* 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.
|
|
308031
|
-
/* 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.
|
|
308032
|
-
/* 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.
|
|
308033
|
-
/* 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.
|
|
308603
|
+
/* 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");
|
|
308604
|
+
/* 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");
|
|
308605
|
+
/* 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");
|
|
308606
|
+
/* 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");
|
|
308607
|
+
/* 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");
|
|
308608
|
+
/* 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");
|
|
308609
|
+
/* 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");
|
|
308610
|
+
/* 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");
|
|
308611
|
+
/* 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");
|
|
308034
308612
|
|
|
308035
308613
|
|
|
308036
308614
|
|
|
@@ -310910,7 +311488,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
310910
311488
|
/***/ ((module) => {
|
|
310911
311489
|
|
|
310912
311490
|
"use strict";
|
|
310913
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.
|
|
311491
|
+
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"}}]}}');
|
|
310914
311492
|
|
|
310915
311493
|
/***/ })
|
|
310916
311494
|
|
|
@@ -311077,8 +311655,7 @@ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev
|
|
|
311077
311655
|
/******/ script.parentNode && script.parentNode.removeChild(script);
|
|
311078
311656
|
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
|
|
311079
311657
|
/******/ if(prev) return prev(event);
|
|
311080
|
-
/******/ }
|
|
311081
|
-
/******/ ;
|
|
311658
|
+
/******/ };
|
|
311082
311659
|
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
|
311083
311660
|
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
|
311084
311661
|
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|
|
@@ -311231,7 +311808,7 @@ var exports = __webpack_exports__;
|
|
|
311231
311808
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
311232
311809
|
*--------------------------------------------------------------------------------------------*/
|
|
311233
311810
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
311234
|
-
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.
|
|
311811
|
+
const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.pnpm/chai@4.3.7/node_modules/chai/index.js");
|
|
311235
311812
|
const ecschema_rpcinterface_common_1 = __webpack_require__(/*! @itwin/ecschema-rpcinterface-common */ "../../core/ecschema-rpc/common/lib/cjs/ecschema-rpc-interface.js");
|
|
311236
311813
|
const TestContext_1 = __webpack_require__(/*! ./setup/TestContext */ "./lib/frontend/setup/TestContext.js");
|
|
311237
311814
|
const ecschema_metadata_1 = __webpack_require__(/*! @itwin/ecschema-metadata */ "../../core/ecschema-metadata/lib/cjs/ecschema-metadata.js");
|