@itwin/ecschema-rpcinterface-tests 3.5.0-dev.45 → 3.5.0-dev.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/_554f.bundled-tests.js.map +1 -1
- package/lib/dist/bundled-tests.js +69 -34
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/object-storage.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_4_0_node_modules_itwin_obj-3576c6.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_10_node_modules_loaders_gl_draco_d-13469a.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3.bundled-tests.js.map +1 -1
- package/package.json +16 -16
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_554f.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\
|
|
1
|
+
{"version":3,"file":"_554f.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\1\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.2.10\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
|
|
@@ -174278,7 +174278,7 @@ class RealityTile extends _internal__WEBPACK_IMPORTED_MODULE_5__.Tile {
|
|
|
174278
174278
|
}
|
|
174279
174279
|
/** @internal */
|
|
174280
174280
|
useAdditiveRefinementStepchildren() {
|
|
174281
|
-
// Create additive stepchildren only if we are this tile is additive and we are
|
|
174281
|
+
// Create additive stepchildren only if we are this tile is additive and we are re-projecting and the radius exceeds the additiveRefinementThreshold.
|
|
174282
174282
|
// This criteria is currently only met by the Cesium OSM tileset.
|
|
174283
174283
|
const rangeDiagonal = this.rangeCorners ? this.rangeCorners[0].distance(this.rangeCorners[3]) : 0;
|
|
174284
174284
|
return this.additiveRefinement && this.isDisplayable && rangeDiagonal > additiveRefinementThreshold && this.depth < additiveRefinementDepthLimit && this.realityRoot.doReprojectChildren(this);
|
|
@@ -174286,12 +174286,12 @@ class RealityTile extends _internal__WEBPACK_IMPORTED_MODULE_5__.Tile {
|
|
|
174286
174286
|
/** @internal */
|
|
174287
174287
|
_loadChildren(resolve, reject) {
|
|
174288
174288
|
this.realityRoot.loader.loadChildren(this).then((children) => {
|
|
174289
|
-
/* If this is a large tile is to be included additively, but we are
|
|
174289
|
+
/* If this is a large tile is to be included additively, but we are re-projecting (Cesium OSM) then we must add step-children to display the geometry as an overly large
|
|
174290
174290
|
tile cannot be reprojected accurately. */
|
|
174291
174291
|
if (this.useAdditiveRefinementStepchildren())
|
|
174292
174292
|
this.loadAdditiveRefinementChildren((stepChildren) => { children = children ? children === null || children === void 0 ? void 0 : children.concat(stepChildren) : stepChildren; });
|
|
174293
174293
|
if (children)
|
|
174294
|
-
this.realityRoot.reprojectAndResolveChildren(this, children, resolve); /* Potentially
|
|
174294
|
+
this.realityRoot.reprojectAndResolveChildren(this, children, resolve); /* Potentially reproject and resolve these children */
|
|
174295
174295
|
}).catch((err) => {
|
|
174296
174296
|
reject(err);
|
|
174297
174297
|
});
|
|
@@ -175612,6 +175612,11 @@ class Tile {
|
|
|
175612
175612
|
get isNotFound() { return TileLoadStatus.NotFound === this.loadStatus; }
|
|
175613
175613
|
/** True if this tile's content has been loaded and is ready to be drawn. */
|
|
175614
175614
|
get isReady() { return TileLoadStatus.Ready === this.loadStatus; }
|
|
175615
|
+
/** Indicates the tile should not be selected for display because it is out of the range of LODs supported by the tile provider.
|
|
175616
|
+
* @see [[ImageryMapTile.isOutOfLodRange]].
|
|
175617
|
+
* @alpha
|
|
175618
|
+
*/
|
|
175619
|
+
get isOutOfLodRange() { return false; }
|
|
175615
175620
|
/** @public */
|
|
175616
175621
|
setNotFound() {
|
|
175617
175622
|
this._state = 4 /* NotFound */;
|
|
@@ -181387,10 +181392,12 @@ class ImageryMapTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTile
|
|
|
181387
181392
|
this.quadId = quadId;
|
|
181388
181393
|
this.rectangle = rectangle;
|
|
181389
181394
|
this._mapTileUsageCount = 0;
|
|
181395
|
+
this._outOfLodRange = this.depth < imageryTree.minDepth;
|
|
181390
181396
|
}
|
|
181391
181397
|
get texture() { return this._texture; }
|
|
181392
181398
|
get tilingScheme() { return this.imageryTree.tilingScheme; }
|
|
181393
181399
|
get isDisplayable() { return (this.depth > 1) && super.isDisplayable; }
|
|
181400
|
+
get isOutOfLodRange() { return this._outOfLodRange; }
|
|
181394
181401
|
setContent(content) {
|
|
181395
181402
|
this._texture = content.imageryTexture; // No dispose - textures may be shared by terrain tiles so let garbage collector dispose them.
|
|
181396
181403
|
if (undefined === content.imageryTexture)
|
|
@@ -181400,7 +181407,7 @@ class ImageryMapTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTile
|
|
|
181400
181407
|
selectCartoDrapeTiles(drapeTiles, rectangleToDrape, drapePixelSize, args) {
|
|
181401
181408
|
// Base draping overlap on width rather than height so that tiling schemes with multiple root nodes overlay correctly.
|
|
181402
181409
|
if (this.isLeaf || (this.rectangle.xLength() / this.maximumSize) < drapePixelSize || this._anyChildNotFound) {
|
|
181403
|
-
if (this.isDisplayable && !this.isNotFound)
|
|
181410
|
+
if (this.isDisplayable && !this.isNotFound && !this.isOutOfLodRange)
|
|
181404
181411
|
drapeTiles.push(this);
|
|
181405
181412
|
return _internal__WEBPACK_IMPORTED_MODULE_4__.TileTreeLoadStatus.Loaded;
|
|
181406
181413
|
}
|
|
@@ -181444,12 +181451,12 @@ class ImageryMapTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTile
|
|
|
181444
181451
|
// If children depth is lower than min LOD, mark them as disabled.
|
|
181445
181452
|
// This is important: if those tiles are requested and the server refuse to serve them,
|
|
181446
181453
|
// they will be marked as not found and their descendant will never be displayed.
|
|
181447
|
-
const childrenAreDisabled = (this.depth + 1) < imageryTree.minDepth;
|
|
181448
181454
|
childIds.forEach((quadId) => {
|
|
181449
181455
|
const rectangle = imageryTree.tilingScheme.tileXYToRectangle(quadId.column, quadId.row, quadId.level);
|
|
181450
181456
|
const range = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range3d.createXYZXYZ(rectangle.low.x, rectangle.low.x, 0, rectangle.high.x, rectangle.high.y, 0);
|
|
181451
|
-
const maximumSize =
|
|
181452
|
-
|
|
181457
|
+
const maximumSize = imageryTree.imageryLoader.maximumScreenSize;
|
|
181458
|
+
const tile = new ImageryMapTile({ parent: this, isLeaf: childrenAreLeaves, contentId: quadId.contentId, range, maximumSize }, imageryTree, quadId, rectangle);
|
|
181459
|
+
children.push(tile);
|
|
181453
181460
|
});
|
|
181454
181461
|
resolve(children);
|
|
181455
181462
|
};
|
|
@@ -199841,7 +199848,10 @@ class Geometry {
|
|
|
199841
199848
|
static isSmallMetricDistanceSquared(distanceSquared) {
|
|
199842
199849
|
return Math.abs(distanceSquared) <= Geometry.smallMetricDistanceSquared;
|
|
199843
199850
|
}
|
|
199844
|
-
/**
|
|
199851
|
+
/**
|
|
199852
|
+
* Return `axis modulo 3` with proper handling of negative indices
|
|
199853
|
+
* ..., -3:x, -2:y, -1:z, 0:x, 1:y, 2:z, 3:x, 4:y, 5:z, 6:x, 7:y, 8:z, ...
|
|
199854
|
+
* */
|
|
199845
199855
|
static cyclic3dAxis(axis) {
|
|
199846
199856
|
/* Direct test for the most common cases, avoid modulo */
|
|
199847
199857
|
if (axis >= 0) {
|
|
@@ -238657,7 +238667,10 @@ class Point3d extends XYZ {
|
|
|
238657
238667
|
crossProductToPointsXY(pointA, pointB) {
|
|
238658
238668
|
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.crossProductXYXY(pointA.x - this.x, pointA.y - this.y, pointB.x - this.x, pointB.y - this.y);
|
|
238659
238669
|
}
|
|
238660
|
-
/**
|
|
238670
|
+
/**
|
|
238671
|
+
* Return a point interpolated between `this` point and the `other` point.
|
|
238672
|
+
* * fraction specifies where the interpolated point is located on the line passing `this` and `other`.
|
|
238673
|
+
* */
|
|
238661
238674
|
interpolate(fraction, other, result) {
|
|
238662
238675
|
if (fraction <= 0.5)
|
|
238663
238676
|
return Point3d.create(this.x + fraction * (other.x - this.x), this.y + fraction * (other.y - this.y), this.z + fraction * (other.z - this.z), result);
|
|
@@ -239003,8 +239016,18 @@ class Vector3d extends XYZ {
|
|
|
239003
239016
|
this.z *= a;
|
|
239004
239017
|
return true;
|
|
239005
239018
|
}
|
|
239006
|
-
/**
|
|
239019
|
+
/**
|
|
239020
|
+
* Return fractional projection of target vector onto this
|
|
239021
|
+
* * It's returning the signed projection magnitude divided by the target magnitude. In other words,
|
|
239022
|
+
* it's returning the length of the projection as a fraction of the target magnitude.
|
|
239023
|
+
* @param target the target vector
|
|
239024
|
+
* @param defaultFraction the returned value in case magnitude square of target vector is very small
|
|
239025
|
+
* */
|
|
239007
239026
|
fractionOfProjectionToVector(target, defaultFraction = 0) {
|
|
239027
|
+
/*
|
|
239028
|
+
* projection length is (this.target)/||target||
|
|
239029
|
+
* but here we return (this.target)/||target||^2
|
|
239030
|
+
*/
|
|
239008
239031
|
const numerator = this.dotProduct(target);
|
|
239009
239032
|
const denominator = target.magnitudeSquared();
|
|
239010
239033
|
if (denominator < _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistanceSquared)
|
|
@@ -239247,7 +239270,8 @@ class Vector3d extends XYZ {
|
|
|
239247
239270
|
return true;
|
|
239248
239271
|
}
|
|
239249
239272
|
/**
|
|
239250
|
-
* Compute cross product with `vectorB
|
|
239273
|
+
* Compute cross product with `vectorB`
|
|
239274
|
+
* * cross product vector will have the given length.
|
|
239251
239275
|
* @param vectorB second vector for cross product.
|
|
239252
239276
|
* @param productLength desired length of result vector.
|
|
239253
239277
|
* @param result optional preallocated vector
|
|
@@ -239393,7 +239417,7 @@ class Vector3d extends XYZ {
|
|
|
239393
239417
|
* * The returned angle is always positive and no larger than 180 degrees (PI radians)
|
|
239394
239418
|
* * The returned angle is "in the plane containing the two vectors"
|
|
239395
239419
|
* * Use `planarRadiansTo` and `signedRadiansTo` to take have angle measured in specific plane.
|
|
239396
|
-
* @param vectorB target vector
|
|
239420
|
+
* @param vectorB target vector.
|
|
239397
239421
|
*/
|
|
239398
239422
|
radiansTo(vectorB) {
|
|
239399
239423
|
// ||axb|| = ||a|| ||b|| |sin(t)| and a.b = ||a|| ||b|| cos(t) ==>
|
|
@@ -239405,7 +239429,7 @@ class Vector3d extends XYZ {
|
|
|
239405
239429
|
* * The returned angle is always positive and no larger than 180 degrees (PI radians)
|
|
239406
239430
|
* * The returned angle is "in the plane containing the two vectors"
|
|
239407
239431
|
* * Use `planarAngleTo` and `signedAngleTo` to take have angle measured in specific plane.
|
|
239408
|
-
* @param vectorB target vector
|
|
239432
|
+
* @param vectorB target vector.
|
|
239409
239433
|
*/
|
|
239410
239434
|
angleTo(vectorB) {
|
|
239411
239435
|
return _Angle__WEBPACK_IMPORTED_MODULE_2__.Angle.createRadians(this.radiansTo(vectorB));
|
|
@@ -239425,7 +239449,7 @@ class Vector3d extends XYZ {
|
|
|
239425
239449
|
* * The returned angle can range from negative 180 degrees (negative PI radians) to positive 180
|
|
239426
239450
|
* * degrees (positive PI radians), not closed on the negative side.
|
|
239427
239451
|
* * Use `planarAngleTo` and `signedAngleTo` to take have angle measured in other planes.
|
|
239428
|
-
* @param vectorB target vector
|
|
239452
|
+
* @param vectorB target vector.
|
|
239429
239453
|
*/
|
|
239430
239454
|
angleToXY(vectorB) {
|
|
239431
239455
|
return _Angle__WEBPACK_IMPORTED_MODULE_2__.Angle.createAtan2(this.crossProductXY(vectorB), this.dotProductXY(vectorB));
|
|
@@ -239437,7 +239461,8 @@ class Vector3d extends XYZ {
|
|
|
239437
239461
|
* * The returned angle is "in the plane containing the two vectors"
|
|
239438
239462
|
* * The returned angle has the same sign as vectorW dot product (thisVector cross vectorB)
|
|
239439
239463
|
* * vectorW does not have to be perpendicular to the plane.
|
|
239440
|
-
*
|
|
239464
|
+
* * Use planarRadiansTo to measure the angle between vectors that are projected to another plane.
|
|
239465
|
+
* @param vectorB target vector.
|
|
239441
239466
|
* @param vectorW distinguishes between the sides of the plane.
|
|
239442
239467
|
*/
|
|
239443
239468
|
signedRadiansTo(vectorB, vectorW) {
|
|
@@ -239456,34 +239481,39 @@ class Vector3d extends XYZ {
|
|
|
239456
239481
|
* * The returned angle is "in the plane containing the two vectors"
|
|
239457
239482
|
* * `vectorW` distinguishes between the sides of the plane, but does not have to be perpendicular.
|
|
239458
239483
|
* * The returned angle has the same sign as vectorW dot product (thisVector cross vectorB)
|
|
239459
|
-
*
|
|
239484
|
+
* * Use planarRadiansTo to measure the angle between vectors that are projected to another plane.
|
|
239485
|
+
* @param vectorB target vector.
|
|
239460
239486
|
* @param vectorW distinguishes between the sides of the plane.
|
|
239461
239487
|
*/
|
|
239462
239488
|
signedAngleTo(vectorB, vectorW) {
|
|
239463
239489
|
return _Angle__WEBPACK_IMPORTED_MODULE_2__.Angle.createRadians(this.signedRadiansTo(vectorB, vectorW));
|
|
239464
239490
|
}
|
|
239465
239491
|
/**
|
|
239466
|
-
* Return the
|
|
239492
|
+
* Return the radians (as a simple number, not strongly typed Angle) from this vector to vectorB,
|
|
239493
|
+
* measured between their projections to the plane with the given normal.
|
|
239467
239494
|
* * The returned angle can be positive or negative, with magnitude no larger than PI radians
|
|
239468
|
-
*
|
|
239469
|
-
* @param
|
|
239470
|
-
* @param planeNormal a normal vector to the plane.
|
|
239495
|
+
* @param vectorB target vector
|
|
239496
|
+
* @param planeNormal the normal vector to the plane.
|
|
239471
239497
|
*/
|
|
239472
239498
|
planarRadiansTo(vectorB, planeNormal) {
|
|
239473
239499
|
const square = planeNormal.dotProduct(planeNormal);
|
|
239474
239500
|
if (square === 0.0)
|
|
239475
239501
|
return 0.0;
|
|
239476
239502
|
const factor = 1.0 / square;
|
|
239477
|
-
|
|
239478
|
-
|
|
239479
|
-
|
|
239503
|
+
/*
|
|
239504
|
+
* projection of vector 'v' on normal 'n' is given by vProj = [dot(v,n)/||n||^2]*n
|
|
239505
|
+
* and projection of 'v' on the plane is given by 'v - vProj'
|
|
239506
|
+
*/
|
|
239507
|
+
const thisProj = this.plusScaled(planeNormal, -this.dotProduct(planeNormal) * factor);
|
|
239508
|
+
const vectorBProj = vectorB.plusScaled(planeNormal, -vectorB.dotProduct(planeNormal) * factor);
|
|
239509
|
+
return thisProj.signedRadiansTo(vectorBProj, planeNormal);
|
|
239480
239510
|
}
|
|
239481
239511
|
/**
|
|
239482
|
-
* Return the (as strongly typed Angle)
|
|
239512
|
+
* Return the angle (as strongly typed Angle) from this vector to vectorB,
|
|
239513
|
+
* measured between their projections to the plane with the given normal.
|
|
239483
239514
|
* * The returned angle can range from negative PI to positive PI (not closed on negative side)
|
|
239484
|
-
*
|
|
239485
|
-
* @param
|
|
239486
|
-
* @param planeNormal a normal vector to the plane.
|
|
239515
|
+
* @param vectorB target vector.
|
|
239516
|
+
* @param planeNormal the normal vector to the plane.
|
|
239487
239517
|
*/
|
|
239488
239518
|
planarAngleTo(vectorB, planeNormal) {
|
|
239489
239519
|
return _Angle__WEBPACK_IMPORTED_MODULE_2__.Angle.createRadians(this.planarRadiansTo(vectorB, planeNormal));
|
|
@@ -244154,12 +244184,12 @@ class Ray3d {
|
|
|
244154
244184
|
return pair;
|
|
244155
244185
|
}
|
|
244156
244186
|
/**
|
|
244157
|
-
* Return a ray
|
|
244158
|
-
* scale factor
|
|
244159
|
-
* @param pt1 start point of interpolation
|
|
244187
|
+
* Return a ray with `ray.origin` interpolated between pt1 and pt2 at the given fraction
|
|
244188
|
+
* and `ray.direction` set to the vector from pt1 to pt2 multiplied by the given scale factor.
|
|
244189
|
+
* @param pt1 start point of interpolation.
|
|
244160
244190
|
* @param fraction fractional position between points.
|
|
244161
|
-
* @param pt2 endpoint of interpolation
|
|
244162
|
-
* @param tangentScale scale factor to apply to the startToEnd vector
|
|
244191
|
+
* @param pt2 endpoint of interpolation.
|
|
244192
|
+
* @param tangentScale scale factor to apply to the startToEnd vector.
|
|
244163
244193
|
* @param result optional receiver.
|
|
244164
244194
|
*/
|
|
244165
244195
|
static interpolatePointAndTangent(pt1, fraction, pt2, tangentScale, result) {
|
|
@@ -279795,7 +279825,8 @@ class ITwinLocalization {
|
|
|
279795
279825
|
}
|
|
279796
279826
|
return value;
|
|
279797
279827
|
}
|
|
279798
|
-
/** Similar to `getLocalizedString` but the namespace is a separate
|
|
279828
|
+
/** Similar to `getLocalizedString` but the default namespace is a separate parameter and the key does not need
|
|
279829
|
+
* to include a namespace. If a key includes a namespace, that namespace will be used for interpolating that key.
|
|
279799
279830
|
* @param namespace - the namespace that identifies the particular localization file that contains the property.
|
|
279800
279831
|
* @param key - the key that matches a property in the JSON localization file.
|
|
279801
279832
|
* @returns The string corresponding to the first key that resolves.
|
|
@@ -279825,6 +279856,10 @@ class ITwinLocalization {
|
|
|
279825
279856
|
if ((options === null || options === void 0 ? void 0 : options.returnDetails) || (options === null || options === void 0 ? void 0 : options.returnObjects)) {
|
|
279826
279857
|
throw new Error("Translation key must map to a string, but the given options will result in an object");
|
|
279827
279858
|
}
|
|
279859
|
+
options = {
|
|
279860
|
+
...options,
|
|
279861
|
+
ns: namespace, // ensure namespace argument is used
|
|
279862
|
+
};
|
|
279828
279863
|
const en = this.i18next.getFixedT("en", namespace);
|
|
279829
279864
|
const str = en(key, options);
|
|
279830
279865
|
if (typeof str !== "string")
|
|
@@ -310497,7 +310532,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
310497
310532
|
/***/ ((module) => {
|
|
310498
310533
|
|
|
310499
310534
|
"use strict";
|
|
310500
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.
|
|
310535
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.47","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs","build:ci":"npm run -s build && npm run -s build:esm","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"../../tools/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core/tree/master/core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^3.5.0-dev.47","@itwin/core-bentley":"workspace:^3.5.0-dev.47","@itwin/core-common":"workspace:^3.5.0-dev.47","@itwin/core-geometry":"workspace:^3.5.0-dev.47","@itwin/core-orbitgt":"workspace:^3.5.0-dev.47","@itwin/core-quantity":"workspace:^3.5.0-dev.47","@itwin/webgl-compatibility":"workspace:^3.5.0-dev.47"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.0","@types/lodash":"^4.14.0","@types/mocha":"^8.2.2","@types/node":"18.11.5","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^7.11.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~4.4.0","webpack":"^5.64.4"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/object-storage-azure":"~1.4.0","@itwin/cloud-agnostic-core":"~1.4.0","@itwin/object-storage-core":"~1.4.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","lodash":"^4.17.10","qs":"^6.5.1","semver":"^7.3.5","superagent":"7.1.3","wms-capabilities":"0.4.0","xml-js":"~1.6.11","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
|
|
310501
310536
|
|
|
310502
310537
|
/***/ })
|
|
310503
310538
|
|