@itwin/ecschema-rpcinterface-tests 4.8.0-dev.2 → 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 +562 -540
- 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 +15 -15
|
@@ -44390,9 +44390,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44390
44390
|
* [TextAnnotation2d]($backend) and [TextAnnotation3d]($backend) elements store a single TextAnnotation from which their geometric representation is generated.
|
|
44391
44391
|
* Other types of elements may store multiple TextAnnotations, positioned relative to one another.
|
|
44392
44392
|
* The annotation's position and orientation relative to the host element's [Placement]($common) is determined as follows:
|
|
44393
|
-
* - First,
|
|
44394
|
-
*
|
|
44395
|
-
*
|
|
44393
|
+
* - First, a bounding box is computed enclosing the contents of the [[textBlock].
|
|
44394
|
+
* - 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
|
|
44395
|
+
* edges, or in the center of the box.
|
|
44396
44396
|
* - The [[orientation]] is applied to rotate the box around the anchor point.
|
|
44397
44397
|
* - Finally, the [[offset]] is added to the anchor point to apply translation.
|
|
44398
44398
|
* @see [produceTextAnnotationGeometry]($backend) to decompose the annotation into a set of geometric primitives suitable for use with [[GeometryStreamBuilder.appendTextBlock]].
|
|
@@ -44447,37 +44447,37 @@ class TextAnnotation {
|
|
|
44447
44447
|
* The anchor point is computed as specified by this annotation's [[anchor]] setting. For example, if the text block is anchored
|
|
44448
44448
|
* at the bottom left, then the transform will be relative to the bottom-left corner of `textBlockExtents`.
|
|
44449
44449
|
* The text block will be rotated around the fixed anchor point according to [[orientation]], then the anchor point will be translated by [[offset]].
|
|
44450
|
-
* @param
|
|
44450
|
+
* @param boundingBox A box fully containing the [[textBlock]].
|
|
44451
44451
|
* @see [[computeAnchorPoint]] to compute the transform's anchor point.
|
|
44452
44452
|
*/
|
|
44453
|
-
computeTransform(
|
|
44454
|
-
const anchorPt = this.computeAnchorPoint(
|
|
44453
|
+
computeTransform(boundingBox) {
|
|
44454
|
+
const anchorPt = this.computeAnchorPoint(boundingBox);
|
|
44455
44455
|
const matrix = this.orientation.toMatrix3d();
|
|
44456
44456
|
const rotation = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Transform.createFixedPointAndMatrix(anchorPt, matrix);
|
|
44457
44457
|
const translation = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Transform.createTranslation(this.offset);
|
|
44458
44458
|
return translation.multiplyTransformTransform(rotation, rotation);
|
|
44459
44459
|
}
|
|
44460
44460
|
/** Compute the anchor point of this annotation as specified by [[anchor]].
|
|
44461
|
-
* @param
|
|
44461
|
+
* @param boundingBox A box fully containing the [[textBlock]].
|
|
44462
44462
|
* @see [[computeTransform]] to compute the transform relative to the anchor point.
|
|
44463
44463
|
*/
|
|
44464
|
-
computeAnchorPoint(
|
|
44465
|
-
let x =
|
|
44466
|
-
let y =
|
|
44464
|
+
computeAnchorPoint(boundingBox) {
|
|
44465
|
+
let x = boundingBox.low.x;
|
|
44466
|
+
let y = boundingBox.high.y;
|
|
44467
44467
|
switch (this.anchor.horizontal) {
|
|
44468
44468
|
case "center":
|
|
44469
|
-
x +=
|
|
44469
|
+
x += boundingBox.xLength() / 2;
|
|
44470
44470
|
break;
|
|
44471
44471
|
case "right":
|
|
44472
|
-
x +=
|
|
44472
|
+
x += boundingBox.xLength();
|
|
44473
44473
|
break;
|
|
44474
44474
|
}
|
|
44475
44475
|
switch (this.anchor.vertical) {
|
|
44476
44476
|
case "middle":
|
|
44477
|
-
y -=
|
|
44477
|
+
y -= boundingBox.yLength() / 2;
|
|
44478
44478
|
break;
|
|
44479
44479
|
case "bottom":
|
|
44480
|
-
y -=
|
|
44480
|
+
y -= boundingBox.yLength();
|
|
44481
44481
|
break;
|
|
44482
44482
|
}
|
|
44483
44483
|
return new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Point3d(x, y, 0);
|
|
@@ -44846,6 +44846,26 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44846
44846
|
|
|
44847
44847
|
|
|
44848
44848
|
|
|
44849
|
+
/***/ }),
|
|
44850
|
+
|
|
44851
|
+
/***/ "../../core/common/lib/esm/annotation/TextBlockLayoutResult.js":
|
|
44852
|
+
/*!*********************************************************************!*\
|
|
44853
|
+
!*** ../../core/common/lib/esm/annotation/TextBlockLayoutResult.js ***!
|
|
44854
|
+
\*********************************************************************/
|
|
44855
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
44856
|
+
|
|
44857
|
+
"use strict";
|
|
44858
|
+
__webpack_require__.r(__webpack_exports__);
|
|
44859
|
+
/*---------------------------------------------------------------------------------------------
|
|
44860
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
44861
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
44862
|
+
*--------------------------------------------------------------------------------------------*/
|
|
44863
|
+
/** @packageDocumentation
|
|
44864
|
+
* @module Annotation
|
|
44865
|
+
*/
|
|
44866
|
+
|
|
44867
|
+
|
|
44868
|
+
|
|
44849
44869
|
/***/ }),
|
|
44850
44870
|
|
|
44851
44871
|
/***/ "../../core/common/lib/esm/annotation/TextStyle.js":
|
|
@@ -44973,549 +44993,550 @@ class TextStyle {
|
|
|
44973
44993
|
"use strict";
|
|
44974
44994
|
__webpack_require__.r(__webpack_exports__);
|
|
44975
44995
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
44976
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
44977
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
44978
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
44996
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_41__.AdditionalTransform),
|
|
44997
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__.AffineTransform),
|
|
44998
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.AmbientLight),
|
|
44979
44999
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
44980
45000
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
44981
45001
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
44982
45002
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
44983
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
44984
|
-
/* harmony export */ "Atmosphere": () => (/* reexport safe */
|
|
44985
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
44986
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
44987
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
44988
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
44989
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
44990
|
-
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */
|
|
44991
|
-
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */
|
|
44992
|
-
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */
|
|
44993
|
-
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */
|
|
44994
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
44995
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
44996
|
-
/* harmony export */ "BatchType": () => (/* reexport safe */
|
|
44997
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
44998
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
44999
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
45000
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
45001
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
45002
|
-
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */
|
|
45003
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
45004
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
45005
|
-
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */
|
|
45006
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
45007
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
45008
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
45009
|
-
/* harmony export */ "Camera": () => (/* reexport safe */
|
|
45010
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
45011
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
45012
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
45013
|
-
/* harmony export */ "CesiumTerrainAssetId": () => (/* reexport safe */
|
|
45014
|
-
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */
|
|
45015
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
45016
|
-
/* harmony export */ "ChangedValueState": () => (/* reexport safe */
|
|
45017
|
-
/* harmony export */ "ChangesetType": () => (/* reexport safe */
|
|
45018
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
45019
|
-
/* harmony export */ "ClipIntersectionStyle": () => (/* reexport safe */
|
|
45020
|
-
/* harmony export */ "ClipStyle": () => (/* reexport safe */
|
|
45021
|
-
/* harmony export */ "Code": () => (/* reexport safe */
|
|
45022
|
-
/* harmony export */ "CodeScopeSpec": () => (/* reexport safe */
|
|
45023
|
-
/* harmony export */ "CodeSpec": () => (/* reexport safe */
|
|
45024
|
-
/* harmony export */ "ColorByName": () => (/* reexport safe */
|
|
45025
|
-
/* harmony export */ "ColorDef": () => (/* reexport safe */
|
|
45026
|
-
/* harmony export */ "ColorIndex": () => (/* reexport safe */
|
|
45027
|
-
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */
|
|
45028
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
45029
|
-
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */
|
|
45030
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
45031
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
45032
|
-
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */
|
|
45033
|
-
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */
|
|
45034
|
-
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */
|
|
45035
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
45036
|
-
/* harmony export */ "CutStyle": () => (/* reexport safe */
|
|
45037
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
45038
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
45039
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
45040
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
45041
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
45042
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
45043
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
45044
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
45045
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
45046
|
-
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */
|
|
45047
|
-
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */
|
|
45048
|
-
/* harmony export */ "DomainOptions": () => (/* reexport safe */
|
|
45049
|
-
/* harmony export */ "ECJsNames": () => (/* reexport safe */
|
|
45050
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
45051
|
-
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */
|
|
45052
|
-
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */
|
|
45053
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
45054
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
45055
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
45056
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
45057
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
45058
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
45059
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
45060
|
-
/* harmony export */ "EntityMetaData": () => (/* reexport safe */
|
|
45061
|
-
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */
|
|
45062
|
-
/* harmony export */ "Environment": () => (/* reexport safe */
|
|
45063
|
-
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */
|
|
45064
|
-
/* harmony export */ "Feature": () => (/* reexport safe */
|
|
45065
|
-
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */
|
|
45066
|
-
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */
|
|
45067
|
-
/* harmony export */ "FeatureIndex": () => (/* reexport safe */
|
|
45068
|
-
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */
|
|
45069
|
-
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */
|
|
45070
|
-
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */
|
|
45071
|
-
/* harmony export */ "FeatureTable": () => (/* reexport safe */
|
|
45072
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
45073
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
45074
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
45075
|
-
/* harmony export */ "FontMap": () => (/* reexport safe */
|
|
45076
|
-
/* harmony export */ "FontType": () => (/* reexport safe */
|
|
45003
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_42__.AreaPattern),
|
|
45004
|
+
/* harmony export */ "Atmosphere": () => (/* reexport safe */ _Atmosphere__WEBPACK_IMPORTED_MODULE_7__.Atmosphere),
|
|
45005
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_148__.B3dmHeader),
|
|
45006
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.BRepEntity),
|
|
45007
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__.BRepGeometryOperation),
|
|
45008
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BackendError),
|
|
45009
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.BackgroundFill),
|
|
45010
|
+
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_9__.BackgroundMapProvider),
|
|
45011
|
+
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_10__.BackgroundMapSettings),
|
|
45012
|
+
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_9__.BackgroundMapType),
|
|
45013
|
+
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_11__.Base64EncodedString),
|
|
45014
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__.BaseLayerSettings),
|
|
45015
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.BaseMapLayerSettings),
|
|
45016
|
+
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.BatchType),
|
|
45017
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_141__.BentleyCloudRpcConfiguration),
|
|
45018
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_141__.BentleyCloudRpcManager),
|
|
45019
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_142__.BentleyCloudRpcProtocol),
|
|
45020
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BentleyError),
|
|
45021
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BentleyStatus),
|
|
45022
|
+
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.BisCodeSpec),
|
|
45023
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.BlobOptionsBuilder),
|
|
45024
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_43__.BoundingSphere),
|
|
45025
|
+
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.BriefcaseIdValue),
|
|
45026
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BriefcaseStatus),
|
|
45027
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.CURRENT_INVOCATION),
|
|
45028
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.CURRENT_REQUEST),
|
|
45029
|
+
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_13__.Camera),
|
|
45030
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__.Carto2DDegrees),
|
|
45031
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_44__.Cartographic),
|
|
45032
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_44__.CartographicRange),
|
|
45033
|
+
/* harmony export */ "CesiumTerrainAssetId": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.CesiumTerrainAssetId),
|
|
45034
|
+
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ChangeOpCode),
|
|
45035
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ChangeSetStatus),
|
|
45036
|
+
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ChangedValueState),
|
|
45037
|
+
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_16__.ChangesetType),
|
|
45038
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ChannelConstraintError),
|
|
45039
|
+
/* harmony export */ "ClipIntersectionStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_17__.ClipIntersectionStyle),
|
|
45040
|
+
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_17__.ClipStyle),
|
|
45041
|
+
/* harmony export */ "Code": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.Code),
|
|
45042
|
+
/* harmony export */ "CodeScopeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.CodeScopeSpec),
|
|
45043
|
+
/* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.CodeSpec),
|
|
45044
|
+
/* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_19__.ColorByName),
|
|
45045
|
+
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_20__.ColorDef),
|
|
45046
|
+
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.ColorIndex),
|
|
45047
|
+
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_21__.CommonLoggerCategory),
|
|
45048
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_149__.CompositeTileHeader),
|
|
45049
|
+
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_32__.ConcreteEntityTypes),
|
|
45050
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentFlags),
|
|
45051
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentIdProvider),
|
|
45052
|
+
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModel),
|
|
45053
|
+
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModelProps),
|
|
45054
|
+
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModels),
|
|
45055
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.CurrentImdlVersion),
|
|
45056
|
+
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_17__.CutStyle),
|
|
45057
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbQueryError),
|
|
45058
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbRequestKind),
|
|
45059
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbResponseKind),
|
|
45060
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbResponseStatus),
|
|
45061
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.DbResult),
|
|
45062
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbValueFormat),
|
|
45063
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_93__.DefaultSupportedTypes),
|
|
45064
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_134__.DevToolsRpcInterface),
|
|
45065
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_134__.DevToolsStatsOptions),
|
|
45066
|
+
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__.DisplayStyle3dSettings),
|
|
45067
|
+
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__.DisplayStyleSettings),
|
|
45068
|
+
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.DomainOptions),
|
|
45069
|
+
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ECJsNames),
|
|
45070
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_87__.ECSqlReader),
|
|
45071
|
+
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ECSqlSystemProperty),
|
|
45072
|
+
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ECSqlValueType),
|
|
45073
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Easing),
|
|
45074
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_67__.EcefLocation),
|
|
45075
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.EdgeArgs),
|
|
45076
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__.ElementGeometry),
|
|
45077
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_89__.ElementGeometryChange),
|
|
45078
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__.ElementGeometryOpcode),
|
|
45079
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_77__.EmptyLocalization),
|
|
45080
|
+
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_31__.EntityMetaData),
|
|
45081
|
+
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_32__.EntityReferenceSet),
|
|
45082
|
+
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_33__.Environment),
|
|
45083
|
+
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.ExternalSourceAttachmentRole),
|
|
45084
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.Feature),
|
|
45085
|
+
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__.FeatureAppearance),
|
|
45086
|
+
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__.FeatureAppearanceProvider),
|
|
45087
|
+
/* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.FeatureIndex),
|
|
45088
|
+
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.FeatureIndexType),
|
|
45089
|
+
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_30__.FeatureOverrideType),
|
|
45090
|
+
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__.FeatureOverrides),
|
|
45091
|
+
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.FeatureTable),
|
|
45092
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.FeatureTableHeader),
|
|
45093
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.FillDisplay),
|
|
45094
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_60__.FillFlags),
|
|
45095
|
+
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_37__.FontMap),
|
|
45096
|
+
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_37__.FontType),
|
|
45077
45097
|
/* harmony export */ "FractionRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.FractionRun),
|
|
45078
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
45079
|
-
/* harmony export */ "Frustum": () => (/* reexport safe */
|
|
45080
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
45081
|
-
/* harmony export */ "GenericInstanceFilter": () => (/* reexport safe */
|
|
45082
|
-
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* reexport safe */
|
|
45083
|
-
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */
|
|
45084
|
-
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */
|
|
45085
|
-
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */
|
|
45086
|
-
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */
|
|
45087
|
-
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */
|
|
45088
|
-
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */
|
|
45089
|
-
/* harmony export */ "GeographicCRS": () => (/* reexport safe */
|
|
45090
|
-
/* harmony export */ "GeometryClass": () => (/* reexport safe */
|
|
45091
|
-
/* harmony export */ "GeometryParams": () => (/* reexport safe */
|
|
45092
|
-
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */
|
|
45093
|
-
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */
|
|
45094
|
-
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */
|
|
45095
|
-
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */
|
|
45096
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
45097
|
-
/* harmony export */ "GlobeMode": () => (/* reexport safe */
|
|
45098
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
45099
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
45100
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
45101
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
45102
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
45103
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
45104
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
45105
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
45106
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
45107
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
45108
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
45109
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
45110
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
45111
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
45112
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
45113
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
45114
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
45115
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
45116
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
45117
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
45118
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
45119
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
45120
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
45121
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
45122
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
45123
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
45124
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
45125
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
45126
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
45127
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
45128
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
45129
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
45130
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
45131
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
45132
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
45133
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
45134
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
45135
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
45136
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
45137
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
45138
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
45139
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
45140
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
45141
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
45142
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
45098
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.FresnelSettings),
|
|
45099
|
+
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.Frustum),
|
|
45100
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_47__.FrustumPlanes),
|
|
45101
|
+
/* harmony export */ "GenericInstanceFilter": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_39__.GenericInstanceFilter),
|
|
45102
|
+
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_39__.GenericInstanceFilterRuleValue),
|
|
45103
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_40__.GeoCoordStatus),
|
|
45104
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeocentricTransform),
|
|
45105
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeodeticDatum),
|
|
45106
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_49__.GeodeticEllipsoid),
|
|
45107
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeodeticTransform),
|
|
45108
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeodeticTransformPath),
|
|
45109
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.GeographicCRS),
|
|
45110
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.GeometryClass),
|
|
45111
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.GeometryParams),
|
|
45112
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.GeometryStreamBuilder),
|
|
45113
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.GeometryStreamFlags),
|
|
45114
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.GeometryStreamIterator),
|
|
45115
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_58__.GeometrySummaryVerbosity),
|
|
45116
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__.GlbHeader),
|
|
45117
|
+
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_10__.GlobeMode),
|
|
45118
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__.GltfV2ChunkTypes),
|
|
45119
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__.GltfVersions),
|
|
45120
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_59__.Gradient),
|
|
45121
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_60__.GraphicParams),
|
|
45122
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GridFileDefinition),
|
|
45123
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GridFileTransform),
|
|
45124
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.GridOrientationType),
|
|
45125
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_61__.GroundPlane),
|
|
45126
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_64__.HSLColor),
|
|
45127
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_65__.HSVColor),
|
|
45128
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_65__.HSVConstants),
|
|
45129
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_41__.Helmert2DWithZOffset),
|
|
45130
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.HemisphereLights),
|
|
45131
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_62__.HiddenLine),
|
|
45132
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_63__.Hilite),
|
|
45133
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.HorizontalCRS),
|
|
45134
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.HorizontalCRSExtent),
|
|
45135
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_152__.I3dmHeader),
|
|
45136
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_67__.IModel),
|
|
45137
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.IModelError),
|
|
45138
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_135__.IModelNotFoundResponse),
|
|
45139
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_135__.IModelReadRpcInterface),
|
|
45140
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.IModelStatus),
|
|
45141
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_136__.IModelTileRpcInterface),
|
|
45142
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_69__.IModelVersion),
|
|
45143
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.INSTANCE),
|
|
45144
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageBuffer),
|
|
45145
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageBufferFormat),
|
|
45146
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_51__.ImageGraphic),
|
|
45147
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_51__.ImageGraphicCorners),
|
|
45148
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.ImageMapLayerSettings),
|
|
45149
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageSource),
|
|
45150
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageSourceFormat),
|
|
45151
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.ImdlFlags),
|
|
45152
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.ImdlHeader),
|
|
45153
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__.InternetConnectivityStatus),
|
|
45154
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Interpolation),
|
|
45155
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_73__.IpcSession),
|
|
45156
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocket),
|
|
45157
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketBackend),
|
|
45158
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketFrontend),
|
|
45159
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketMessage),
|
|
45160
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketMessageType),
|
|
45161
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_72__.IpcWebSocketTransport),
|
|
45162
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.LightSettings),
|
|
45143
45163
|
/* harmony export */ "LineBreakRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.LineBreakRun),
|
|
45144
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
45145
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
45146
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
45147
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
45148
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
45149
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
45150
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
45151
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
45152
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
45153
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
45154
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
45155
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
45156
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
45157
|
-
/* harmony export */ "ModelFeature": () => (/* reexport safe */
|
|
45158
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
45159
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
45160
|
-
/* harmony export */ "MonochromeMode": () => (/* reexport safe */
|
|
45161
|
-
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */
|
|
45162
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
45163
|
-
/* harmony export */ "NonUniformColor": () => (/* reexport safe */
|
|
45164
|
-
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */
|
|
45165
|
-
/* harmony export */ "Npc": () => (/* reexport safe */
|
|
45166
|
-
/* harmony export */ "NpcCenter": () => (/* reexport safe */
|
|
45167
|
-
/* harmony export */ "NpcCorners": () => (/* reexport safe */
|
|
45168
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
45169
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
45170
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
45171
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
45172
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
45173
|
-
/* harmony export */ "PackedFeature": () => (/* reexport safe */
|
|
45174
|
-
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */
|
|
45175
|
-
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */
|
|
45164
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_76__.LinePixels),
|
|
45165
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_52__.LineStyle),
|
|
45166
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__.MapImagerySettings),
|
|
45167
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapLayerSettings),
|
|
45168
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapSubLayerSettings),
|
|
45169
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.MarshalingBinaryMarker),
|
|
45170
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_80__.MassPropertiesOperation),
|
|
45171
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshEdge),
|
|
45172
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshEdges),
|
|
45173
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshPolyline),
|
|
45174
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshPolylineList),
|
|
45175
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_82__.ModelClipGroup),
|
|
45176
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_82__.ModelClipGroups),
|
|
45177
|
+
/* harmony export */ "ModelFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.ModelFeature),
|
|
45178
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_89__.ModelGeometryChanges),
|
|
45179
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.ModelMapLayerSettings),
|
|
45180
|
+
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__.MonochromeMode),
|
|
45181
|
+
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.MultiModelPackedFeatureTable),
|
|
45182
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.NoContentError),
|
|
45183
|
+
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.NonUniformColor),
|
|
45184
|
+
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_81__.NormalMapFlags),
|
|
45185
|
+
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.Npc),
|
|
45186
|
+
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.NpcCenter),
|
|
45187
|
+
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.NpcCorners),
|
|
45188
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.OPERATION),
|
|
45189
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_85__.OctEncodedNormal),
|
|
45190
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_85__.OctEncodedNormalPair),
|
|
45191
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__.OverriddenBy),
|
|
45192
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.POLICY),
|
|
45193
|
+
/* harmony export */ "PackedFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.PackedFeature),
|
|
45194
|
+
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.PackedFeatureModelTable),
|
|
45195
|
+
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.PackedFeatureTable),
|
|
45176
45196
|
/* harmony export */ "Paragraph": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Paragraph),
|
|
45177
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
45178
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
45179
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
45180
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
45181
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
45182
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
45183
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
45184
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
45185
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
45186
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
45187
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
45188
|
-
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */
|
|
45189
|
-
/* harmony export */ "ProfileOptions": () => (/* reexport safe */
|
|
45190
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
45191
|
-
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */
|
|
45192
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
45193
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
45194
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
45195
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
45196
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
45197
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
45198
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
45199
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
45200
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
45201
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
45202
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
45203
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
45204
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
45205
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
45206
|
-
/* harmony export */ "QueryParamType": () => (/* reexport safe */
|
|
45207
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
45208
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
45209
|
-
/* harmony export */ "Rank": () => (/* reexport safe */
|
|
45210
|
-
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */
|
|
45211
|
-
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */
|
|
45212
|
-
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */
|
|
45213
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
45214
|
-
/* harmony export */ "RelatedElement": () => (/* reexport safe */
|
|
45215
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
45216
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
45217
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
45218
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
45219
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
45220
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
45221
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
45222
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
45223
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
45224
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
45225
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
45226
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
45227
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
45228
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
45229
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
45230
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
45231
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
45232
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
45233
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
45234
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
45235
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
45236
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
45237
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
45238
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
45239
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
45240
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
45241
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
45242
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
45243
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
45244
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
45245
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
45246
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
45247
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
45248
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
45249
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
45250
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
45251
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
45252
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
45253
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
45254
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
45255
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
45256
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
45257
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
45197
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_53__.Placement2d),
|
|
45198
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_53__.Placement3d),
|
|
45199
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_90__.PlanProjectionSettings),
|
|
45200
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__.PlanarClipMaskMode),
|
|
45201
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__.PlanarClipMaskPriority),
|
|
45202
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__.PlanarClipMaskSettings),
|
|
45203
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_154__.PntsHeader),
|
|
45204
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_94__.PointCloudDisplaySettings),
|
|
45205
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.PolylineEdgeArgs),
|
|
45206
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.PolylineTypeFlags),
|
|
45207
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.PositionalVectorTransform),
|
|
45208
|
+
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_31__.PrimitiveTypeCode),
|
|
45209
|
+
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.ProfileOptions),
|
|
45210
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__.Projection),
|
|
45211
|
+
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_31__.PropertyMetaData),
|
|
45212
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_87__.PropertyMetaDataMap),
|
|
45213
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QParams2d),
|
|
45214
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QParams3d),
|
|
45215
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2d),
|
|
45216
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2dBuffer),
|
|
45217
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2dBufferBuilder),
|
|
45218
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2dList),
|
|
45219
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3d),
|
|
45220
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3dBuffer),
|
|
45221
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3dBufferBuilder),
|
|
45222
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3dList),
|
|
45223
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.Quantization),
|
|
45224
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryBinder),
|
|
45225
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryOptionsBuilder),
|
|
45226
|
+
/* harmony export */ "QueryParamType": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryParamType),
|
|
45227
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryRowFormat),
|
|
45228
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.REGISTRY),
|
|
45229
|
+
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.Rank),
|
|
45230
|
+
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.RealityDataFormat),
|
|
45231
|
+
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.RealityDataProvider),
|
|
45232
|
+
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.RealityDataSourceKey),
|
|
45233
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_94__.RealityModelDisplaySettings),
|
|
45234
|
+
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.RelatedElement),
|
|
45235
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_96__.RenderMaterial),
|
|
45236
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_118__.RenderMode),
|
|
45237
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_97__.RenderSchedule),
|
|
45238
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_98__.RenderTexture),
|
|
45239
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.ResponseLike),
|
|
45240
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_99__.RgbColor),
|
|
45241
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcConfiguration),
|
|
45242
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcContentType),
|
|
45243
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcControlChannel),
|
|
45244
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcControlResponse),
|
|
45245
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcDefaultConfiguration),
|
|
45246
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcDirectProtocol),
|
|
45247
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcDirectRequest),
|
|
45248
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcEndpoint),
|
|
45249
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_140__.RpcInterface),
|
|
45250
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_122__.RpcInvocation),
|
|
45251
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_100__.RpcManager),
|
|
45252
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.RpcMarshaling),
|
|
45253
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_144__.RpcMultipart),
|
|
45254
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcNotFoundResponse),
|
|
45255
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_143__.RpcOpenAPIDescription),
|
|
45256
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__.RpcOperation),
|
|
45257
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__.RpcOperationPolicy),
|
|
45258
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_126__.RpcPendingQueue),
|
|
45259
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcPendingResponse),
|
|
45260
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcProtocol),
|
|
45261
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcProtocolEvent),
|
|
45262
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcProtocolVersion),
|
|
45263
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushChannel),
|
|
45264
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushConnection),
|
|
45265
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushService),
|
|
45266
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushSubscription),
|
|
45267
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushTransport),
|
|
45268
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.RpcRegistry),
|
|
45269
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.RpcRequest),
|
|
45270
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcRequestEvent),
|
|
45271
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcRequestFulfillment),
|
|
45272
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcRequestStatus),
|
|
45273
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcResponseCacheControl),
|
|
45274
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcRoutingMap),
|
|
45275
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_131__.RpcRoutingToken),
|
|
45276
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.RpcSerializedValue),
|
|
45277
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_123__.RpcSessionInvocation),
|
|
45258
45278
|
/* harmony export */ "Run": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Run),
|
|
45259
|
-
/* harmony export */ "SchemaState": () => (/* reexport safe */
|
|
45260
|
-
/* harmony export */ "SectionType": () => (/* reexport safe */
|
|
45261
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
45262
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
45263
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
45264
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
45265
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
45266
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
45267
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
45268
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
45269
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
45270
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
45271
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
45272
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
45273
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
45274
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
45275
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
45276
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
45277
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
45278
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
45279
|
-
/* harmony export */ "SyncMode": () => (/* reexport safe */
|
|
45280
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
45281
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
45282
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
45279
|
+
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.SchemaState),
|
|
45280
|
+
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.SectionType),
|
|
45281
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ServerError),
|
|
45282
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ServerTimeoutError),
|
|
45283
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.SilhouetteEdgeArgs),
|
|
45284
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyBox),
|
|
45285
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyBoxImageType),
|
|
45286
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyCube),
|
|
45287
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyGradient),
|
|
45288
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkySphere),
|
|
45289
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_137__.SnapshotIModelRpcInterface),
|
|
45290
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.SolarLight),
|
|
45291
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_105__.SolarShadowSettings),
|
|
45292
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifier),
|
|
45293
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierFlags),
|
|
45294
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierInsideDisplay),
|
|
45295
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierOutsideDisplay),
|
|
45296
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifiers),
|
|
45297
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_107__.SubCategoryAppearance),
|
|
45298
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_108__.SubCategoryOverride),
|
|
45299
|
+
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.SyncMode),
|
|
45300
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.TerrainHeightOriginMode),
|
|
45301
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.TerrainSettings),
|
|
45302
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_138__.TestRpcManager),
|
|
45283
45303
|
/* harmony export */ "TextAnnotation": () => (/* reexport safe */ _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__.TextAnnotation),
|
|
45284
45304
|
/* harmony export */ "TextBlock": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlock),
|
|
45285
45305
|
/* harmony export */ "TextBlockComponent": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlockComponent),
|
|
45286
45306
|
/* harmony export */ "TextRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextRun),
|
|
45287
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
45288
|
-
/* harmony export */ "TextStyle": () => (/* reexport safe */
|
|
45289
|
-
/* harmony export */ "TextStyleSettings": () => (/* reexport safe */
|
|
45290
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
45291
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
45292
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
45293
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
45294
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
45295
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
45296
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
45297
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
45298
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
45299
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
45300
|
-
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */
|
|
45301
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
45302
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
45303
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
45304
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
45305
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
45306
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
45307
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
45308
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
45309
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
45310
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
45311
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
45312
|
-
/* harmony export */ "TypeDefinition": () => (/* reexport safe */
|
|
45313
|
-
/* harmony export */ "TypeOfChange": () => (/* reexport safe */
|
|
45314
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
45315
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
45316
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
45317
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
45318
|
-
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */
|
|
45319
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
45320
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
45321
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
45322
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
45323
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
45324
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
45325
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
45326
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
45327
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
45328
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
45329
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
45330
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
45331
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
45332
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
45333
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
45334
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
45335
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
45336
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
45337
|
-
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */
|
|
45338
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
45339
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
45340
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
45341
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
45342
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
45343
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
45344
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
45345
|
-
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */
|
|
45346
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
45347
|
-
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */
|
|
45348
|
-
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */
|
|
45349
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
45350
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
45351
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
45352
|
-
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */
|
|
45353
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
45354
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
45355
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
45356
|
-
/* harmony export */ "readElementMeshes": () => (/* reexport safe */
|
|
45357
|
-
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */
|
|
45358
|
-
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */
|
|
45359
|
-
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */
|
|
45307
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_55__.TextString),
|
|
45308
|
+
/* harmony export */ "TextStyle": () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_6__.TextStyle),
|
|
45309
|
+
/* harmony export */ "TextStyleSettings": () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_6__.TextStyleSettings),
|
|
45310
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_81__.TextureMapUnits),
|
|
45311
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_110__.TextureMapping),
|
|
45312
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_111__.TextureTransparency),
|
|
45313
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplay),
|
|
45314
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplayMode),
|
|
45315
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplaySensor),
|
|
45316
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplaySensorSettings),
|
|
45317
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientColorScheme),
|
|
45318
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientMode),
|
|
45319
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientSettings),
|
|
45320
|
+
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientTransparencyMode),
|
|
45321
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_114__.TileContentSource),
|
|
45322
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileFormat),
|
|
45323
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileHeader),
|
|
45324
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.TileMetadataReader),
|
|
45325
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.TileOptions),
|
|
45326
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileReadError),
|
|
45327
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileReadStatus),
|
|
45328
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.TreeFlags),
|
|
45329
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Tween),
|
|
45330
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Tweens),
|
|
45331
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_116__.TxnAction),
|
|
45332
|
+
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.TypeDefinition),
|
|
45333
|
+
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_14__.TypeOfChange),
|
|
45334
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.VerticalCRS),
|
|
45335
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.ViewDetails),
|
|
45336
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.ViewDetails3d),
|
|
45337
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_118__.ViewFlags),
|
|
45338
|
+
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_119__.ViewStoreRpc),
|
|
45339
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.WEB_RPC_CONSTANTS),
|
|
45340
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_147__.WebAppRpcLogging),
|
|
45341
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_145__.WebAppRpcProtocol),
|
|
45342
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_146__.WebAppRpcRequest),
|
|
45343
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_158__.WhiteOnWhiteReversalSettings),
|
|
45344
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_139__.WipRpcInterface),
|
|
45345
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.XyzRotation),
|
|
45346
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.aggregateLoad),
|
|
45347
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.bisectTileRange2d),
|
|
45348
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.bisectTileRange3d),
|
|
45349
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarAngles),
|
|
45350
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarDirection),
|
|
45351
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarDirectionFromAngles),
|
|
45352
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSunriseOrSunset),
|
|
45353
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.compareIModelTileTreeIds),
|
|
45354
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.computeChildTileProps),
|
|
45355
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.computeChildTileRanges),
|
|
45356
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.computeTileChordTolerance),
|
|
45357
|
+
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.decodeTileContentDescription),
|
|
45358
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.defaultTileOptions),
|
|
45359
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.getMaximumMajorTileFormatVersion),
|
|
45360
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_74__.getPullChangesIpcChannel),
|
|
45361
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_114__.getTileObjectReference),
|
|
45362
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.iModelTileTreeIdToString),
|
|
45363
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_70__.iTwinChannel),
|
|
45364
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.initializeRpcRequest),
|
|
45365
|
+
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_74__.ipcAppChannels),
|
|
45366
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.isKnownTileFormat),
|
|
45367
|
+
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.isPlacement2dProps),
|
|
45368
|
+
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.isPlacement3dProps),
|
|
45369
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.isPowerOfTwo),
|
|
45370
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.isValidImageSourceFormat),
|
|
45371
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_40__.mapToGeoServiceStatus),
|
|
45372
|
+
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__.nativeAppIpcStrings),
|
|
45373
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.nextHighestPowerOfTwo),
|
|
45374
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.nextPoint3d64FromByteStream),
|
|
45375
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.parseTileTreeIdAndContentId),
|
|
45376
|
+
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_28__.readElementMeshes),
|
|
45377
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.readTileContentDescription),
|
|
45378
|
+
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_73__.rpcOverIpcStrings),
|
|
45379
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.tileFormatFromNumber)
|
|
45360
45380
|
/* harmony export */ });
|
|
45361
45381
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
45362
45382
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
45363
45383
|
/* harmony import */ var _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./annotation/TextAnnotation */ "../../core/common/lib/esm/annotation/TextAnnotation.js");
|
|
45364
45384
|
/* harmony import */ var _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./annotation/TextBlock */ "../../core/common/lib/esm/annotation/TextBlock.js");
|
|
45365
45385
|
/* harmony import */ var _annotation_TextBlockGeometryProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./annotation/TextBlockGeometryProps */ "../../core/common/lib/esm/annotation/TextBlockGeometryProps.js");
|
|
45366
|
-
/* harmony import */ var
|
|
45367
|
-
/* harmony import */ var
|
|
45368
|
-
/* harmony import */ var
|
|
45369
|
-
/* harmony import */ var
|
|
45370
|
-
/* harmony import */ var
|
|
45371
|
-
/* harmony import */ var
|
|
45372
|
-
/* harmony import */ var
|
|
45373
|
-
/* harmony import */ var
|
|
45374
|
-
/* harmony import */ var
|
|
45375
|
-
/* harmony import */ var
|
|
45376
|
-
/* harmony import */ var
|
|
45377
|
-
/* harmony import */ var
|
|
45378
|
-
/* harmony import */ var
|
|
45379
|
-
/* harmony import */ var
|
|
45380
|
-
/* harmony import */ var
|
|
45381
|
-
/* harmony import */ var
|
|
45382
|
-
/* harmony import */ var
|
|
45383
|
-
/* harmony import */ var
|
|
45384
|
-
/* harmony import */ var
|
|
45385
|
-
/* harmony import */ var
|
|
45386
|
-
/* harmony import */ var
|
|
45387
|
-
/* harmony import */ var
|
|
45388
|
-
/* harmony import */ var
|
|
45389
|
-
/* harmony import */ var
|
|
45390
|
-
/* harmony import */ var
|
|
45391
|
-
/* harmony import */ var
|
|
45392
|
-
/* harmony import */ var
|
|
45393
|
-
/* harmony import */ var
|
|
45394
|
-
/* harmony import */ var
|
|
45395
|
-
/* harmony import */ var
|
|
45396
|
-
/* harmony import */ var
|
|
45397
|
-
/* harmony import */ var
|
|
45398
|
-
/* harmony import */ var
|
|
45399
|
-
/* harmony import */ var
|
|
45400
|
-
/* harmony import */ var
|
|
45401
|
-
/* harmony import */ var
|
|
45402
|
-
/* harmony import */ var
|
|
45403
|
-
/* harmony import */ var
|
|
45404
|
-
/* harmony import */ var
|
|
45405
|
-
/* harmony import */ var
|
|
45406
|
-
/* harmony import */ var
|
|
45407
|
-
/* harmony import */ var
|
|
45408
|
-
/* harmony import */ var
|
|
45409
|
-
/* harmony import */ var
|
|
45410
|
-
/* harmony import */ var
|
|
45411
|
-
/* harmony import */ var
|
|
45412
|
-
/* harmony import */ var
|
|
45413
|
-
/* harmony import */ var
|
|
45414
|
-
/* harmony import */ var
|
|
45415
|
-
/* harmony import */ var
|
|
45416
|
-
/* harmony import */ var
|
|
45417
|
-
/* harmony import */ var
|
|
45418
|
-
/* harmony import */ var
|
|
45419
|
-
/* harmony import */ var
|
|
45420
|
-
/* harmony import */ var
|
|
45421
|
-
/* harmony import */ var
|
|
45422
|
-
/* harmony import */ var
|
|
45423
|
-
/* harmony import */ var
|
|
45424
|
-
/* harmony import */ var
|
|
45425
|
-
/* harmony import */ var
|
|
45426
|
-
/* harmony import */ var
|
|
45427
|
-
/* harmony import */ var
|
|
45428
|
-
/* harmony import */ var
|
|
45429
|
-
/* harmony import */ var
|
|
45430
|
-
/* harmony import */ var
|
|
45431
|
-
/* harmony import */ var
|
|
45432
|
-
/* harmony import */ var
|
|
45433
|
-
/* harmony import */ var
|
|
45434
|
-
/* harmony import */ var
|
|
45435
|
-
/* harmony import */ var
|
|
45436
|
-
/* harmony import */ var
|
|
45437
|
-
/* harmony import */ var
|
|
45438
|
-
/* harmony import */ var
|
|
45439
|
-
/* harmony import */ var
|
|
45440
|
-
/* harmony import */ var
|
|
45441
|
-
/* harmony import */ var
|
|
45442
|
-
/* harmony import */ var
|
|
45443
|
-
/* harmony import */ var
|
|
45444
|
-
/* harmony import */ var
|
|
45445
|
-
/* harmony import */ var
|
|
45446
|
-
/* harmony import */ var
|
|
45447
|
-
/* harmony import */ var
|
|
45448
|
-
/* harmony import */ var
|
|
45449
|
-
/* harmony import */ var
|
|
45450
|
-
/* harmony import */ var
|
|
45451
|
-
/* harmony import */ var
|
|
45452
|
-
/* harmony import */ var
|
|
45453
|
-
/* harmony import */ var
|
|
45454
|
-
/* harmony import */ var
|
|
45455
|
-
/* harmony import */ var
|
|
45456
|
-
/* harmony import */ var
|
|
45457
|
-
/* harmony import */ var
|
|
45458
|
-
/* harmony import */ var
|
|
45459
|
-
/* harmony import */ var
|
|
45460
|
-
/* harmony import */ var
|
|
45461
|
-
/* harmony import */ var
|
|
45462
|
-
/* harmony import */ var
|
|
45463
|
-
/* harmony import */ var
|
|
45464
|
-
/* harmony import */ var
|
|
45465
|
-
/* harmony import */ var
|
|
45466
|
-
/* harmony import */ var
|
|
45467
|
-
/* harmony import */ var
|
|
45468
|
-
/* harmony import */ var
|
|
45469
|
-
/* harmony import */ var
|
|
45470
|
-
/* harmony import */ var
|
|
45471
|
-
/* harmony import */ var
|
|
45472
|
-
/* harmony import */ var
|
|
45473
|
-
/* harmony import */ var
|
|
45474
|
-
/* harmony import */ var
|
|
45475
|
-
/* harmony import */ var
|
|
45476
|
-
/* harmony import */ var
|
|
45477
|
-
/* harmony import */ var
|
|
45478
|
-
/* harmony import */ var
|
|
45479
|
-
/* harmony import */ var
|
|
45480
|
-
/* harmony import */ var
|
|
45481
|
-
/* harmony import */ var
|
|
45482
|
-
/* harmony import */ var
|
|
45483
|
-
/* harmony import */ var
|
|
45484
|
-
/* harmony import */ var
|
|
45485
|
-
/* harmony import */ var
|
|
45486
|
-
/* harmony import */ var
|
|
45487
|
-
/* harmony import */ var
|
|
45488
|
-
/* harmony import */ var
|
|
45489
|
-
/* harmony import */ var
|
|
45490
|
-
/* harmony import */ var
|
|
45491
|
-
/* harmony import */ var
|
|
45492
|
-
/* harmony import */ var
|
|
45493
|
-
/* harmony import */ var
|
|
45494
|
-
/* harmony import */ var
|
|
45495
|
-
/* harmony import */ var
|
|
45496
|
-
/* harmony import */ var
|
|
45497
|
-
/* harmony import */ var
|
|
45498
|
-
/* harmony import */ var
|
|
45499
|
-
/* harmony import */ var
|
|
45500
|
-
/* harmony import */ var
|
|
45501
|
-
/* harmony import */ var
|
|
45502
|
-
/* harmony import */ var
|
|
45503
|
-
/* harmony import */ var
|
|
45504
|
-
/* harmony import */ var
|
|
45505
|
-
/* harmony import */ var
|
|
45506
|
-
/* harmony import */ var
|
|
45507
|
-
/* harmony import */ var
|
|
45508
|
-
/* harmony import */ var
|
|
45509
|
-
/* harmony import */ var
|
|
45510
|
-
/* harmony import */ var
|
|
45511
|
-
/* harmony import */ var
|
|
45512
|
-
/* harmony import */ var
|
|
45513
|
-
/* harmony import */ var
|
|
45514
|
-
/* harmony import */ var
|
|
45515
|
-
/* harmony import */ var
|
|
45516
|
-
/* harmony import */ var
|
|
45517
|
-
/* harmony import */ var
|
|
45518
|
-
/* harmony import */ var
|
|
45386
|
+
/* harmony import */ var _annotation_TextBlockLayoutResult__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./annotation/TextBlockLayoutResult */ "../../core/common/lib/esm/annotation/TextBlockLayoutResult.js");
|
|
45387
|
+
/* harmony import */ var _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./annotation/TextStyle */ "../../core/common/lib/esm/annotation/TextStyle.js");
|
|
45388
|
+
/* harmony import */ var _Atmosphere__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./Atmosphere */ "../../core/common/lib/esm/Atmosphere.js");
|
|
45389
|
+
/* harmony import */ var _AuthorizationClient__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./AuthorizationClient */ "../../core/common/lib/esm/AuthorizationClient.js");
|
|
45390
|
+
/* harmony import */ var _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./BackgroundMapProvider */ "../../core/common/lib/esm/BackgroundMapProvider.js");
|
|
45391
|
+
/* harmony import */ var _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./BackgroundMapSettings */ "../../core/common/lib/esm/BackgroundMapSettings.js");
|
|
45392
|
+
/* harmony import */ var _Base64EncodedString__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Base64EncodedString */ "../../core/common/lib/esm/Base64EncodedString.js");
|
|
45393
|
+
/* harmony import */ var _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./BriefcaseTypes */ "../../core/common/lib/esm/BriefcaseTypes.js");
|
|
45394
|
+
/* harmony import */ var _Camera__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./Camera */ "../../core/common/lib/esm/Camera.js");
|
|
45395
|
+
/* harmony import */ var _ChangedElements__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./ChangedElements */ "../../core/common/lib/esm/ChangedElements.js");
|
|
45396
|
+
/* harmony import */ var _ChangedEntities__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ChangedEntities */ "../../core/common/lib/esm/ChangedEntities.js");
|
|
45397
|
+
/* harmony import */ var _ChangesetProps__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ChangesetProps */ "../../core/common/lib/esm/ChangesetProps.js");
|
|
45398
|
+
/* harmony import */ var _ClipStyle__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./ClipStyle */ "../../core/common/lib/esm/ClipStyle.js");
|
|
45399
|
+
/* harmony import */ var _Code__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./Code */ "../../core/common/lib/esm/Code.js");
|
|
45400
|
+
/* harmony import */ var _ColorByName__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ColorByName */ "../../core/common/lib/esm/ColorByName.js");
|
|
45401
|
+
/* harmony import */ var _ColorDef__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ColorDef */ "../../core/common/lib/esm/ColorDef.js");
|
|
45402
|
+
/* harmony import */ var _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./CommonLoggerCategory */ "../../core/common/lib/esm/CommonLoggerCategory.js");
|
|
45403
|
+
/* harmony import */ var _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ContextRealityModel */ "../../core/common/lib/esm/ContextRealityModel.js");
|
|
45404
|
+
/* harmony import */ var _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./DisplayStyleSettings */ "../../core/common/lib/esm/DisplayStyleSettings.js");
|
|
45405
|
+
/* harmony import */ var _domains_FunctionalElementProps__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./domains/FunctionalElementProps */ "../../core/common/lib/esm/domains/FunctionalElementProps.js");
|
|
45406
|
+
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
45407
|
+
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
45408
|
+
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
45409
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
45410
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
45411
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
45412
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
45413
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
45414
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
45415
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
45416
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
45417
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
45418
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
45419
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
45420
|
+
/* harmony import */ var _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./GenericInstanceFilter */ "../../core/common/lib/esm/GenericInstanceFilter.js");
|
|
45421
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
45422
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
45423
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
45424
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
45425
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
45426
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
45427
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
45428
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
45429
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
45430
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
45431
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
45432
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
45433
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
45434
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
45435
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
45436
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
45437
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
45438
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
45439
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
45440
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
45441
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
45442
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
45443
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
45444
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
45445
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
45446
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
45447
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
45448
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
45449
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
45450
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
45451
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
45452
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
45453
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
45454
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
45455
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
45456
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
45457
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
45458
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
45459
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
45460
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
45461
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
45462
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
45463
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
45464
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
45465
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
45466
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
45467
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
45468
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
45469
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
45470
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
45471
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
45472
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
45473
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
45474
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
45475
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
45476
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
45477
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
45478
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
45479
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
45480
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
45481
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
45482
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
45483
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
45484
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
45485
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
45486
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
45487
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
45488
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
45489
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
45490
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
45491
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
45492
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
45493
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
45494
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
45495
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
45496
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
45497
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
45498
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
45499
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
45500
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
45501
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
45502
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
45503
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
45504
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
45505
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
45506
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
45507
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
45508
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
45509
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
45510
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
45511
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
45512
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
45513
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
45514
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
45515
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
45516
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
45517
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
45518
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
45519
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
45520
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
45521
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
45522
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
45523
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
45524
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
45525
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
45526
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
45527
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
45528
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
45529
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
45530
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
45531
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
45532
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
45533
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
45534
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
45535
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
45536
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
45537
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
45538
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
45539
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
45519
45540
|
/*---------------------------------------------------------------------------------------------
|
|
45520
45541
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
45521
45542
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -45676,6 +45697,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45676
45697
|
|
|
45677
45698
|
|
|
45678
45699
|
|
|
45700
|
+
|
|
45679
45701
|
|
|
45680
45702
|
|
|
45681
45703
|
/** @docs-package-description
|
|
@@ -297751,7 +297773,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
297751
297773
|
/***/ ((module) => {
|
|
297752
297774
|
|
|
297753
297775
|
"use strict";
|
|
297754
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.8.0-dev.
|
|
297776
|
+
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"}}');
|
|
297755
297777
|
|
|
297756
297778
|
/***/ })
|
|
297757
297779
|
|