@itwin/rpcinterface-full-stack-tests 4.10.0-dev.27 → 4.10.0-dev.29
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 +72 -33
- 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 +13 -13
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_bea9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\
|
|
1
|
+
{"version":3,"file":"_bea9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\4\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.1.6\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
|
|
@@ -54607,7 +54607,7 @@ var ElementGeometry;
|
|
|
54607
54607
|
transform = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Transform.createRowValues(entityTransform.x00(), entityTransform.x01(), entityTransform.x02(), entityTransform.tx(), entityTransform.x10(), entityTransform.x11(), entityTransform.x12(), entityTransform.ty(), entityTransform.x20(), entityTransform.x21(), entityTransform.x22(), entityTransform.tz());
|
|
54608
54608
|
if (undefined !== localToWorld) {
|
|
54609
54609
|
if (undefined !== transform)
|
|
54610
|
-
|
|
54610
|
+
localToWorld.multiplyTransformTransform(transform, transform);
|
|
54611
54611
|
else
|
|
54612
54612
|
transform = localToWorld;
|
|
54613
54613
|
}
|
|
@@ -54640,7 +54640,7 @@ var ElementGeometry;
|
|
|
54640
54640
|
function fromBRep(brep, worldToLocal) {
|
|
54641
54641
|
if (undefined !== worldToLocal) {
|
|
54642
54642
|
const entityTrans = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Transform.fromJSON(brep.transform);
|
|
54643
|
-
const localTrans =
|
|
54643
|
+
const localTrans = worldToLocal.multiplyTransformTransform(entityTrans);
|
|
54644
54644
|
brep = {
|
|
54645
54645
|
data: brep.data,
|
|
54646
54646
|
type: brep.type,
|
|
@@ -54725,7 +54725,7 @@ var ElementGeometry;
|
|
|
54725
54725
|
if (null !== entityTransform)
|
|
54726
54726
|
transform = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Transform.createRowValues(entityTransform.x00(), entityTransform.x01(), entityTransform.x02(), entityTransform.tx(), entityTransform.x10(), entityTransform.x11(), entityTransform.x12(), entityTransform.ty(), entityTransform.x20(), entityTransform.x21(), entityTransform.x22(), entityTransform.tz());
|
|
54727
54727
|
if (undefined !== transform)
|
|
54728
|
-
|
|
54728
|
+
inputTransform.multiplyTransformTransform(transform, transform);
|
|
54729
54729
|
else
|
|
54730
54730
|
transform = inputTransform;
|
|
54731
54731
|
const transformOffset = _ElementGeometryFB__WEBPACK_IMPORTED_MODULE_3__.EGFBAccessors.Transform.createTransform(fbb, transform.matrix.coffs[0], transform.matrix.coffs[1], transform.matrix.coffs[2], transform.origin.x, transform.matrix.coffs[3], transform.matrix.coffs[4], transform.matrix.coffs[5], transform.origin.y, transform.matrix.coffs[6], transform.matrix.coffs[7], transform.matrix.coffs[8], transform.origin.z);
|
|
@@ -60268,7 +60268,7 @@ class GeometryStreamBuilder {
|
|
|
60268
60268
|
return true;
|
|
60269
60269
|
}
|
|
60270
60270
|
const entityTrans = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Transform.fromJSON(brep.transform);
|
|
60271
|
-
const localTrans =
|
|
60271
|
+
const localTrans = this._worldToLocal.multiplyTransformTransform(entityTrans);
|
|
60272
60272
|
const localBrep = {
|
|
60273
60273
|
data: brep.data,
|
|
60274
60274
|
type: brep.type,
|
|
@@ -60494,7 +60494,7 @@ class GeometryStreamIterator {
|
|
|
60494
60494
|
else if (entry.brep) {
|
|
60495
60495
|
if (this.entry.localToWorld !== undefined) {
|
|
60496
60496
|
const entityTrans = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Transform.fromJSON(entry.brep.transform);
|
|
60497
|
-
entry.brep.transform =
|
|
60497
|
+
entry.brep.transform = this.entry.localToWorld.multiplyTransformTransform(entityTrans).toJSON();
|
|
60498
60498
|
}
|
|
60499
60499
|
this.entry.setBRep(entry.brep);
|
|
60500
60500
|
return { value: this.entry, done: false };
|
|
@@ -60846,6 +60846,9 @@ class Placement3d {
|
|
|
60846
60846
|
return range;
|
|
60847
60847
|
}
|
|
60848
60848
|
/** Multiply the Transform of this Placement3d by the specified *other* Transform.
|
|
60849
|
+
* * Specifically `this.angles` is set to the rotation specified by `other.matrix * this.transform.matrix`
|
|
60850
|
+
* and `this.origin` is set to the origin of `other * this.transform`.
|
|
60851
|
+
* * Since the placement transform is local-to-world, this means `other` is a world-to-world transform.
|
|
60849
60852
|
* @throws [[IModelError]] if the Transform is invalid for a GeometricElement3d.
|
|
60850
60853
|
*/
|
|
60851
60854
|
multiplyTransform(other) {
|
|
@@ -84744,14 +84747,14 @@ class SectionAttachment {
|
|
|
84744
84747
|
return this._drawingExtents.z;
|
|
84745
84748
|
}
|
|
84746
84749
|
get drawingRange() {
|
|
84747
|
-
const frustum3d = this._originalFrustum.transformBy(this.
|
|
84750
|
+
const frustum3d = this._originalFrustum.transformBy(this.toDrawing);
|
|
84748
84751
|
return frustum3d.toRange();
|
|
84749
84752
|
}
|
|
84750
84753
|
constructor(view, toDrawing, fromDrawing, toSheet) {
|
|
84751
84754
|
this._viewRect = new _common_ViewRect__WEBPACK_IMPORTED_MODULE_13__.ViewRect(0, 0, 1, 1);
|
|
84752
84755
|
this._originalFrustum = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.Frustum();
|
|
84753
84756
|
// Save the input for clone(). Attach a copy to the viewport.
|
|
84754
|
-
this.
|
|
84757
|
+
this.toDrawing = toDrawing;
|
|
84755
84758
|
this._fromDrawing = fromDrawing;
|
|
84756
84759
|
this.viewport = _Viewport__WEBPACK_IMPORTED_MODULE_12__.OffScreenViewport.createViewport(view, new SectionTarget(this), true);
|
|
84757
84760
|
this.symbologyOverrides = new _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_8__.FeatureSymbology.Overrides(view);
|
|
@@ -84759,13 +84762,14 @@ class SectionAttachment {
|
|
|
84759
84762
|
let clip = this.view.getViewClip();
|
|
84760
84763
|
if (clip) {
|
|
84761
84764
|
clip = clip.clone();
|
|
84762
|
-
const clipTransform = toSheet ? toSheet.multiplyTransformTransform(this.
|
|
84765
|
+
const clipTransform = toSheet ? toSheet.multiplyTransformTransform(this.toDrawing) : this.toDrawing;
|
|
84763
84766
|
clip.transformInPlace(clipTransform);
|
|
84764
84767
|
clipVolume = _IModelApp__WEBPACK_IMPORTED_MODULE_7__.IModelApp.renderSystem.createClipVolume(clip);
|
|
84765
84768
|
}
|
|
84766
84769
|
this._branchOptions = {
|
|
84767
84770
|
clipVolume,
|
|
84768
84771
|
hline: view.getDisplayStyle3d().settings.hiddenLineSettings,
|
|
84772
|
+
viewAttachmentId: view.id,
|
|
84769
84773
|
frustum: {
|
|
84770
84774
|
is3d: true,
|
|
84771
84775
|
scale: { x: 1, y: 1 },
|
|
@@ -84775,7 +84779,7 @@ class SectionAttachment {
|
|
|
84775
84779
|
// Save off the original frustum (potentially adjusted by viewport).
|
|
84776
84780
|
this.viewport.setupFromView();
|
|
84777
84781
|
this.viewport.viewingSpace.getFrustum(_CoordSystem__WEBPACK_IMPORTED_MODULE_4__.CoordSystem.World, true, this._originalFrustum);
|
|
84778
|
-
const drawingFrustum = this._originalFrustum.transformBy(this.
|
|
84782
|
+
const drawingFrustum = this._originalFrustum.transformBy(this.toDrawing);
|
|
84779
84783
|
const drawingRange = drawingFrustum.toRange();
|
|
84780
84784
|
this._drawingExtents = drawingRange.diagonal();
|
|
84781
84785
|
this._drawingExtents.z = Math.abs(this._drawingExtents.z);
|
|
@@ -84790,7 +84794,7 @@ class SectionAttachment {
|
|
|
84790
84794
|
if (0 === pixelSize)
|
|
84791
84795
|
return;
|
|
84792
84796
|
// Adjust offscreen viewport's frustum based on intersection with drawing view frustum.
|
|
84793
|
-
const frustum3d = this._originalFrustum.transformBy(this.
|
|
84797
|
+
const frustum3d = this._originalFrustum.transformBy(this.toDrawing);
|
|
84794
84798
|
const frustumRange3d = frustum3d.toRange();
|
|
84795
84799
|
const frustum2d = context.viewport.getWorldFrustum();
|
|
84796
84800
|
const frustumRange2d = frustum2d.toRange();
|
|
@@ -84823,7 +84827,7 @@ class SectionAttachment {
|
|
|
84823
84827
|
graphics.symbologyOverrides = this.symbologyOverrides;
|
|
84824
84828
|
for (const graphic of source)
|
|
84825
84829
|
graphics.entries.push(graphic);
|
|
84826
|
-
const branch = context.createGraphicBranch(graphics, this.
|
|
84830
|
+
const branch = context.createGraphicBranch(graphics, this.toDrawing, this._branchOptions);
|
|
84827
84831
|
context.outputGraphic(branch);
|
|
84828
84832
|
};
|
|
84829
84833
|
outputGraphics(scene.foreground);
|
|
@@ -84996,6 +85000,17 @@ class DrawingViewState extends _ViewState__WEBPACK_IMPORTED_MODULE_14__.ViewStat
|
|
|
84996
85000
|
get secondaryViewports() {
|
|
84997
85001
|
return this._attachment ? [this._attachment.viewport] : super.secondaryViewports;
|
|
84998
85002
|
}
|
|
85003
|
+
/** @internal */
|
|
85004
|
+
getAttachmentViewport(id) {
|
|
85005
|
+
return id === this._attachment?.view.id ? this._attachment.viewport : undefined;
|
|
85006
|
+
}
|
|
85007
|
+
/** @internal */
|
|
85008
|
+
computeDisplayTransform(args) {
|
|
85009
|
+
if (args.viewAttachmentId === undefined || args.viewAttachmentId !== this._attachment?.view.id) {
|
|
85010
|
+
return undefined;
|
|
85011
|
+
}
|
|
85012
|
+
return this._attachment.toDrawing;
|
|
85013
|
+
}
|
|
84999
85014
|
}
|
|
85000
85015
|
/** Exposed strictly for testing and debugging. Indicates that when loading the view, the spatial view should be displayed even
|
|
85001
85016
|
* if `SectionDrawing.displaySpatialView` is not `true`.
|
|
@@ -87702,8 +87717,7 @@ class HitDetail {
|
|
|
87702
87717
|
* @alpha
|
|
87703
87718
|
*/
|
|
87704
87719
|
get isClassifier() { return this._props.isClassifier; }
|
|
87705
|
-
/** Information about the
|
|
87706
|
-
* @note Only [[SheetViewState]]s can have view attachments.
|
|
87720
|
+
/** Information about the attached view within which the hit geometry resides, if any.
|
|
87707
87721
|
* @beta
|
|
87708
87722
|
*/
|
|
87709
87723
|
get viewAttachment() { return this._props.viewAttachment; }
|
|
@@ -98387,7 +98401,9 @@ class ViewState extends _EntityState__WEBPACK_IMPORTED_MODULE_5__.ElementState {
|
|
|
98387
98401
|
get secondaryViewports() {
|
|
98388
98402
|
return [];
|
|
98389
98403
|
}
|
|
98390
|
-
/** Find the viewport that renders the contents of the view
|
|
98404
|
+
/** Find the viewport that renders the contents of the attached view with the specified element Id into this view.
|
|
98405
|
+
* For a sheet view, the Id refers to a ViewAttachment.
|
|
98406
|
+
* For a section drawing, it refers to a SpatialViewDefinition.
|
|
98391
98407
|
* @internal
|
|
98392
98408
|
*/
|
|
98393
98409
|
getAttachmentViewport(_id) {
|
|
@@ -223782,8 +223798,8 @@ class Matrix3d {
|
|
|
223782
223798
|
return Math.sqrt(sumLow) <= _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallAngleRadians * (1.0 + Math.sqrt(sumAll));
|
|
223783
223799
|
}
|
|
223784
223800
|
/**
|
|
223785
|
-
* If the matrix is diagonal
|
|
223786
|
-
*
|
|
223801
|
+
* If the matrix is diagonal with almost equal diagonal entries, return the first diagonal entry.
|
|
223802
|
+
* Otherwise return `undefined`.
|
|
223787
223803
|
*/
|
|
223788
223804
|
sameDiagonalScale() {
|
|
223789
223805
|
const sumAll = this.sumSquares();
|
|
@@ -223796,32 +223812,31 @@ class Matrix3d {
|
|
|
223796
223812
|
return undefined;
|
|
223797
223813
|
}
|
|
223798
223814
|
/**
|
|
223799
|
-
* Test if all rows and columns are unit length and
|
|
223800
|
-
* a
|
|
223801
|
-
* *
|
|
223815
|
+
* Test if all rows and columns are unit length and perpendicular to each other.
|
|
223816
|
+
* * If so, the matrix is either a rotation (determinant is +1) or a mirror (determinant is -1).
|
|
223817
|
+
* * Such a matrix is called "orthogonal" and its inverse is its transpose.
|
|
223802
223818
|
*/
|
|
223803
223819
|
testPerpendicularUnitRowsAndColumns() {
|
|
223804
223820
|
const product = this.multiplyMatrixMatrixTranspose(this);
|
|
223805
223821
|
return product.isIdentity;
|
|
223806
223822
|
}
|
|
223807
223823
|
/**
|
|
223808
|
-
* Test if the matrix is a
|
|
223809
|
-
* pairwise perpendicular and
|
|
223810
|
-
*
|
|
223824
|
+
* Test if the matrix is a rigid matrix.
|
|
223825
|
+
* * A rigid matrix is a rotation: its columns and rows are unit length and pairwise perpendicular, and its
|
|
223826
|
+
* determinant is +1.
|
|
223827
|
+
* @param allowMirror whether to widen the test to also return true if the matrix is a mirror (determinant is -1).
|
|
223811
223828
|
*/
|
|
223812
223829
|
isRigid(allowMirror = false) {
|
|
223813
223830
|
return this.testPerpendicularUnitRowsAndColumns() && (allowMirror || this.determinant() > 0);
|
|
223814
223831
|
}
|
|
223815
223832
|
/**
|
|
223816
|
-
* Test if
|
|
223817
|
-
*
|
|
223818
|
-
* the
|
|
223833
|
+
* Test if the instance is the product of a rigid matrix and a signed scale, and return both.
|
|
223834
|
+
* * Specifically, this is a test of whether the instance rows and columns are pairwise perpendicular and have equal
|
|
223835
|
+
* length. If so, the scale factor is this length, or its negative if the instance is a mirror, and dividing the
|
|
223836
|
+
* columns by this scale factor produces a rigid matrix (a rotation).
|
|
223819
223837
|
* @param result optional pre-allocated object to populate and return
|
|
223820
|
-
* @returns
|
|
223821
|
-
*
|
|
223822
|
-
* * Note that determinant of a rigid matrix is +1.
|
|
223823
|
-
* * The context for this method is to determine if the matrix is the product a `rotation` matrix and a uniform
|
|
223824
|
-
* `scale` matrix (diagonal matrix with all diagonal entries the same nonzero number).
|
|
223838
|
+
* @returns the factorization `{ rigidAxes, scale }` where `rigidAxes` is the instance matrix with `scale` factor
|
|
223839
|
+
* removed, or undefined if the factorization failed.
|
|
223825
223840
|
*/
|
|
223826
223841
|
factorRigidWithSignedScale(result) {
|
|
223827
223842
|
const product = this.multiplyMatrixMatrixTranspose(this);
|
|
@@ -223832,6 +223847,25 @@ class Matrix3d {
|
|
|
223832
223847
|
const scaleInverse = 1.0 / scale;
|
|
223833
223848
|
return { rigidAxes: this.scaleColumns(scaleInverse, scaleInverse, scaleInverse, result), scale };
|
|
223834
223849
|
}
|
|
223850
|
+
/**
|
|
223851
|
+
* Compute the factorization M = R*G, where R is rigid (a rotation) and G is whatever is left over (skew, scale,
|
|
223852
|
+
* mirror, etc).
|
|
223853
|
+
* * The rotation is computed from the instance by passing `axisOrder` into [[createRigidFromMatrix3d]].
|
|
223854
|
+
* @param rotation the rigid factor R
|
|
223855
|
+
* @param skew the non-rotation factor G = R^t * M (since R transposed is its inverse)
|
|
223856
|
+
* @param axisOrder optional cross product ordering for computing R
|
|
223857
|
+
* @return whether [[createRigidFromMatrix3d]] succeeded; if not, `rotation` is set to the identity, and `skew` is
|
|
223858
|
+
* set to this instance.
|
|
223859
|
+
*/
|
|
223860
|
+
factorRigidSkew(rotation, skew, axisOrder = _Geometry__WEBPACK_IMPORTED_MODULE_0__.AxisOrder.XYZ) {
|
|
223861
|
+
if (Matrix3d.createRigidFromMatrix3d(this, axisOrder, rotation)) {
|
|
223862
|
+
rotation.multiplyMatrixTransposeMatrix(this, skew);
|
|
223863
|
+
return true;
|
|
223864
|
+
}
|
|
223865
|
+
rotation.setIdentity();
|
|
223866
|
+
skew.setFrom(this);
|
|
223867
|
+
return false;
|
|
223868
|
+
}
|
|
223835
223869
|
/** Test if `this` matrix reorders and/or negates the columns of the `identity` matrix. */
|
|
223836
223870
|
get isSignedPermutation() {
|
|
223837
223871
|
let count = 0;
|
|
@@ -237454,7 +237488,8 @@ class Point4d extends _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
|
|
|
237454
237488
|
projectPointToPlane(spacePoint, result) {
|
|
237455
237489
|
const h = this.altitude(spacePoint);
|
|
237456
237490
|
const nn = this.magnitudeSquaredXYZ();
|
|
237457
|
-
|
|
237491
|
+
// this unusual tol is needed so that toPlane3dByOriginAndUnitNormal agrees with its original implementation
|
|
237492
|
+
const alpha = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideCoordinate(-h, nn, _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.largeFractionResult * _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.largeFractionResult);
|
|
237458
237493
|
if (alpha === undefined)
|
|
237459
237494
|
return spacePoint.clone(result);
|
|
237460
237495
|
return spacePoint.plusXYZ(alpha * this.x, alpha * this.y, alpha * this.z, result);
|
|
@@ -296417,7 +296452,7 @@ class TestContext {
|
|
|
296417
296452
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
296418
296453
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
296419
296454
|
await core_frontend_1.NoRenderApp.startup({
|
|
296420
|
-
applicationVersion: "4.10.0-dev.
|
|
296455
|
+
applicationVersion: "4.10.0-dev.29",
|
|
296421
296456
|
applicationId: this.settings.gprid,
|
|
296422
296457
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
296423
296458
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -301148,6 +301183,10 @@ class ContentFormatter {
|
|
|
301148
301183
|
displayValues[field.name] = "@Presentation:label.varies@";
|
|
301149
301184
|
continue;
|
|
301150
301185
|
}
|
|
301186
|
+
// do not add undefined value to display values
|
|
301187
|
+
if (value === undefined) {
|
|
301188
|
+
continue;
|
|
301189
|
+
}
|
|
301151
301190
|
// format display values of nested content field
|
|
301152
301191
|
if (field.isNestedContentField()) {
|
|
301153
301192
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(_Value__WEBPACK_IMPORTED_MODULE_3__.Value.isNestedContent(value));
|
|
@@ -321286,7 +321325,7 @@ function __disposeResources(env) {
|
|
|
321286
321325
|
/***/ ((module) => {
|
|
321287
321326
|
|
|
321288
321327
|
"use strict";
|
|
321289
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.10.0-dev.
|
|
321328
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.10.0-dev.29","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.10.0-dev.29","@itwin/core-bentley":"workspace:^4.10.0-dev.29","@itwin/core-common":"workspace:^4.10.0-dev.29","@itwin/core-geometry":"workspace:^4.10.0-dev.29","@itwin/core-orbitgt":"workspace:^4.10.0-dev.29","@itwin/core-quantity":"workspace:^4.10.0-dev.29"},"//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.2","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.2.4","@itwin/object-storage-core":"^2.2.5","@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"}}');
|
|
321290
321329
|
|
|
321291
321330
|
/***/ }),
|
|
321292
321331
|
|