@itwin/ecschema-rpcinterface-tests 4.10.0-dev.27 → 4.10.0-dev.28

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.
@@ -1 +1 @@
1
- {"version":3,"file":"_bea9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\18\\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":""}
1
+ {"version":3,"file":"_bea9.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|E:\\vsts_b\\79\\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":""}
@@ -48351,7 +48351,7 @@ var ElementGeometry;
48351
48351
  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());
48352
48352
  if (undefined !== localToWorld) {
48353
48353
  if (undefined !== transform)
48354
- transform.multiplyTransformTransform(localToWorld, transform);
48354
+ localToWorld.multiplyTransformTransform(transform, transform);
48355
48355
  else
48356
48356
  transform = localToWorld;
48357
48357
  }
@@ -48384,7 +48384,7 @@ var ElementGeometry;
48384
48384
  function fromBRep(brep, worldToLocal) {
48385
48385
  if (undefined !== worldToLocal) {
48386
48386
  const entityTrans = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Transform.fromJSON(brep.transform);
48387
- const localTrans = entityTrans.multiplyTransformTransform(worldToLocal);
48387
+ const localTrans = worldToLocal.multiplyTransformTransform(entityTrans);
48388
48388
  brep = {
48389
48389
  data: brep.data,
48390
48390
  type: brep.type,
@@ -48469,7 +48469,7 @@ var ElementGeometry;
48469
48469
  if (null !== entityTransform)
48470
48470
  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());
48471
48471
  if (undefined !== transform)
48472
- transform.multiplyTransformTransform(inputTransform, transform);
48472
+ inputTransform.multiplyTransformTransform(transform, transform);
48473
48473
  else
48474
48474
  transform = inputTransform;
48475
48475
  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);
@@ -54012,7 +54012,7 @@ class GeometryStreamBuilder {
54012
54012
  return true;
54013
54013
  }
54014
54014
  const entityTrans = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Transform.fromJSON(brep.transform);
54015
- const localTrans = entityTrans.multiplyTransformTransform(this._worldToLocal);
54015
+ const localTrans = this._worldToLocal.multiplyTransformTransform(entityTrans);
54016
54016
  const localBrep = {
54017
54017
  data: brep.data,
54018
54018
  type: brep.type,
@@ -54238,7 +54238,7 @@ class GeometryStreamIterator {
54238
54238
  else if (entry.brep) {
54239
54239
  if (this.entry.localToWorld !== undefined) {
54240
54240
  const entityTrans = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Transform.fromJSON(entry.brep.transform);
54241
- entry.brep.transform = entityTrans.multiplyTransformTransform(this.entry.localToWorld).toJSON();
54241
+ entry.brep.transform = this.entry.localToWorld.multiplyTransformTransform(entityTrans).toJSON();
54242
54242
  }
54243
54243
  this.entry.setBRep(entry.brep);
54244
54244
  return { value: this.entry, done: false };
@@ -54590,6 +54590,9 @@ class Placement3d {
54590
54590
  return range;
54591
54591
  }
54592
54592
  /** Multiply the Transform of this Placement3d by the specified *other* Transform.
54593
+ * * Specifically `this.angles` is set to the rotation specified by `other.matrix * this.transform.matrix`
54594
+ * and `this.origin` is set to the origin of `other * this.transform`.
54595
+ * * Since the placement transform is local-to-world, this means `other` is a world-to-world transform.
54593
54596
  * @throws [[IModelError]] if the Transform is invalid for a GeometricElement3d.
54594
54597
  */
54595
54598
  multiplyTransform(other) {
@@ -78660,14 +78663,14 @@ class SectionAttachment {
78660
78663
  return this._drawingExtents.z;
78661
78664
  }
78662
78665
  get drawingRange() {
78663
- const frustum3d = this._originalFrustum.transformBy(this._toDrawing);
78666
+ const frustum3d = this._originalFrustum.transformBy(this.toDrawing);
78664
78667
  return frustum3d.toRange();
78665
78668
  }
78666
78669
  constructor(view, toDrawing, fromDrawing, toSheet) {
78667
78670
  this._viewRect = new _common_ViewRect__WEBPACK_IMPORTED_MODULE_13__.ViewRect(0, 0, 1, 1);
78668
78671
  this._originalFrustum = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.Frustum();
78669
78672
  // Save the input for clone(). Attach a copy to the viewport.
78670
- this._toDrawing = toDrawing;
78673
+ this.toDrawing = toDrawing;
78671
78674
  this._fromDrawing = fromDrawing;
78672
78675
  this.viewport = _Viewport__WEBPACK_IMPORTED_MODULE_12__.OffScreenViewport.createViewport(view, new SectionTarget(this), true);
78673
78676
  this.symbologyOverrides = new _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_8__.FeatureSymbology.Overrides(view);
@@ -78675,13 +78678,14 @@ class SectionAttachment {
78675
78678
  let clip = this.view.getViewClip();
78676
78679
  if (clip) {
78677
78680
  clip = clip.clone();
78678
- const clipTransform = toSheet ? toSheet.multiplyTransformTransform(this._toDrawing) : this._toDrawing;
78681
+ const clipTransform = toSheet ? toSheet.multiplyTransformTransform(this.toDrawing) : this.toDrawing;
78679
78682
  clip.transformInPlace(clipTransform);
78680
78683
  clipVolume = _IModelApp__WEBPACK_IMPORTED_MODULE_7__.IModelApp.renderSystem.createClipVolume(clip);
78681
78684
  }
78682
78685
  this._branchOptions = {
78683
78686
  clipVolume,
78684
78687
  hline: view.getDisplayStyle3d().settings.hiddenLineSettings,
78688
+ viewAttachmentId: view.id,
78685
78689
  frustum: {
78686
78690
  is3d: true,
78687
78691
  scale: { x: 1, y: 1 },
@@ -78691,7 +78695,7 @@ class SectionAttachment {
78691
78695
  // Save off the original frustum (potentially adjusted by viewport).
78692
78696
  this.viewport.setupFromView();
78693
78697
  this.viewport.viewingSpace.getFrustum(_CoordSystem__WEBPACK_IMPORTED_MODULE_4__.CoordSystem.World, true, this._originalFrustum);
78694
- const drawingFrustum = this._originalFrustum.transformBy(this._toDrawing);
78698
+ const drawingFrustum = this._originalFrustum.transformBy(this.toDrawing);
78695
78699
  const drawingRange = drawingFrustum.toRange();
78696
78700
  this._drawingExtents = drawingRange.diagonal();
78697
78701
  this._drawingExtents.z = Math.abs(this._drawingExtents.z);
@@ -78706,7 +78710,7 @@ class SectionAttachment {
78706
78710
  if (0 === pixelSize)
78707
78711
  return;
78708
78712
  // Adjust offscreen viewport's frustum based on intersection with drawing view frustum.
78709
- const frustum3d = this._originalFrustum.transformBy(this._toDrawing);
78713
+ const frustum3d = this._originalFrustum.transformBy(this.toDrawing);
78710
78714
  const frustumRange3d = frustum3d.toRange();
78711
78715
  const frustum2d = context.viewport.getWorldFrustum();
78712
78716
  const frustumRange2d = frustum2d.toRange();
@@ -78739,7 +78743,7 @@ class SectionAttachment {
78739
78743
  graphics.symbologyOverrides = this.symbologyOverrides;
78740
78744
  for (const graphic of source)
78741
78745
  graphics.entries.push(graphic);
78742
- const branch = context.createGraphicBranch(graphics, this._toDrawing, this._branchOptions);
78746
+ const branch = context.createGraphicBranch(graphics, this.toDrawing, this._branchOptions);
78743
78747
  context.outputGraphic(branch);
78744
78748
  };
78745
78749
  outputGraphics(scene.foreground);
@@ -78912,6 +78916,17 @@ class DrawingViewState extends _ViewState__WEBPACK_IMPORTED_MODULE_14__.ViewStat
78912
78916
  get secondaryViewports() {
78913
78917
  return this._attachment ? [this._attachment.viewport] : super.secondaryViewports;
78914
78918
  }
78919
+ /** @internal */
78920
+ getAttachmentViewport(id) {
78921
+ return id === this._attachment?.view.id ? this._attachment.viewport : undefined;
78922
+ }
78923
+ /** @internal */
78924
+ computeDisplayTransform(args) {
78925
+ if (args.viewAttachmentId === undefined || args.viewAttachmentId !== this._attachment?.view.id) {
78926
+ return undefined;
78927
+ }
78928
+ return this._attachment.toDrawing;
78929
+ }
78915
78930
  }
78916
78931
  /** Exposed strictly for testing and debugging. Indicates that when loading the view, the spatial view should be displayed even
78917
78932
  * if `SectionDrawing.displaySpatialView` is not `true`.
@@ -81618,8 +81633,7 @@ class HitDetail {
81618
81633
  * @alpha
81619
81634
  */
81620
81635
  get isClassifier() { return this._props.isClassifier; }
81621
- /** Information about the [ViewAttachment]($backend) within which the hit geometry resides, if any.
81622
- * @note Only [[SheetViewState]]s can have view attachments.
81636
+ /** Information about the attached view within which the hit geometry resides, if any.
81623
81637
  * @beta
81624
81638
  */
81625
81639
  get viewAttachment() { return this._props.viewAttachment; }
@@ -92303,7 +92317,9 @@ class ViewState extends _EntityState__WEBPACK_IMPORTED_MODULE_5__.ElementState {
92303
92317
  get secondaryViewports() {
92304
92318
  return [];
92305
92319
  }
92306
- /** Find the viewport that renders the contents of the view attachment with the specified element Id into this view.
92320
+ /** Find the viewport that renders the contents of the attached view with the specified element Id into this view.
92321
+ * For a sheet view, the Id refers to a ViewAttachment.
92322
+ * For a section drawing, it refers to a SpatialViewDefinition.
92307
92323
  * @internal
92308
92324
  */
92309
92325
  getAttachmentViewport(_id) {
@@ -217698,8 +217714,8 @@ class Matrix3d {
217698
217714
  return Math.sqrt(sumLow) <= _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallAngleRadians * (1.0 + Math.sqrt(sumAll));
217699
217715
  }
217700
217716
  /**
217701
- * If the matrix is diagonal and all diagonals are almost equal, return the first diagonal (entry 0
217702
- * which is same as entry 4 and 8). Otherwise return `undefined`.
217717
+ * If the matrix is diagonal with almost equal diagonal entries, return the first diagonal entry.
217718
+ * Otherwise return `undefined`.
217703
217719
  */
217704
217720
  sameDiagonalScale() {
217705
217721
  const sumAll = this.sumSquares();
@@ -217712,32 +217728,31 @@ class Matrix3d {
217712
217728
  return undefined;
217713
217729
  }
217714
217730
  /**
217715
- * Test if all rows and columns are unit length and are perpendicular to each other, i.e., the matrix is either
217716
- * a `pure rotation` (determinant is +1) or is a `mirror` (determinant is -1).
217717
- * * **Note:** such a matrix is called `orthogonal` and its inverse is its transpose.
217731
+ * Test if all rows and columns are unit length and perpendicular to each other.
217732
+ * * If so, the matrix is either a rotation (determinant is +1) or a mirror (determinant is -1).
217733
+ * * Such a matrix is called "orthogonal" and its inverse is its transpose.
217718
217734
  */
217719
217735
  testPerpendicularUnitRowsAndColumns() {
217720
217736
  const product = this.multiplyMatrixMatrixTranspose(this);
217721
217737
  return product.isIdentity;
217722
217738
  }
217723
217739
  /**
217724
- * Test if the matrix is a `rigid` matrix (or `pure rotation`, i.e., columns and rows are unit length and
217725
- * pairwise perpendicular and determinant is +1).
217726
- * @param allowMirror whether to widen the test to return true if the matrix is a `mirror` (determinant is -1).
217740
+ * Test if the matrix is a rigid matrix.
217741
+ * * A rigid matrix is a rotation: its columns and rows are unit length and pairwise perpendicular, and its
217742
+ * determinant is +1.
217743
+ * @param allowMirror whether to widen the test to also return true if the matrix is a mirror (determinant is -1).
217727
217744
  */
217728
217745
  isRigid(allowMirror = false) {
217729
217746
  return this.testPerpendicularUnitRowsAndColumns() && (allowMirror || this.determinant() > 0);
217730
217747
  }
217731
217748
  /**
217732
- * Test if all rows and columns are perpendicular to each other and have equal length.
217733
- * If so, the length (or its negative) is the `scale` factor from a set of `orthonormal axes` to
217734
- * the set of axes created by columns of `this` matrix. Otherwise, returns `undefined`.
217749
+ * Test if the instance is the product of a rigid matrix and a signed scale, and return both.
217750
+ * * Specifically, this is a test of whether the instance rows and columns are pairwise perpendicular and have equal
217751
+ * length. If so, the scale factor is this length, or its negative if the instance is a mirror, and dividing the
217752
+ * columns by this scale factor produces a rigid matrix (a rotation).
217735
217753
  * @param result optional pre-allocated object to populate and return
217736
- * @returns returns `{ rigidAxes, scale }` where `rigidAxes` is a Matrix3d with its columns as the rigid axes
217737
- * (with the scale factor removed) and `scale` is the scale factor.
217738
- * * Note that determinant of a rigid matrix is +1.
217739
- * * The context for this method is to determine if the matrix is the product a `rotation` matrix and a uniform
217740
- * `scale` matrix (diagonal matrix with all diagonal entries the same nonzero number).
217754
+ * @returns the factorization `{ rigidAxes, scale }` where `rigidAxes` is the instance matrix with `scale` factor
217755
+ * removed, or undefined if the factorization failed.
217741
217756
  */
217742
217757
  factorRigidWithSignedScale(result) {
217743
217758
  const product = this.multiplyMatrixMatrixTranspose(this);
@@ -217748,6 +217763,25 @@ class Matrix3d {
217748
217763
  const scaleInverse = 1.0 / scale;
217749
217764
  return { rigidAxes: this.scaleColumns(scaleInverse, scaleInverse, scaleInverse, result), scale };
217750
217765
  }
217766
+ /**
217767
+ * Compute the factorization M = R*G, where R is rigid (a rotation) and G is whatever is left over (skew, scale,
217768
+ * mirror, etc).
217769
+ * * The rotation is computed from the instance by passing `axisOrder` into [[createRigidFromMatrix3d]].
217770
+ * @param rotation the rigid factor R
217771
+ * @param skew the non-rotation factor G = R^t * M (since R transposed is its inverse)
217772
+ * @param axisOrder optional cross product ordering for computing R
217773
+ * @return whether [[createRigidFromMatrix3d]] succeeded; if not, `rotation` is set to the identity, and `skew` is
217774
+ * set to this instance.
217775
+ */
217776
+ factorRigidSkew(rotation, skew, axisOrder = _Geometry__WEBPACK_IMPORTED_MODULE_0__.AxisOrder.XYZ) {
217777
+ if (Matrix3d.createRigidFromMatrix3d(this, axisOrder, rotation)) {
217778
+ rotation.multiplyMatrixTransposeMatrix(this, skew);
217779
+ return true;
217780
+ }
217781
+ rotation.setIdentity();
217782
+ skew.setFrom(this);
217783
+ return false;
217784
+ }
217751
217785
  /** Test if `this` matrix reorders and/or negates the columns of the `identity` matrix. */
217752
217786
  get isSignedPermutation() {
217753
217787
  let count = 0;
@@ -231370,7 +231404,8 @@ class Point4d extends _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
231370
231404
  projectPointToPlane(spacePoint, result) {
231371
231405
  const h = this.altitude(spacePoint);
231372
231406
  const nn = this.magnitudeSquaredXYZ();
231373
- const alpha = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideCoordinate(-h, nn);
231407
+ // this unusual tol is needed so that toPlane3dByOriginAndUnitNormal agrees with its original implementation
231408
+ 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);
231374
231409
  if (alpha === undefined)
231375
231410
  return spacePoint.clone(result);
231376
231411
  return spacePoint.plusXYZ(alpha * this.x, alpha * this.y, alpha * this.z, result);
@@ -304243,7 +304278,7 @@ var loadLanguages = instance.loadLanguages;
304243
304278
  /***/ ((module) => {
304244
304279
 
304245
304280
  "use strict";
304246
- module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.10.0-dev.27","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.27","@itwin/core-bentley":"workspace:^4.10.0-dev.27","@itwin/core-common":"workspace:^4.10.0-dev.27","@itwin/core-geometry":"workspace:^4.10.0-dev.27","@itwin/core-orbitgt":"workspace:^4.10.0-dev.27","@itwin/core-quantity":"workspace:^4.10.0-dev.27"},"//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"}}');
304281
+ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.10.0-dev.28","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.28","@itwin/core-bentley":"workspace:^4.10.0-dev.28","@itwin/core-common":"workspace:^4.10.0-dev.28","@itwin/core-geometry":"workspace:^4.10.0-dev.28","@itwin/core-orbitgt":"workspace:^4.10.0-dev.28","@itwin/core-quantity":"workspace:^4.10.0-dev.28"},"//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"}}');
304247
304282
 
304248
304283
  /***/ })
304249
304284