@itwin/rpcinterface-full-stack-tests 4.8.0-dev.3 → 4.8.0-dev.4
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/_bea9.bundled-tests.js.map +1 -1
- package/lib/dist/bundled-tests.js +563 -541
- 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/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_1_6_node_modules_loaders_gl_draco_di-0642a6.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_meshoptimizer_0_20_0_node_modules_meshoptimizer_index_m-a5ae61.bundled-tests.js.map +1 -1
- package/package.json +14 -14
|
@@ -50646,9 +50646,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
50646
50646
|
* [TextAnnotation2d]($backend) and [TextAnnotation3d]($backend) elements store a single TextAnnotation from which their geometric representation is generated.
|
|
50647
50647
|
* Other types of elements may store multiple TextAnnotations, positioned relative to one another.
|
|
50648
50648
|
* The annotation's position and orientation relative to the host element's [Placement]($common) is determined as follows:
|
|
50649
|
-
* - First,
|
|
50650
|
-
*
|
|
50651
|
-
*
|
|
50649
|
+
* - First, a bounding box is computed enclosing the contents of the [[textBlock].
|
|
50650
|
+
* - Then, an "anchor point" is computed based on the bounding box and the [[anchor]] property. The anchor point can be at one of the four corners of the box, in the middle of one of its four
|
|
50651
|
+
* edges, or in the center of the box.
|
|
50652
50652
|
* - The [[orientation]] is applied to rotate the box around the anchor point.
|
|
50653
50653
|
* - Finally, the [[offset]] is added to the anchor point to apply translation.
|
|
50654
50654
|
* @see [produceTextAnnotationGeometry]($backend) to decompose the annotation into a set of geometric primitives suitable for use with [[GeometryStreamBuilder.appendTextBlock]].
|
|
@@ -50703,37 +50703,37 @@ class TextAnnotation {
|
|
|
50703
50703
|
* The anchor point is computed as specified by this annotation's [[anchor]] setting. For example, if the text block is anchored
|
|
50704
50704
|
* at the bottom left, then the transform will be relative to the bottom-left corner of `textBlockExtents`.
|
|
50705
50705
|
* The text block will be rotated around the fixed anchor point according to [[orientation]], then the anchor point will be translated by [[offset]].
|
|
50706
|
-
* @param
|
|
50706
|
+
* @param boundingBox A box fully containing the [[textBlock]].
|
|
50707
50707
|
* @see [[computeAnchorPoint]] to compute the transform's anchor point.
|
|
50708
50708
|
*/
|
|
50709
|
-
computeTransform(
|
|
50710
|
-
const anchorPt = this.computeAnchorPoint(
|
|
50709
|
+
computeTransform(boundingBox) {
|
|
50710
|
+
const anchorPt = this.computeAnchorPoint(boundingBox);
|
|
50711
50711
|
const matrix = this.orientation.toMatrix3d();
|
|
50712
50712
|
const rotation = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Transform.createFixedPointAndMatrix(anchorPt, matrix);
|
|
50713
50713
|
const translation = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Transform.createTranslation(this.offset);
|
|
50714
50714
|
return translation.multiplyTransformTransform(rotation, rotation);
|
|
50715
50715
|
}
|
|
50716
50716
|
/** Compute the anchor point of this annotation as specified by [[anchor]].
|
|
50717
|
-
* @param
|
|
50717
|
+
* @param boundingBox A box fully containing the [[textBlock]].
|
|
50718
50718
|
* @see [[computeTransform]] to compute the transform relative to the anchor point.
|
|
50719
50719
|
*/
|
|
50720
|
-
computeAnchorPoint(
|
|
50721
|
-
let x =
|
|
50722
|
-
let y =
|
|
50720
|
+
computeAnchorPoint(boundingBox) {
|
|
50721
|
+
let x = boundingBox.low.x;
|
|
50722
|
+
let y = boundingBox.high.y;
|
|
50723
50723
|
switch (this.anchor.horizontal) {
|
|
50724
50724
|
case "center":
|
|
50725
|
-
x +=
|
|
50725
|
+
x += boundingBox.xLength() / 2;
|
|
50726
50726
|
break;
|
|
50727
50727
|
case "right":
|
|
50728
|
-
x +=
|
|
50728
|
+
x += boundingBox.xLength();
|
|
50729
50729
|
break;
|
|
50730
50730
|
}
|
|
50731
50731
|
switch (this.anchor.vertical) {
|
|
50732
50732
|
case "middle":
|
|
50733
|
-
y -=
|
|
50733
|
+
y -= boundingBox.yLength() / 2;
|
|
50734
50734
|
break;
|
|
50735
50735
|
case "bottom":
|
|
50736
|
-
y -=
|
|
50736
|
+
y -= boundingBox.yLength();
|
|
50737
50737
|
break;
|
|
50738
50738
|
}
|
|
50739
50739
|
return new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Point3d(x, y, 0);
|
|
@@ -51102,6 +51102,26 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51102
51102
|
|
|
51103
51103
|
|
|
51104
51104
|
|
|
51105
|
+
/***/ }),
|
|
51106
|
+
|
|
51107
|
+
/***/ "../../core/common/lib/esm/annotation/TextBlockLayoutResult.js":
|
|
51108
|
+
/*!*********************************************************************!*\
|
|
51109
|
+
!*** ../../core/common/lib/esm/annotation/TextBlockLayoutResult.js ***!
|
|
51110
|
+
\*********************************************************************/
|
|
51111
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
51112
|
+
|
|
51113
|
+
"use strict";
|
|
51114
|
+
__webpack_require__.r(__webpack_exports__);
|
|
51115
|
+
/*---------------------------------------------------------------------------------------------
|
|
51116
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
51117
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
51118
|
+
*--------------------------------------------------------------------------------------------*/
|
|
51119
|
+
/** @packageDocumentation
|
|
51120
|
+
* @module Annotation
|
|
51121
|
+
*/
|
|
51122
|
+
|
|
51123
|
+
|
|
51124
|
+
|
|
51105
51125
|
/***/ }),
|
|
51106
51126
|
|
|
51107
51127
|
/***/ "../../core/common/lib/esm/annotation/TextStyle.js":
|
|
@@ -51229,549 +51249,550 @@ class TextStyle {
|
|
|
51229
51249
|
"use strict";
|
|
51230
51250
|
__webpack_require__.r(__webpack_exports__);
|
|
51231
51251
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
51232
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
51233
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
51234
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
51252
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_41__.AdditionalTransform),
|
|
51253
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__.AffineTransform),
|
|
51254
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.AmbientLight),
|
|
51235
51255
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
51236
51256
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
51237
51257
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
51238
51258
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
51239
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
51240
|
-
/* harmony export */ "Atmosphere": () => (/* reexport safe */
|
|
51241
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
51242
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
51243
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
51244
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
51245
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
51246
|
-
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */
|
|
51247
|
-
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */
|
|
51248
|
-
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */
|
|
51249
|
-
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */
|
|
51250
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
51251
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
51252
|
-
/* harmony export */ "BatchType": () => (/* reexport safe */
|
|
51253
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
51254
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
51255
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
51256
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
51257
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
51258
|
-
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */
|
|
51259
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
51260
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
51261
|
-
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */
|
|
51262
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
51263
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
51264
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
51265
|
-
/* harmony export */ "Camera": () => (/* reexport safe */
|
|
51266
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
51267
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
51268
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
51269
|
-
/* harmony export */ "CesiumTerrainAssetId": () => (/* reexport safe */
|
|
51270
|
-
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */
|
|
51271
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
51272
|
-
/* harmony export */ "ChangedValueState": () => (/* reexport safe */
|
|
51273
|
-
/* harmony export */ "ChangesetType": () => (/* reexport safe */
|
|
51274
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
51275
|
-
/* harmony export */ "ClipIntersectionStyle": () => (/* reexport safe */
|
|
51276
|
-
/* harmony export */ "ClipStyle": () => (/* reexport safe */
|
|
51277
|
-
/* harmony export */ "Code": () => (/* reexport safe */
|
|
51278
|
-
/* harmony export */ "CodeScopeSpec": () => (/* reexport safe */
|
|
51279
|
-
/* harmony export */ "CodeSpec": () => (/* reexport safe */
|
|
51280
|
-
/* harmony export */ "ColorByName": () => (/* reexport safe */
|
|
51281
|
-
/* harmony export */ "ColorDef": () => (/* reexport safe */
|
|
51282
|
-
/* harmony export */ "ColorIndex": () => (/* reexport safe */
|
|
51283
|
-
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */
|
|
51284
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
51285
|
-
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */
|
|
51286
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
51287
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
51288
|
-
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */
|
|
51289
|
-
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */
|
|
51290
|
-
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */
|
|
51291
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
51292
|
-
/* harmony export */ "CutStyle": () => (/* reexport safe */
|
|
51293
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
51294
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
51295
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
51296
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
51297
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
51298
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
51299
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
51300
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
51301
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
51302
|
-
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */
|
|
51303
|
-
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */
|
|
51304
|
-
/* harmony export */ "DomainOptions": () => (/* reexport safe */
|
|
51305
|
-
/* harmony export */ "ECJsNames": () => (/* reexport safe */
|
|
51306
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
51307
|
-
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */
|
|
51308
|
-
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */
|
|
51309
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
51310
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
51311
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
51312
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
51313
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
51314
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
51315
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
51316
|
-
/* harmony export */ "EntityMetaData": () => (/* reexport safe */
|
|
51317
|
-
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */
|
|
51318
|
-
/* harmony export */ "Environment": () => (/* reexport safe */
|
|
51319
|
-
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */
|
|
51320
|
-
/* harmony export */ "Feature": () => (/* reexport safe */
|
|
51321
|
-
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */
|
|
51322
|
-
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */
|
|
51323
|
-
/* harmony export */ "FeatureIndex": () => (/* reexport safe */
|
|
51324
|
-
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */
|
|
51325
|
-
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */
|
|
51326
|
-
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */
|
|
51327
|
-
/* harmony export */ "FeatureTable": () => (/* reexport safe */
|
|
51328
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
51329
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
51330
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
51331
|
-
/* harmony export */ "FontMap": () => (/* reexport safe */
|
|
51332
|
-
/* harmony export */ "FontType": () => (/* reexport safe */
|
|
51259
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_42__.AreaPattern),
|
|
51260
|
+
/* harmony export */ "Atmosphere": () => (/* reexport safe */ _Atmosphere__WEBPACK_IMPORTED_MODULE_7__.Atmosphere),
|
|
51261
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_148__.B3dmHeader),
|
|
51262
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.BRepEntity),
|
|
51263
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__.BRepGeometryOperation),
|
|
51264
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BackendError),
|
|
51265
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.BackgroundFill),
|
|
51266
|
+
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_9__.BackgroundMapProvider),
|
|
51267
|
+
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_10__.BackgroundMapSettings),
|
|
51268
|
+
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_9__.BackgroundMapType),
|
|
51269
|
+
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_11__.Base64EncodedString),
|
|
51270
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__.BaseLayerSettings),
|
|
51271
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.BaseMapLayerSettings),
|
|
51272
|
+
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.BatchType),
|
|
51273
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_141__.BentleyCloudRpcConfiguration),
|
|
51274
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_141__.BentleyCloudRpcManager),
|
|
51275
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_142__.BentleyCloudRpcProtocol),
|
|
51276
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BentleyError),
|
|
51277
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BentleyStatus),
|
|
51278
|
+
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.BisCodeSpec),
|
|
51279
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.BlobOptionsBuilder),
|
|
51280
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_43__.BoundingSphere),
|
|
51281
|
+
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.BriefcaseIdValue),
|
|
51282
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BriefcaseStatus),
|
|
51283
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.CURRENT_INVOCATION),
|
|
51284
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.CURRENT_REQUEST),
|
|
51285
|
+
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_13__.Camera),
|
|
51286
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__.Carto2DDegrees),
|
|
51287
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_44__.Cartographic),
|
|
51288
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_44__.CartographicRange),
|
|
51289
|
+
/* harmony export */ "CesiumTerrainAssetId": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.CesiumTerrainAssetId),
|
|
51290
|
+
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ChangeOpCode),
|
|
51291
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ChangeSetStatus),
|
|
51292
|
+
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ChangedValueState),
|
|
51293
|
+
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_16__.ChangesetType),
|
|
51294
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ChannelConstraintError),
|
|
51295
|
+
/* harmony export */ "ClipIntersectionStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_17__.ClipIntersectionStyle),
|
|
51296
|
+
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_17__.ClipStyle),
|
|
51297
|
+
/* harmony export */ "Code": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.Code),
|
|
51298
|
+
/* harmony export */ "CodeScopeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.CodeScopeSpec),
|
|
51299
|
+
/* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.CodeSpec),
|
|
51300
|
+
/* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_19__.ColorByName),
|
|
51301
|
+
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_20__.ColorDef),
|
|
51302
|
+
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.ColorIndex),
|
|
51303
|
+
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_21__.CommonLoggerCategory),
|
|
51304
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_149__.CompositeTileHeader),
|
|
51305
|
+
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_32__.ConcreteEntityTypes),
|
|
51306
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentFlags),
|
|
51307
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentIdProvider),
|
|
51308
|
+
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModel),
|
|
51309
|
+
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModelProps),
|
|
51310
|
+
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModels),
|
|
51311
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.CurrentImdlVersion),
|
|
51312
|
+
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_17__.CutStyle),
|
|
51313
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbQueryError),
|
|
51314
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbRequestKind),
|
|
51315
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbResponseKind),
|
|
51316
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbResponseStatus),
|
|
51317
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.DbResult),
|
|
51318
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbValueFormat),
|
|
51319
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_93__.DefaultSupportedTypes),
|
|
51320
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_134__.DevToolsRpcInterface),
|
|
51321
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_134__.DevToolsStatsOptions),
|
|
51322
|
+
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__.DisplayStyle3dSettings),
|
|
51323
|
+
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__.DisplayStyleSettings),
|
|
51324
|
+
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.DomainOptions),
|
|
51325
|
+
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ECJsNames),
|
|
51326
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_87__.ECSqlReader),
|
|
51327
|
+
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ECSqlSystemProperty),
|
|
51328
|
+
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ECSqlValueType),
|
|
51329
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Easing),
|
|
51330
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_67__.EcefLocation),
|
|
51331
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.EdgeArgs),
|
|
51332
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__.ElementGeometry),
|
|
51333
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_89__.ElementGeometryChange),
|
|
51334
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__.ElementGeometryOpcode),
|
|
51335
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_77__.EmptyLocalization),
|
|
51336
|
+
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_31__.EntityMetaData),
|
|
51337
|
+
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_32__.EntityReferenceSet),
|
|
51338
|
+
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_33__.Environment),
|
|
51339
|
+
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.ExternalSourceAttachmentRole),
|
|
51340
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.Feature),
|
|
51341
|
+
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__.FeatureAppearance),
|
|
51342
|
+
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__.FeatureAppearanceProvider),
|
|
51343
|
+
/* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.FeatureIndex),
|
|
51344
|
+
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.FeatureIndexType),
|
|
51345
|
+
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_30__.FeatureOverrideType),
|
|
51346
|
+
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__.FeatureOverrides),
|
|
51347
|
+
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.FeatureTable),
|
|
51348
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.FeatureTableHeader),
|
|
51349
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.FillDisplay),
|
|
51350
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_60__.FillFlags),
|
|
51351
|
+
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_37__.FontMap),
|
|
51352
|
+
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_37__.FontType),
|
|
51333
51353
|
/* harmony export */ "FractionRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.FractionRun),
|
|
51334
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
51335
|
-
/* harmony export */ "Frustum": () => (/* reexport safe */
|
|
51336
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
51337
|
-
/* harmony export */ "GenericInstanceFilter": () => (/* reexport safe */
|
|
51338
|
-
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* reexport safe */
|
|
51339
|
-
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */
|
|
51340
|
-
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */
|
|
51341
|
-
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */
|
|
51342
|
-
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */
|
|
51343
|
-
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */
|
|
51344
|
-
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */
|
|
51345
|
-
/* harmony export */ "GeographicCRS": () => (/* reexport safe */
|
|
51346
|
-
/* harmony export */ "GeometryClass": () => (/* reexport safe */
|
|
51347
|
-
/* harmony export */ "GeometryParams": () => (/* reexport safe */
|
|
51348
|
-
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */
|
|
51349
|
-
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */
|
|
51350
|
-
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */
|
|
51351
|
-
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */
|
|
51352
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
51353
|
-
/* harmony export */ "GlobeMode": () => (/* reexport safe */
|
|
51354
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
51355
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
51356
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
51357
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
51358
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
51359
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
51360
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
51361
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
51362
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
51363
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
51364
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
51365
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
51366
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
51367
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
51368
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
51369
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
51370
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
51371
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
51372
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
51373
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
51374
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
51375
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
51376
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
51377
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
51378
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
51379
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
51380
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
51381
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
51382
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
51383
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
51384
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
51385
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
51386
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
51387
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
51388
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
51389
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
51390
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
51391
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
51392
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
51393
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
51394
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
51395
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
51396
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
51397
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
51398
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
51354
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.FresnelSettings),
|
|
51355
|
+
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.Frustum),
|
|
51356
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_47__.FrustumPlanes),
|
|
51357
|
+
/* harmony export */ "GenericInstanceFilter": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_39__.GenericInstanceFilter),
|
|
51358
|
+
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_39__.GenericInstanceFilterRuleValue),
|
|
51359
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_40__.GeoCoordStatus),
|
|
51360
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeocentricTransform),
|
|
51361
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeodeticDatum),
|
|
51362
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_49__.GeodeticEllipsoid),
|
|
51363
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeodeticTransform),
|
|
51364
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeodeticTransformPath),
|
|
51365
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.GeographicCRS),
|
|
51366
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.GeometryClass),
|
|
51367
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.GeometryParams),
|
|
51368
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.GeometryStreamBuilder),
|
|
51369
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.GeometryStreamFlags),
|
|
51370
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.GeometryStreamIterator),
|
|
51371
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_58__.GeometrySummaryVerbosity),
|
|
51372
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__.GlbHeader),
|
|
51373
|
+
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_10__.GlobeMode),
|
|
51374
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__.GltfV2ChunkTypes),
|
|
51375
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__.GltfVersions),
|
|
51376
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_59__.Gradient),
|
|
51377
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_60__.GraphicParams),
|
|
51378
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GridFileDefinition),
|
|
51379
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GridFileTransform),
|
|
51380
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.GridOrientationType),
|
|
51381
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_61__.GroundPlane),
|
|
51382
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_64__.HSLColor),
|
|
51383
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_65__.HSVColor),
|
|
51384
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_65__.HSVConstants),
|
|
51385
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_41__.Helmert2DWithZOffset),
|
|
51386
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.HemisphereLights),
|
|
51387
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_62__.HiddenLine),
|
|
51388
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_63__.Hilite),
|
|
51389
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.HorizontalCRS),
|
|
51390
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.HorizontalCRSExtent),
|
|
51391
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_152__.I3dmHeader),
|
|
51392
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_67__.IModel),
|
|
51393
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.IModelError),
|
|
51394
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_135__.IModelNotFoundResponse),
|
|
51395
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_135__.IModelReadRpcInterface),
|
|
51396
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.IModelStatus),
|
|
51397
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_136__.IModelTileRpcInterface),
|
|
51398
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_69__.IModelVersion),
|
|
51399
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.INSTANCE),
|
|
51400
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageBuffer),
|
|
51401
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageBufferFormat),
|
|
51402
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_51__.ImageGraphic),
|
|
51403
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_51__.ImageGraphicCorners),
|
|
51404
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.ImageMapLayerSettings),
|
|
51405
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageSource),
|
|
51406
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageSourceFormat),
|
|
51407
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.ImdlFlags),
|
|
51408
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.ImdlHeader),
|
|
51409
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__.InternetConnectivityStatus),
|
|
51410
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Interpolation),
|
|
51411
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_73__.IpcSession),
|
|
51412
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocket),
|
|
51413
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketBackend),
|
|
51414
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketFrontend),
|
|
51415
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketMessage),
|
|
51416
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketMessageType),
|
|
51417
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_72__.IpcWebSocketTransport),
|
|
51418
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.LightSettings),
|
|
51399
51419
|
/* harmony export */ "LineBreakRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.LineBreakRun),
|
|
51400
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
51401
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
51402
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
51403
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
51404
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
51405
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
51406
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
51407
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
51408
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
51409
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
51410
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
51411
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
51412
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
51413
|
-
/* harmony export */ "ModelFeature": () => (/* reexport safe */
|
|
51414
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
51415
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
51416
|
-
/* harmony export */ "MonochromeMode": () => (/* reexport safe */
|
|
51417
|
-
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */
|
|
51418
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
51419
|
-
/* harmony export */ "NonUniformColor": () => (/* reexport safe */
|
|
51420
|
-
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */
|
|
51421
|
-
/* harmony export */ "Npc": () => (/* reexport safe */
|
|
51422
|
-
/* harmony export */ "NpcCenter": () => (/* reexport safe */
|
|
51423
|
-
/* harmony export */ "NpcCorners": () => (/* reexport safe */
|
|
51424
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
51425
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
51426
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
51427
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
51428
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
51429
|
-
/* harmony export */ "PackedFeature": () => (/* reexport safe */
|
|
51430
|
-
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */
|
|
51431
|
-
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */
|
|
51420
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_76__.LinePixels),
|
|
51421
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_52__.LineStyle),
|
|
51422
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__.MapImagerySettings),
|
|
51423
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapLayerSettings),
|
|
51424
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapSubLayerSettings),
|
|
51425
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.MarshalingBinaryMarker),
|
|
51426
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_80__.MassPropertiesOperation),
|
|
51427
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshEdge),
|
|
51428
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshEdges),
|
|
51429
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshPolyline),
|
|
51430
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshPolylineList),
|
|
51431
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_82__.ModelClipGroup),
|
|
51432
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_82__.ModelClipGroups),
|
|
51433
|
+
/* harmony export */ "ModelFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.ModelFeature),
|
|
51434
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_89__.ModelGeometryChanges),
|
|
51435
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.ModelMapLayerSettings),
|
|
51436
|
+
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__.MonochromeMode),
|
|
51437
|
+
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.MultiModelPackedFeatureTable),
|
|
51438
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.NoContentError),
|
|
51439
|
+
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.NonUniformColor),
|
|
51440
|
+
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_81__.NormalMapFlags),
|
|
51441
|
+
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.Npc),
|
|
51442
|
+
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.NpcCenter),
|
|
51443
|
+
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.NpcCorners),
|
|
51444
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.OPERATION),
|
|
51445
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_85__.OctEncodedNormal),
|
|
51446
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_85__.OctEncodedNormalPair),
|
|
51447
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__.OverriddenBy),
|
|
51448
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.POLICY),
|
|
51449
|
+
/* harmony export */ "PackedFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.PackedFeature),
|
|
51450
|
+
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.PackedFeatureModelTable),
|
|
51451
|
+
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.PackedFeatureTable),
|
|
51432
51452
|
/* harmony export */ "Paragraph": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Paragraph),
|
|
51433
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
51434
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
51435
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
51436
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
51437
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
51438
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
51439
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
51440
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
51441
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
51442
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
51443
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
51444
|
-
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */
|
|
51445
|
-
/* harmony export */ "ProfileOptions": () => (/* reexport safe */
|
|
51446
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
51447
|
-
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */
|
|
51448
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
51449
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
51450
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
51451
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
51452
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
51453
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
51454
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
51455
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
51456
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
51457
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
51458
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
51459
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
51460
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
51461
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
51462
|
-
/* harmony export */ "QueryParamType": () => (/* reexport safe */
|
|
51463
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
51464
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
51465
|
-
/* harmony export */ "Rank": () => (/* reexport safe */
|
|
51466
|
-
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */
|
|
51467
|
-
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */
|
|
51468
|
-
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */
|
|
51469
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
51470
|
-
/* harmony export */ "RelatedElement": () => (/* reexport safe */
|
|
51471
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
51472
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
51473
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
51474
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
51475
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
51476
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
51477
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
51478
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
51479
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
51480
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
51481
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
51482
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
51483
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
51484
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
51485
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
51486
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
51487
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
51488
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
51489
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
51490
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
51491
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
51492
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
51493
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
51494
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
51495
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
51496
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
51497
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
51498
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
51499
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
51500
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
51501
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
51502
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
51503
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
51504
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
51505
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
51506
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
51507
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
51508
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
51509
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
51510
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
51511
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
51512
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
51513
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
51453
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_53__.Placement2d),
|
|
51454
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_53__.Placement3d),
|
|
51455
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_90__.PlanProjectionSettings),
|
|
51456
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__.PlanarClipMaskMode),
|
|
51457
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__.PlanarClipMaskPriority),
|
|
51458
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__.PlanarClipMaskSettings),
|
|
51459
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_154__.PntsHeader),
|
|
51460
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_94__.PointCloudDisplaySettings),
|
|
51461
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.PolylineEdgeArgs),
|
|
51462
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.PolylineTypeFlags),
|
|
51463
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.PositionalVectorTransform),
|
|
51464
|
+
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_31__.PrimitiveTypeCode),
|
|
51465
|
+
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.ProfileOptions),
|
|
51466
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__.Projection),
|
|
51467
|
+
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_31__.PropertyMetaData),
|
|
51468
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_87__.PropertyMetaDataMap),
|
|
51469
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QParams2d),
|
|
51470
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QParams3d),
|
|
51471
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2d),
|
|
51472
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2dBuffer),
|
|
51473
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2dBufferBuilder),
|
|
51474
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2dList),
|
|
51475
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3d),
|
|
51476
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3dBuffer),
|
|
51477
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3dBufferBuilder),
|
|
51478
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3dList),
|
|
51479
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.Quantization),
|
|
51480
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryBinder),
|
|
51481
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryOptionsBuilder),
|
|
51482
|
+
/* harmony export */ "QueryParamType": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryParamType),
|
|
51483
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryRowFormat),
|
|
51484
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.REGISTRY),
|
|
51485
|
+
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.Rank),
|
|
51486
|
+
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.RealityDataFormat),
|
|
51487
|
+
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.RealityDataProvider),
|
|
51488
|
+
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.RealityDataSourceKey),
|
|
51489
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_94__.RealityModelDisplaySettings),
|
|
51490
|
+
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.RelatedElement),
|
|
51491
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_96__.RenderMaterial),
|
|
51492
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_118__.RenderMode),
|
|
51493
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_97__.RenderSchedule),
|
|
51494
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_98__.RenderTexture),
|
|
51495
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.ResponseLike),
|
|
51496
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_99__.RgbColor),
|
|
51497
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcConfiguration),
|
|
51498
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcContentType),
|
|
51499
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcControlChannel),
|
|
51500
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcControlResponse),
|
|
51501
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcDefaultConfiguration),
|
|
51502
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcDirectProtocol),
|
|
51503
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcDirectRequest),
|
|
51504
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcEndpoint),
|
|
51505
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_140__.RpcInterface),
|
|
51506
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_122__.RpcInvocation),
|
|
51507
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_100__.RpcManager),
|
|
51508
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.RpcMarshaling),
|
|
51509
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_144__.RpcMultipart),
|
|
51510
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcNotFoundResponse),
|
|
51511
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_143__.RpcOpenAPIDescription),
|
|
51512
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__.RpcOperation),
|
|
51513
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__.RpcOperationPolicy),
|
|
51514
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_126__.RpcPendingQueue),
|
|
51515
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcPendingResponse),
|
|
51516
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcProtocol),
|
|
51517
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcProtocolEvent),
|
|
51518
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcProtocolVersion),
|
|
51519
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushChannel),
|
|
51520
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushConnection),
|
|
51521
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushService),
|
|
51522
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushSubscription),
|
|
51523
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushTransport),
|
|
51524
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.RpcRegistry),
|
|
51525
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.RpcRequest),
|
|
51526
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcRequestEvent),
|
|
51527
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcRequestFulfillment),
|
|
51528
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcRequestStatus),
|
|
51529
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcResponseCacheControl),
|
|
51530
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcRoutingMap),
|
|
51531
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_131__.RpcRoutingToken),
|
|
51532
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.RpcSerializedValue),
|
|
51533
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_123__.RpcSessionInvocation),
|
|
51514
51534
|
/* harmony export */ "Run": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Run),
|
|
51515
|
-
/* harmony export */ "SchemaState": () => (/* reexport safe */
|
|
51516
|
-
/* harmony export */ "SectionType": () => (/* reexport safe */
|
|
51517
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
51518
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
51519
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
51520
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
51521
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
51522
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
51523
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
51524
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
51525
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
51526
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
51527
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
51528
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
51529
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
51530
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
51531
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
51532
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
51533
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
51534
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
51535
|
-
/* harmony export */ "SyncMode": () => (/* reexport safe */
|
|
51536
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
51537
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
51538
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
51535
|
+
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.SchemaState),
|
|
51536
|
+
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.SectionType),
|
|
51537
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ServerError),
|
|
51538
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ServerTimeoutError),
|
|
51539
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.SilhouetteEdgeArgs),
|
|
51540
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyBox),
|
|
51541
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyBoxImageType),
|
|
51542
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyCube),
|
|
51543
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyGradient),
|
|
51544
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkySphere),
|
|
51545
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_137__.SnapshotIModelRpcInterface),
|
|
51546
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.SolarLight),
|
|
51547
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_105__.SolarShadowSettings),
|
|
51548
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifier),
|
|
51549
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierFlags),
|
|
51550
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierInsideDisplay),
|
|
51551
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierOutsideDisplay),
|
|
51552
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifiers),
|
|
51553
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_107__.SubCategoryAppearance),
|
|
51554
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_108__.SubCategoryOverride),
|
|
51555
|
+
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.SyncMode),
|
|
51556
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.TerrainHeightOriginMode),
|
|
51557
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.TerrainSettings),
|
|
51558
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_138__.TestRpcManager),
|
|
51539
51559
|
/* harmony export */ "TextAnnotation": () => (/* reexport safe */ _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__.TextAnnotation),
|
|
51540
51560
|
/* harmony export */ "TextBlock": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlock),
|
|
51541
51561
|
/* harmony export */ "TextBlockComponent": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlockComponent),
|
|
51542
51562
|
/* harmony export */ "TextRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextRun),
|
|
51543
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
51544
|
-
/* harmony export */ "TextStyle": () => (/* reexport safe */
|
|
51545
|
-
/* harmony export */ "TextStyleSettings": () => (/* reexport safe */
|
|
51546
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
51547
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
51548
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
51549
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
51550
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
51551
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
51552
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
51553
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
51554
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
51555
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
51556
|
-
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */
|
|
51557
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
51558
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
51559
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
51560
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
51561
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
51562
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
51563
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
51564
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
51565
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
51566
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
51567
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
51568
|
-
/* harmony export */ "TypeDefinition": () => (/* reexport safe */
|
|
51569
|
-
/* harmony export */ "TypeOfChange": () => (/* reexport safe */
|
|
51570
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
51571
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
51572
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
51573
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
51574
|
-
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */
|
|
51575
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
51576
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
51577
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
51578
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
51579
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
51580
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
51581
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
51582
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
51583
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
51584
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
51585
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
51586
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
51587
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
51588
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
51589
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
51590
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
51591
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
51592
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
51593
|
-
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */
|
|
51594
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
51595
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
51596
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
51597
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
51598
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
51599
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
51600
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
51601
|
-
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */
|
|
51602
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
51603
|
-
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */
|
|
51604
|
-
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */
|
|
51605
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
51606
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
51607
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
51608
|
-
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */
|
|
51609
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
51610
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
51611
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
51612
|
-
/* harmony export */ "readElementMeshes": () => (/* reexport safe */
|
|
51613
|
-
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */
|
|
51614
|
-
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */
|
|
51615
|
-
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */
|
|
51563
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_55__.TextString),
|
|
51564
|
+
/* harmony export */ "TextStyle": () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_6__.TextStyle),
|
|
51565
|
+
/* harmony export */ "TextStyleSettings": () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_6__.TextStyleSettings),
|
|
51566
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_81__.TextureMapUnits),
|
|
51567
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_110__.TextureMapping),
|
|
51568
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_111__.TextureTransparency),
|
|
51569
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplay),
|
|
51570
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplayMode),
|
|
51571
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplaySensor),
|
|
51572
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplaySensorSettings),
|
|
51573
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientColorScheme),
|
|
51574
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientMode),
|
|
51575
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientSettings),
|
|
51576
|
+
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientTransparencyMode),
|
|
51577
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_114__.TileContentSource),
|
|
51578
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileFormat),
|
|
51579
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileHeader),
|
|
51580
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.TileMetadataReader),
|
|
51581
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.TileOptions),
|
|
51582
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileReadError),
|
|
51583
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileReadStatus),
|
|
51584
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.TreeFlags),
|
|
51585
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Tween),
|
|
51586
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Tweens),
|
|
51587
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_116__.TxnAction),
|
|
51588
|
+
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.TypeDefinition),
|
|
51589
|
+
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_14__.TypeOfChange),
|
|
51590
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.VerticalCRS),
|
|
51591
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.ViewDetails),
|
|
51592
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.ViewDetails3d),
|
|
51593
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_118__.ViewFlags),
|
|
51594
|
+
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_119__.ViewStoreRpc),
|
|
51595
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.WEB_RPC_CONSTANTS),
|
|
51596
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_147__.WebAppRpcLogging),
|
|
51597
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_145__.WebAppRpcProtocol),
|
|
51598
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_146__.WebAppRpcRequest),
|
|
51599
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_158__.WhiteOnWhiteReversalSettings),
|
|
51600
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_139__.WipRpcInterface),
|
|
51601
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.XyzRotation),
|
|
51602
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.aggregateLoad),
|
|
51603
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.bisectTileRange2d),
|
|
51604
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.bisectTileRange3d),
|
|
51605
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarAngles),
|
|
51606
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarDirection),
|
|
51607
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarDirectionFromAngles),
|
|
51608
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSunriseOrSunset),
|
|
51609
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.compareIModelTileTreeIds),
|
|
51610
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.computeChildTileProps),
|
|
51611
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.computeChildTileRanges),
|
|
51612
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.computeTileChordTolerance),
|
|
51613
|
+
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.decodeTileContentDescription),
|
|
51614
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.defaultTileOptions),
|
|
51615
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.getMaximumMajorTileFormatVersion),
|
|
51616
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_74__.getPullChangesIpcChannel),
|
|
51617
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_114__.getTileObjectReference),
|
|
51618
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.iModelTileTreeIdToString),
|
|
51619
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_70__.iTwinChannel),
|
|
51620
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.initializeRpcRequest),
|
|
51621
|
+
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_74__.ipcAppChannels),
|
|
51622
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.isKnownTileFormat),
|
|
51623
|
+
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.isPlacement2dProps),
|
|
51624
|
+
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.isPlacement3dProps),
|
|
51625
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.isPowerOfTwo),
|
|
51626
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.isValidImageSourceFormat),
|
|
51627
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_40__.mapToGeoServiceStatus),
|
|
51628
|
+
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__.nativeAppIpcStrings),
|
|
51629
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.nextHighestPowerOfTwo),
|
|
51630
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.nextPoint3d64FromByteStream),
|
|
51631
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.parseTileTreeIdAndContentId),
|
|
51632
|
+
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_28__.readElementMeshes),
|
|
51633
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.readTileContentDescription),
|
|
51634
|
+
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_73__.rpcOverIpcStrings),
|
|
51635
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.tileFormatFromNumber)
|
|
51616
51636
|
/* harmony export */ });
|
|
51617
51637
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
51618
51638
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
51619
51639
|
/* harmony import */ var _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./annotation/TextAnnotation */ "../../core/common/lib/esm/annotation/TextAnnotation.js");
|
|
51620
51640
|
/* harmony import */ var _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./annotation/TextBlock */ "../../core/common/lib/esm/annotation/TextBlock.js");
|
|
51621
51641
|
/* harmony import */ var _annotation_TextBlockGeometryProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./annotation/TextBlockGeometryProps */ "../../core/common/lib/esm/annotation/TextBlockGeometryProps.js");
|
|
51622
|
-
/* harmony import */ var
|
|
51623
|
-
/* harmony import */ var
|
|
51624
|
-
/* harmony import */ var
|
|
51625
|
-
/* harmony import */ var
|
|
51626
|
-
/* harmony import */ var
|
|
51627
|
-
/* harmony import */ var
|
|
51628
|
-
/* harmony import */ var
|
|
51629
|
-
/* harmony import */ var
|
|
51630
|
-
/* harmony import */ var
|
|
51631
|
-
/* harmony import */ var
|
|
51632
|
-
/* harmony import */ var
|
|
51633
|
-
/* harmony import */ var
|
|
51634
|
-
/* harmony import */ var
|
|
51635
|
-
/* harmony import */ var
|
|
51636
|
-
/* harmony import */ var
|
|
51637
|
-
/* harmony import */ var
|
|
51638
|
-
/* harmony import */ var
|
|
51639
|
-
/* harmony import */ var
|
|
51640
|
-
/* harmony import */ var
|
|
51641
|
-
/* harmony import */ var
|
|
51642
|
-
/* harmony import */ var
|
|
51643
|
-
/* harmony import */ var
|
|
51644
|
-
/* harmony import */ var
|
|
51645
|
-
/* harmony import */ var
|
|
51646
|
-
/* harmony import */ var
|
|
51647
|
-
/* harmony import */ var
|
|
51648
|
-
/* harmony import */ var
|
|
51649
|
-
/* harmony import */ var
|
|
51650
|
-
/* harmony import */ var
|
|
51651
|
-
/* harmony import */ var
|
|
51652
|
-
/* harmony import */ var
|
|
51653
|
-
/* harmony import */ var
|
|
51654
|
-
/* harmony import */ var
|
|
51655
|
-
/* harmony import */ var
|
|
51656
|
-
/* harmony import */ var
|
|
51657
|
-
/* harmony import */ var
|
|
51658
|
-
/* harmony import */ var
|
|
51659
|
-
/* harmony import */ var
|
|
51660
|
-
/* harmony import */ var
|
|
51661
|
-
/* harmony import */ var
|
|
51662
|
-
/* harmony import */ var
|
|
51663
|
-
/* harmony import */ var
|
|
51664
|
-
/* harmony import */ var
|
|
51665
|
-
/* harmony import */ var
|
|
51666
|
-
/* harmony import */ var
|
|
51667
|
-
/* harmony import */ var
|
|
51668
|
-
/* harmony import */ var
|
|
51669
|
-
/* harmony import */ var
|
|
51670
|
-
/* harmony import */ var
|
|
51671
|
-
/* harmony import */ var
|
|
51672
|
-
/* harmony import */ var
|
|
51673
|
-
/* harmony import */ var
|
|
51674
|
-
/* harmony import */ var
|
|
51675
|
-
/* harmony import */ var
|
|
51676
|
-
/* harmony import */ var
|
|
51677
|
-
/* harmony import */ var
|
|
51678
|
-
/* harmony import */ var
|
|
51679
|
-
/* harmony import */ var
|
|
51680
|
-
/* harmony import */ var
|
|
51681
|
-
/* harmony import */ var
|
|
51682
|
-
/* harmony import */ var
|
|
51683
|
-
/* harmony import */ var
|
|
51684
|
-
/* harmony import */ var
|
|
51685
|
-
/* harmony import */ var
|
|
51686
|
-
/* harmony import */ var
|
|
51687
|
-
/* harmony import */ var
|
|
51688
|
-
/* harmony import */ var
|
|
51689
|
-
/* harmony import */ var
|
|
51690
|
-
/* harmony import */ var
|
|
51691
|
-
/* harmony import */ var
|
|
51692
|
-
/* harmony import */ var
|
|
51693
|
-
/* harmony import */ var
|
|
51694
|
-
/* harmony import */ var
|
|
51695
|
-
/* harmony import */ var
|
|
51696
|
-
/* harmony import */ var
|
|
51697
|
-
/* harmony import */ var
|
|
51698
|
-
/* harmony import */ var
|
|
51699
|
-
/* harmony import */ var
|
|
51700
|
-
/* harmony import */ var
|
|
51701
|
-
/* harmony import */ var
|
|
51702
|
-
/* harmony import */ var
|
|
51703
|
-
/* harmony import */ var
|
|
51704
|
-
/* harmony import */ var
|
|
51705
|
-
/* harmony import */ var
|
|
51706
|
-
/* harmony import */ var
|
|
51707
|
-
/* harmony import */ var
|
|
51708
|
-
/* harmony import */ var
|
|
51709
|
-
/* harmony import */ var
|
|
51710
|
-
/* harmony import */ var
|
|
51711
|
-
/* harmony import */ var
|
|
51712
|
-
/* harmony import */ var
|
|
51713
|
-
/* harmony import */ var
|
|
51714
|
-
/* harmony import */ var
|
|
51715
|
-
/* harmony import */ var
|
|
51716
|
-
/* harmony import */ var
|
|
51717
|
-
/* harmony import */ var
|
|
51718
|
-
/* harmony import */ var
|
|
51719
|
-
/* harmony import */ var
|
|
51720
|
-
/* harmony import */ var
|
|
51721
|
-
/* harmony import */ var
|
|
51722
|
-
/* harmony import */ var
|
|
51723
|
-
/* harmony import */ var
|
|
51724
|
-
/* harmony import */ var
|
|
51725
|
-
/* harmony import */ var
|
|
51726
|
-
/* harmony import */ var
|
|
51727
|
-
/* harmony import */ var
|
|
51728
|
-
/* harmony import */ var
|
|
51729
|
-
/* harmony import */ var
|
|
51730
|
-
/* harmony import */ var
|
|
51731
|
-
/* harmony import */ var
|
|
51732
|
-
/* harmony import */ var
|
|
51733
|
-
/* harmony import */ var
|
|
51734
|
-
/* harmony import */ var
|
|
51735
|
-
/* harmony import */ var
|
|
51736
|
-
/* harmony import */ var
|
|
51737
|
-
/* harmony import */ var
|
|
51738
|
-
/* harmony import */ var
|
|
51739
|
-
/* harmony import */ var
|
|
51740
|
-
/* harmony import */ var
|
|
51741
|
-
/* harmony import */ var
|
|
51742
|
-
/* harmony import */ var
|
|
51743
|
-
/* harmony import */ var
|
|
51744
|
-
/* harmony import */ var
|
|
51745
|
-
/* harmony import */ var
|
|
51746
|
-
/* harmony import */ var
|
|
51747
|
-
/* harmony import */ var
|
|
51748
|
-
/* harmony import */ var
|
|
51749
|
-
/* harmony import */ var
|
|
51750
|
-
/* harmony import */ var
|
|
51751
|
-
/* harmony import */ var
|
|
51752
|
-
/* harmony import */ var
|
|
51753
|
-
/* harmony import */ var
|
|
51754
|
-
/* harmony import */ var
|
|
51755
|
-
/* harmony import */ var
|
|
51756
|
-
/* harmony import */ var
|
|
51757
|
-
/* harmony import */ var
|
|
51758
|
-
/* harmony import */ var
|
|
51759
|
-
/* harmony import */ var
|
|
51760
|
-
/* harmony import */ var
|
|
51761
|
-
/* harmony import */ var
|
|
51762
|
-
/* harmony import */ var
|
|
51763
|
-
/* harmony import */ var
|
|
51764
|
-
/* harmony import */ var
|
|
51765
|
-
/* harmony import */ var
|
|
51766
|
-
/* harmony import */ var
|
|
51767
|
-
/* harmony import */ var
|
|
51768
|
-
/* harmony import */ var
|
|
51769
|
-
/* harmony import */ var
|
|
51770
|
-
/* harmony import */ var
|
|
51771
|
-
/* harmony import */ var
|
|
51772
|
-
/* harmony import */ var
|
|
51773
|
-
/* harmony import */ var
|
|
51774
|
-
/* harmony import */ var
|
|
51642
|
+
/* harmony import */ var _annotation_TextBlockLayoutResult__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./annotation/TextBlockLayoutResult */ "../../core/common/lib/esm/annotation/TextBlockLayoutResult.js");
|
|
51643
|
+
/* harmony import */ var _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./annotation/TextStyle */ "../../core/common/lib/esm/annotation/TextStyle.js");
|
|
51644
|
+
/* harmony import */ var _Atmosphere__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./Atmosphere */ "../../core/common/lib/esm/Atmosphere.js");
|
|
51645
|
+
/* harmony import */ var _AuthorizationClient__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./AuthorizationClient */ "../../core/common/lib/esm/AuthorizationClient.js");
|
|
51646
|
+
/* harmony import */ var _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./BackgroundMapProvider */ "../../core/common/lib/esm/BackgroundMapProvider.js");
|
|
51647
|
+
/* harmony import */ var _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./BackgroundMapSettings */ "../../core/common/lib/esm/BackgroundMapSettings.js");
|
|
51648
|
+
/* harmony import */ var _Base64EncodedString__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Base64EncodedString */ "../../core/common/lib/esm/Base64EncodedString.js");
|
|
51649
|
+
/* harmony import */ var _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./BriefcaseTypes */ "../../core/common/lib/esm/BriefcaseTypes.js");
|
|
51650
|
+
/* harmony import */ var _Camera__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./Camera */ "../../core/common/lib/esm/Camera.js");
|
|
51651
|
+
/* harmony import */ var _ChangedElements__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./ChangedElements */ "../../core/common/lib/esm/ChangedElements.js");
|
|
51652
|
+
/* harmony import */ var _ChangedEntities__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ChangedEntities */ "../../core/common/lib/esm/ChangedEntities.js");
|
|
51653
|
+
/* harmony import */ var _ChangesetProps__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ChangesetProps */ "../../core/common/lib/esm/ChangesetProps.js");
|
|
51654
|
+
/* harmony import */ var _ClipStyle__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./ClipStyle */ "../../core/common/lib/esm/ClipStyle.js");
|
|
51655
|
+
/* harmony import */ var _Code__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./Code */ "../../core/common/lib/esm/Code.js");
|
|
51656
|
+
/* harmony import */ var _ColorByName__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ColorByName */ "../../core/common/lib/esm/ColorByName.js");
|
|
51657
|
+
/* harmony import */ var _ColorDef__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ColorDef */ "../../core/common/lib/esm/ColorDef.js");
|
|
51658
|
+
/* harmony import */ var _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./CommonLoggerCategory */ "../../core/common/lib/esm/CommonLoggerCategory.js");
|
|
51659
|
+
/* harmony import */ var _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ContextRealityModel */ "../../core/common/lib/esm/ContextRealityModel.js");
|
|
51660
|
+
/* harmony import */ var _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./DisplayStyleSettings */ "../../core/common/lib/esm/DisplayStyleSettings.js");
|
|
51661
|
+
/* harmony import */ var _domains_FunctionalElementProps__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./domains/FunctionalElementProps */ "../../core/common/lib/esm/domains/FunctionalElementProps.js");
|
|
51662
|
+
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
51663
|
+
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
51664
|
+
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
51665
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
51666
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
51667
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
51668
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
51669
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
51670
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
51671
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
51672
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
51673
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
51674
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
51675
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
51676
|
+
/* harmony import */ var _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./GenericInstanceFilter */ "../../core/common/lib/esm/GenericInstanceFilter.js");
|
|
51677
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
51678
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
51679
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
51680
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
51681
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
51682
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
51683
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
51684
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
51685
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
51686
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
51687
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
51688
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
51689
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
51690
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
51691
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
51692
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
51693
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
51694
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
51695
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
51696
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
51697
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
51698
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
51699
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
51700
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
51701
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
51702
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
51703
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
51704
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
51705
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
51706
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
51707
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
51708
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
51709
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
51710
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
51711
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
51712
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
51713
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
51714
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
51715
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
51716
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
51717
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
51718
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
51719
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
51720
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
51721
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
51722
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
51723
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
51724
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
51725
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
51726
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
51727
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
51728
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
51729
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
51730
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
51731
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
51732
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
51733
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
51734
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
51735
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
51736
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
51737
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
51738
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
51739
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
51740
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
51741
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
51742
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
51743
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
51744
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
51745
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
51746
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
51747
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
51748
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
51749
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
51750
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
51751
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
51752
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
51753
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
51754
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
51755
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
51756
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
51757
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
51758
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
51759
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
51760
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
51761
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
51762
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
51763
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
51764
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
51765
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
51766
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
51767
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
51768
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
51769
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
51770
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
51771
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
51772
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
51773
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
51774
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
51775
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
51776
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
51777
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
51778
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
51779
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
51780
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
51781
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
51782
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
51783
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
51784
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
51785
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
51786
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
51787
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
51788
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
51789
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
51790
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
51791
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
51792
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
51793
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
51794
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
51795
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
51775
51796
|
/*---------------------------------------------------------------------------------------------
|
|
51776
51797
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
51777
51798
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -51932,6 +51953,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51932
51953
|
|
|
51933
51954
|
|
|
51934
51955
|
|
|
51956
|
+
|
|
51935
51957
|
|
|
51936
51958
|
|
|
51937
51959
|
/** @docs-package-description
|
|
@@ -290601,7 +290623,7 @@ class TestContext {
|
|
|
290601
290623
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
290602
290624
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
290603
290625
|
await core_frontend_1.NoRenderApp.startup({
|
|
290604
|
-
applicationVersion: "4.8.0-dev.
|
|
290626
|
+
applicationVersion: "4.8.0-dev.4",
|
|
290605
290627
|
applicationId: this.settings.gprid,
|
|
290606
290628
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
290607
290629
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -314594,7 +314616,7 @@ function __disposeResources(env) {
|
|
|
314594
314616
|
/***/ ((module) => {
|
|
314595
314617
|
|
|
314596
314618
|
"use strict";
|
|
314597
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.8.0-dev.
|
|
314619
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.8.0-dev.4","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 && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers","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","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/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-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -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 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.8.0-dev.4","@itwin/core-bentley":"workspace:^4.8.0-dev.4","@itwin/core-common":"workspace:^4.8.0-dev.4","@itwin/core-geometry":"workspace:^4.8.0-dev.4","@itwin/core-orbitgt":"workspace:^4.8.0-dev.4","@itwin/core-quantity":"workspace:^4.8.0-dev.4"},"//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":"^4.0.2","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^10.0.6","@types/sinon":"^17.0.2","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.3.10","chai-as-promised":"^7.1.1","cpx2":"^3.0.0","eslint":"^8.56.0","glob":"^10.3.12","mocha":"^10.2.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^17.0.1","source-map-loader":"^4.0.0","typescript":"~5.3.3","typemoq":"^2.1.0","webpack":"^5.76.0"},"//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/cloud-agnostic-core":"^2.1.0","@itwin/object-storage-core":"^2.2.2","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","meshoptimizer":"~0.20.0","wms-capabilities":"0.4.0"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"}}');
|
|
314598
314620
|
|
|
314599
314621
|
/***/ }),
|
|
314600
314622
|
|