@itwin/rpcinterface-full-stack-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 +70 -35
- 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 +14 -14
|
@@ -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":""}
|
|
@@ -164931,7 +164931,7 @@ class RealityTile extends _internal__WEBPACK_IMPORTED_MODULE_5__.Tile {
|
|
|
164931
164931
|
}
|
|
164932
164932
|
/** @internal */
|
|
164933
164933
|
useAdditiveRefinementStepchildren() {
|
|
164934
|
-
// Create additive stepchildren only if we are this tile is additive and we are
|
|
164934
|
+
// Create additive stepchildren only if we are this tile is additive and we are re-projecting and the radius exceeds the additiveRefinementThreshold.
|
|
164935
164935
|
// This criteria is currently only met by the Cesium OSM tileset.
|
|
164936
164936
|
const rangeDiagonal = this.rangeCorners ? this.rangeCorners[0].distance(this.rangeCorners[3]) : 0;
|
|
164937
164937
|
return this.additiveRefinement && this.isDisplayable && rangeDiagonal > additiveRefinementThreshold && this.depth < additiveRefinementDepthLimit && this.realityRoot.doReprojectChildren(this);
|
|
@@ -164939,12 +164939,12 @@ class RealityTile extends _internal__WEBPACK_IMPORTED_MODULE_5__.Tile {
|
|
|
164939
164939
|
/** @internal */
|
|
164940
164940
|
_loadChildren(resolve, reject) {
|
|
164941
164941
|
this.realityRoot.loader.loadChildren(this).then((children) => {
|
|
164942
|
-
/* If this is a large tile is to be included additively, but we are
|
|
164942
|
+
/* 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
|
|
164943
164943
|
tile cannot be reprojected accurately. */
|
|
164944
164944
|
if (this.useAdditiveRefinementStepchildren())
|
|
164945
164945
|
this.loadAdditiveRefinementChildren((stepChildren) => { children = children ? children === null || children === void 0 ? void 0 : children.concat(stepChildren) : stepChildren; });
|
|
164946
164946
|
if (children)
|
|
164947
|
-
this.realityRoot.reprojectAndResolveChildren(this, children, resolve); /* Potentially
|
|
164947
|
+
this.realityRoot.reprojectAndResolveChildren(this, children, resolve); /* Potentially reproject and resolve these children */
|
|
164948
164948
|
}).catch((err) => {
|
|
164949
164949
|
reject(err);
|
|
164950
164950
|
});
|
|
@@ -166265,6 +166265,11 @@ class Tile {
|
|
|
166265
166265
|
get isNotFound() { return TileLoadStatus.NotFound === this.loadStatus; }
|
|
166266
166266
|
/** True if this tile's content has been loaded and is ready to be drawn. */
|
|
166267
166267
|
get isReady() { return TileLoadStatus.Ready === this.loadStatus; }
|
|
166268
|
+
/** Indicates the tile should not be selected for display because it is out of the range of LODs supported by the tile provider.
|
|
166269
|
+
* @see [[ImageryMapTile.isOutOfLodRange]].
|
|
166270
|
+
* @alpha
|
|
166271
|
+
*/
|
|
166272
|
+
get isOutOfLodRange() { return false; }
|
|
166268
166273
|
/** @public */
|
|
166269
166274
|
setNotFound() {
|
|
166270
166275
|
this._state = 4 /* NotFound */;
|
|
@@ -172040,10 +172045,12 @@ class ImageryMapTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTile
|
|
|
172040
172045
|
this.quadId = quadId;
|
|
172041
172046
|
this.rectangle = rectangle;
|
|
172042
172047
|
this._mapTileUsageCount = 0;
|
|
172048
|
+
this._outOfLodRange = this.depth < imageryTree.minDepth;
|
|
172043
172049
|
}
|
|
172044
172050
|
get texture() { return this._texture; }
|
|
172045
172051
|
get tilingScheme() { return this.imageryTree.tilingScheme; }
|
|
172046
172052
|
get isDisplayable() { return (this.depth > 1) && super.isDisplayable; }
|
|
172053
|
+
get isOutOfLodRange() { return this._outOfLodRange; }
|
|
172047
172054
|
setContent(content) {
|
|
172048
172055
|
this._texture = content.imageryTexture; // No dispose - textures may be shared by terrain tiles so let garbage collector dispose them.
|
|
172049
172056
|
if (undefined === content.imageryTexture)
|
|
@@ -172053,7 +172060,7 @@ class ImageryMapTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTile
|
|
|
172053
172060
|
selectCartoDrapeTiles(drapeTiles, rectangleToDrape, drapePixelSize, args) {
|
|
172054
172061
|
// Base draping overlap on width rather than height so that tiling schemes with multiple root nodes overlay correctly.
|
|
172055
172062
|
if (this.isLeaf || (this.rectangle.xLength() / this.maximumSize) < drapePixelSize || this._anyChildNotFound) {
|
|
172056
|
-
if (this.isDisplayable && !this.isNotFound)
|
|
172063
|
+
if (this.isDisplayable && !this.isNotFound && !this.isOutOfLodRange)
|
|
172057
172064
|
drapeTiles.push(this);
|
|
172058
172065
|
return _internal__WEBPACK_IMPORTED_MODULE_4__.TileTreeLoadStatus.Loaded;
|
|
172059
172066
|
}
|
|
@@ -172097,12 +172104,12 @@ class ImageryMapTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTile
|
|
|
172097
172104
|
// If children depth is lower than min LOD, mark them as disabled.
|
|
172098
172105
|
// This is important: if those tiles are requested and the server refuse to serve them,
|
|
172099
172106
|
// they will be marked as not found and their descendant will never be displayed.
|
|
172100
|
-
const childrenAreDisabled = (this.depth + 1) < imageryTree.minDepth;
|
|
172101
172107
|
childIds.forEach((quadId) => {
|
|
172102
172108
|
const rectangle = imageryTree.tilingScheme.tileXYToRectangle(quadId.column, quadId.row, quadId.level);
|
|
172103
172109
|
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);
|
|
172104
|
-
const maximumSize =
|
|
172105
|
-
|
|
172110
|
+
const maximumSize = imageryTree.imageryLoader.maximumScreenSize;
|
|
172111
|
+
const tile = new ImageryMapTile({ parent: this, isLeaf: childrenAreLeaves, contentId: quadId.contentId, range, maximumSize }, imageryTree, quadId, rectangle);
|
|
172112
|
+
children.push(tile);
|
|
172106
172113
|
});
|
|
172107
172114
|
resolve(children);
|
|
172108
172115
|
};
|
|
@@ -190494,7 +190501,10 @@ class Geometry {
|
|
|
190494
190501
|
static isSmallMetricDistanceSquared(distanceSquared) {
|
|
190495
190502
|
return Math.abs(distanceSquared) <= Geometry.smallMetricDistanceSquared;
|
|
190496
190503
|
}
|
|
190497
|
-
/**
|
|
190504
|
+
/**
|
|
190505
|
+
* Return `axis modulo 3` with proper handling of negative indices
|
|
190506
|
+
* ..., -3:x, -2:y, -1:z, 0:x, 1:y, 2:z, 3:x, 4:y, 5:z, 6:x, 7:y, 8:z, ...
|
|
190507
|
+
* */
|
|
190498
190508
|
static cyclic3dAxis(axis) {
|
|
190499
190509
|
/* Direct test for the most common cases, avoid modulo */
|
|
190500
190510
|
if (axis >= 0) {
|
|
@@ -229310,7 +229320,10 @@ class Point3d extends XYZ {
|
|
|
229310
229320
|
crossProductToPointsXY(pointA, pointB) {
|
|
229311
229321
|
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.crossProductXYXY(pointA.x - this.x, pointA.y - this.y, pointB.x - this.x, pointB.y - this.y);
|
|
229312
229322
|
}
|
|
229313
|
-
/**
|
|
229323
|
+
/**
|
|
229324
|
+
* Return a point interpolated between `this` point and the `other` point.
|
|
229325
|
+
* * fraction specifies where the interpolated point is located on the line passing `this` and `other`.
|
|
229326
|
+
* */
|
|
229314
229327
|
interpolate(fraction, other, result) {
|
|
229315
229328
|
if (fraction <= 0.5)
|
|
229316
229329
|
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);
|
|
@@ -229656,8 +229669,18 @@ class Vector3d extends XYZ {
|
|
|
229656
229669
|
this.z *= a;
|
|
229657
229670
|
return true;
|
|
229658
229671
|
}
|
|
229659
|
-
/**
|
|
229672
|
+
/**
|
|
229673
|
+
* Return fractional projection of target vector onto this
|
|
229674
|
+
* * It's returning the signed projection magnitude divided by the target magnitude. In other words,
|
|
229675
|
+
* it's returning the length of the projection as a fraction of the target magnitude.
|
|
229676
|
+
* @param target the target vector
|
|
229677
|
+
* @param defaultFraction the returned value in case magnitude square of target vector is very small
|
|
229678
|
+
* */
|
|
229660
229679
|
fractionOfProjectionToVector(target, defaultFraction = 0) {
|
|
229680
|
+
/*
|
|
229681
|
+
* projection length is (this.target)/||target||
|
|
229682
|
+
* but here we return (this.target)/||target||^2
|
|
229683
|
+
*/
|
|
229661
229684
|
const numerator = this.dotProduct(target);
|
|
229662
229685
|
const denominator = target.magnitudeSquared();
|
|
229663
229686
|
if (denominator < _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistanceSquared)
|
|
@@ -229900,7 +229923,8 @@ class Vector3d extends XYZ {
|
|
|
229900
229923
|
return true;
|
|
229901
229924
|
}
|
|
229902
229925
|
/**
|
|
229903
|
-
* Compute cross product with `vectorB
|
|
229926
|
+
* Compute cross product with `vectorB`
|
|
229927
|
+
* * cross product vector will have the given length.
|
|
229904
229928
|
* @param vectorB second vector for cross product.
|
|
229905
229929
|
* @param productLength desired length of result vector.
|
|
229906
229930
|
* @param result optional preallocated vector
|
|
@@ -230046,7 +230070,7 @@ class Vector3d extends XYZ {
|
|
|
230046
230070
|
* * The returned angle is always positive and no larger than 180 degrees (PI radians)
|
|
230047
230071
|
* * The returned angle is "in the plane containing the two vectors"
|
|
230048
230072
|
* * Use `planarRadiansTo` and `signedRadiansTo` to take have angle measured in specific plane.
|
|
230049
|
-
* @param vectorB target vector
|
|
230073
|
+
* @param vectorB target vector.
|
|
230050
230074
|
*/
|
|
230051
230075
|
radiansTo(vectorB) {
|
|
230052
230076
|
// ||axb|| = ||a|| ||b|| |sin(t)| and a.b = ||a|| ||b|| cos(t) ==>
|
|
@@ -230058,7 +230082,7 @@ class Vector3d extends XYZ {
|
|
|
230058
230082
|
* * The returned angle is always positive and no larger than 180 degrees (PI radians)
|
|
230059
230083
|
* * The returned angle is "in the plane containing the two vectors"
|
|
230060
230084
|
* * Use `planarAngleTo` and `signedAngleTo` to take have angle measured in specific plane.
|
|
230061
|
-
* @param vectorB target vector
|
|
230085
|
+
* @param vectorB target vector.
|
|
230062
230086
|
*/
|
|
230063
230087
|
angleTo(vectorB) {
|
|
230064
230088
|
return _Angle__WEBPACK_IMPORTED_MODULE_2__.Angle.createRadians(this.radiansTo(vectorB));
|
|
@@ -230078,7 +230102,7 @@ class Vector3d extends XYZ {
|
|
|
230078
230102
|
* * The returned angle can range from negative 180 degrees (negative PI radians) to positive 180
|
|
230079
230103
|
* * degrees (positive PI radians), not closed on the negative side.
|
|
230080
230104
|
* * Use `planarAngleTo` and `signedAngleTo` to take have angle measured in other planes.
|
|
230081
|
-
* @param vectorB target vector
|
|
230105
|
+
* @param vectorB target vector.
|
|
230082
230106
|
*/
|
|
230083
230107
|
angleToXY(vectorB) {
|
|
230084
230108
|
return _Angle__WEBPACK_IMPORTED_MODULE_2__.Angle.createAtan2(this.crossProductXY(vectorB), this.dotProductXY(vectorB));
|
|
@@ -230090,7 +230114,8 @@ class Vector3d extends XYZ {
|
|
|
230090
230114
|
* * The returned angle is "in the plane containing the two vectors"
|
|
230091
230115
|
* * The returned angle has the same sign as vectorW dot product (thisVector cross vectorB)
|
|
230092
230116
|
* * vectorW does not have to be perpendicular to the plane.
|
|
230093
|
-
*
|
|
230117
|
+
* * Use planarRadiansTo to measure the angle between vectors that are projected to another plane.
|
|
230118
|
+
* @param vectorB target vector.
|
|
230094
230119
|
* @param vectorW distinguishes between the sides of the plane.
|
|
230095
230120
|
*/
|
|
230096
230121
|
signedRadiansTo(vectorB, vectorW) {
|
|
@@ -230109,34 +230134,39 @@ class Vector3d extends XYZ {
|
|
|
230109
230134
|
* * The returned angle is "in the plane containing the two vectors"
|
|
230110
230135
|
* * `vectorW` distinguishes between the sides of the plane, but does not have to be perpendicular.
|
|
230111
230136
|
* * The returned angle has the same sign as vectorW dot product (thisVector cross vectorB)
|
|
230112
|
-
*
|
|
230137
|
+
* * Use planarRadiansTo to measure the angle between vectors that are projected to another plane.
|
|
230138
|
+
* @param vectorB target vector.
|
|
230113
230139
|
* @param vectorW distinguishes between the sides of the plane.
|
|
230114
230140
|
*/
|
|
230115
230141
|
signedAngleTo(vectorB, vectorW) {
|
|
230116
230142
|
return _Angle__WEBPACK_IMPORTED_MODULE_2__.Angle.createRadians(this.signedRadiansTo(vectorB, vectorW));
|
|
230117
230143
|
}
|
|
230118
230144
|
/**
|
|
230119
|
-
* Return the
|
|
230145
|
+
* Return the radians (as a simple number, not strongly typed Angle) from this vector to vectorB,
|
|
230146
|
+
* measured between their projections to the plane with the given normal.
|
|
230120
230147
|
* * The returned angle can be positive or negative, with magnitude no larger than PI radians
|
|
230121
|
-
*
|
|
230122
|
-
* @param
|
|
230123
|
-
* @param planeNormal a normal vector to the plane.
|
|
230148
|
+
* @param vectorB target vector
|
|
230149
|
+
* @param planeNormal the normal vector to the plane.
|
|
230124
230150
|
*/
|
|
230125
230151
|
planarRadiansTo(vectorB, planeNormal) {
|
|
230126
230152
|
const square = planeNormal.dotProduct(planeNormal);
|
|
230127
230153
|
if (square === 0.0)
|
|
230128
230154
|
return 0.0;
|
|
230129
230155
|
const factor = 1.0 / square;
|
|
230130
|
-
|
|
230131
|
-
|
|
230132
|
-
|
|
230156
|
+
/*
|
|
230157
|
+
* projection of vector 'v' on normal 'n' is given by vProj = [dot(v,n)/||n||^2]*n
|
|
230158
|
+
* and projection of 'v' on the plane is given by 'v - vProj'
|
|
230159
|
+
*/
|
|
230160
|
+
const thisProj = this.plusScaled(planeNormal, -this.dotProduct(planeNormal) * factor);
|
|
230161
|
+
const vectorBProj = vectorB.plusScaled(planeNormal, -vectorB.dotProduct(planeNormal) * factor);
|
|
230162
|
+
return thisProj.signedRadiansTo(vectorBProj, planeNormal);
|
|
230133
230163
|
}
|
|
230134
230164
|
/**
|
|
230135
|
-
* Return the (as strongly typed Angle)
|
|
230165
|
+
* Return the angle (as strongly typed Angle) from this vector to vectorB,
|
|
230166
|
+
* measured between their projections to the plane with the given normal.
|
|
230136
230167
|
* * The returned angle can range from negative PI to positive PI (not closed on negative side)
|
|
230137
|
-
*
|
|
230138
|
-
* @param
|
|
230139
|
-
* @param planeNormal a normal vector to the plane.
|
|
230168
|
+
* @param vectorB target vector.
|
|
230169
|
+
* @param planeNormal the normal vector to the plane.
|
|
230140
230170
|
*/
|
|
230141
230171
|
planarAngleTo(vectorB, planeNormal) {
|
|
230142
230172
|
return _Angle__WEBPACK_IMPORTED_MODULE_2__.Angle.createRadians(this.planarRadiansTo(vectorB, planeNormal));
|
|
@@ -234807,12 +234837,12 @@ class Ray3d {
|
|
|
234807
234837
|
return pair;
|
|
234808
234838
|
}
|
|
234809
234839
|
/**
|
|
234810
|
-
* Return a ray
|
|
234811
|
-
* scale factor
|
|
234812
|
-
* @param pt1 start point of interpolation
|
|
234840
|
+
* Return a ray with `ray.origin` interpolated between pt1 and pt2 at the given fraction
|
|
234841
|
+
* and `ray.direction` set to the vector from pt1 to pt2 multiplied by the given scale factor.
|
|
234842
|
+
* @param pt1 start point of interpolation.
|
|
234813
234843
|
* @param fraction fractional position between points.
|
|
234814
|
-
* @param pt2 endpoint of interpolation
|
|
234815
|
-
* @param tangentScale scale factor to apply to the startToEnd vector
|
|
234844
|
+
* @param pt2 endpoint of interpolation.
|
|
234845
|
+
* @param tangentScale scale factor to apply to the startToEnd vector.
|
|
234816
234846
|
* @param result optional receiver.
|
|
234817
234847
|
*/
|
|
234818
234848
|
static interpolatePointAndTangent(pt1, fraction, pt2, tangentScale, result) {
|
|
@@ -270448,7 +270478,8 @@ class ITwinLocalization {
|
|
|
270448
270478
|
}
|
|
270449
270479
|
return value;
|
|
270450
270480
|
}
|
|
270451
|
-
/** Similar to `getLocalizedString` but the namespace is a separate
|
|
270481
|
+
/** Similar to `getLocalizedString` but the default namespace is a separate parameter and the key does not need
|
|
270482
|
+
* to include a namespace. If a key includes a namespace, that namespace will be used for interpolating that key.
|
|
270452
270483
|
* @param namespace - the namespace that identifies the particular localization file that contains the property.
|
|
270453
270484
|
* @param key - the key that matches a property in the JSON localization file.
|
|
270454
270485
|
* @returns The string corresponding to the first key that resolves.
|
|
@@ -270478,6 +270509,10 @@ class ITwinLocalization {
|
|
|
270478
270509
|
if ((options === null || options === void 0 ? void 0 : options.returnDetails) || (options === null || options === void 0 ? void 0 : options.returnObjects)) {
|
|
270479
270510
|
throw new Error("Translation key must map to a string, but the given options will result in an object");
|
|
270480
270511
|
}
|
|
270512
|
+
options = {
|
|
270513
|
+
...options,
|
|
270514
|
+
ns: namespace, // ensure namespace argument is used
|
|
270515
|
+
};
|
|
270481
270516
|
const en = this.i18next.getFixedT("en", namespace);
|
|
270482
270517
|
const str = en(key, options);
|
|
270483
270518
|
if (typeof str !== "string")
|
|
@@ -291750,7 +291785,7 @@ class TestContext {
|
|
|
291750
291785
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
291751
291786
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${(_a = process.env.IMJS_URL_PREFIX) !== null && _a !== void 0 ? _a : ""}api.bentley.com/imodels` } });
|
|
291752
291787
|
await core_frontend_1.NoRenderApp.startup({
|
|
291753
|
-
applicationVersion: "3.5.0-dev.
|
|
291788
|
+
applicationVersion: "3.5.0-dev.47",
|
|
291754
291789
|
applicationId: this.settings.gprid,
|
|
291755
291790
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
291756
291791
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -310819,7 +310854,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
310819
310854
|
/***/ ((module) => {
|
|
310820
310855
|
|
|
310821
310856
|
"use strict";
|
|
310822
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.
|
|
310857
|
+
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"}}]}}');
|
|
310823
310858
|
|
|
310824
310859
|
/***/ }),
|
|
310825
310860
|
|