@itwin/ecschema-rpcinterface-tests 4.0.0-dev.60 → 4.0.0-dev.61

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":"_d48c.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\4\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.3.1\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
1
+ {"version":3,"file":"_d48c.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\6\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.3.1\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
@@ -79780,18 +79780,14 @@ class AccuSnap {
79780
79780
  onInitialized() { }
79781
79781
  get _searchDistance() { return this.isLocateEnabled ? 1.0 : this._settings.searchDistance; }
79782
79782
  get _hotDistanceInches() { return _IModelApp__WEBPACK_IMPORTED_MODULE_4__.IModelApp.locateManager.apertureInches * this._settings.hotDistanceFactor; }
79783
- /** Whether locate of elements under the cursor is enabled by the current InteractiveTool.
79784
- * @public
79785
- */
79783
+ /** Whether locate of elements under the cursor is enabled by the current InteractiveTool. */
79786
79784
  get isLocateEnabled() { return this.toolState.locate; }
79787
- /** Whether snapping to elements under the cursor is enabled by the current InteractiveTool.
79788
- * @public
79789
- */
79785
+ /** Whether snapping to elements under the cursor is enabled by the current InteractiveTool. */
79790
79786
  get isSnapEnabled() { return this.toolState.enabled; }
79791
- /** Whether the user setting for snapping is enabled. Snapping is done only when both the user and current InteractiveTool have enabled it.
79792
- * @public
79793
- */
79787
+ /** Whether the user setting for snapping is enabled. Snapping is done only when both the user and current InteractiveTool have enabled it. */
79794
79788
  get isSnapEnabledByUser() { return this._settings.enableFlag; }
79789
+ /** AccuSnap user settings */
79790
+ get userSettings() { return this._settings; }
79795
79791
  isFlashed(view) { return (this.areFlashed.has(view)); }
79796
79792
  needsFlash(view) { return (this.needFlash.has(view)); }
79797
79793
  setNeedsFlash(view) {
@@ -103352,6 +103348,7 @@ const extensionExports = {
103352
103348
  UniformType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.UniformType,
103353
103349
  VaryingType: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.VaryingType,
103354
103350
  ViewClipClearTool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipClearTool,
103351
+ ViewClipDecoration: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipDecoration,
103355
103352
  ViewClipDecorationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipDecorationProvider,
103356
103353
  ViewClipTool: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewClipTool,
103357
103354
  ViewCreator2d: _core_frontend__WEBPACK_IMPORTED_MODULE_2__.ViewCreator2d,
@@ -161762,14 +161759,22 @@ class ViewClipControlArrow {
161762
161759
  this.name = name;
161763
161760
  }
161764
161761
  }
161765
- /** @internal Controls to modify a view's clip */
161762
+ /** A pickable decoration managed by ViewClipDecorationProvider used to visualize a view's clip and present modification handles.
161763
+ * This class is public to facilitate customization of view clip events by type or selected controls.
161764
+ * @see [[ViewClipDecorationProvider]]
161765
+ * @public
161766
+ * @extensions
161767
+ */
161766
161768
  class ViewClipDecoration extends _EditManipulator__WEBPACK_IMPORTED_MODULE_8__.EditManipulator.HandleProvider {
161767
161769
  constructor(_clipView, _clipEventHandler) {
161768
161770
  super(_clipView.iModel);
161769
161771
  this._clipView = _clipView;
161770
161772
  this._clipEventHandler = _clipEventHandler;
161773
+ /** @internal */
161771
161774
  this._controlIds = [];
161775
+ /** @internal */
161772
161776
  this._controls = [];
161777
+ /** @internal */
161773
161778
  this._suspendDecorator = false;
161774
161779
  if (!this.getClipData())
161775
161780
  return;
@@ -162266,7 +162271,7 @@ class ViewClipDecoration extends _EditManipulator__WEBPACK_IMPORTED_MODULE_8__.E
162266
162271
  const transform = _EditManipulator__WEBPACK_IMPORTED_MODULE_8__.EditManipulator.HandleUtils.getArrowTransform(vp, anchorRay.origin, anchorRay.direction, sizeInches);
162267
162272
  if (undefined === transform)
162268
162273
  continue;
162269
- // deep copy beecause we're using a builder transform w/addLineString...
162274
+ // deep copy because we're using a builder transform w/addLineString...
162270
162275
  const visPts = shapePts.map((pt) => pt.clone());
162271
162276
  const hidPts = shapePts.map((pt) => pt.clone());
162272
162277
  const arrowVisBuilder = context.createGraphicBuilder(_render_GraphicBuilder__WEBPACK_IMPORTED_MODULE_7__.GraphicType.WorldOverlay, transform, this._controlIds[iFace]);
@@ -162386,6 +162391,7 @@ class ViewClipDecorationProvider {
162386
162391
  showDecoration(vp) { ViewClipDecoration.create(vp, this); }
162387
162392
  hideDecoration() { ViewClipDecoration.clear(); }
162388
162393
  async toggleDecoration(vp) { return ViewClipDecoration.toggle(vp, this); }
162394
+ isDecorationActive(vp) { return (undefined !== ViewClipDecoration.get(vp)); }
162389
162395
  static create() {
162390
162396
  if (undefined === ViewClipDecorationProvider._provider) {
162391
162397
  ViewClipDecoration.clear();
@@ -166833,7 +166839,7 @@ class InteractiveTool extends Tool {
166833
166839
  supplyToolSettingsProperties() { return undefined; }
166834
166840
  /** Used to receive property changes from UI. Return false if there was an error applying updatedValue.
166835
166841
  * @see [[changeToolSettingPropertyValue]]
166836
- * @beta
166842
+ * @public
166837
166843
  */
166838
166844
  async applyToolSettingPropertyChange(_updatedValue) { return true; }
166839
166845
  /** Called by tool to synchronize the UI with property changes made by tool. This is typically used to provide user feedback during tool dynamics.
@@ -167549,23 +167555,17 @@ class ToolAdmin {
167549
167555
  div.innerHTML = out;
167550
167556
  return _IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.notifications.openMessageBox(_NotificationManager__WEBPACK_IMPORTED_MODULE_7__.MessageBoxType.MediumAlert, div, _NotificationManager__WEBPACK_IMPORTED_MODULE_7__.MessageBoxIconType.Critical);
167551
167557
  }
167552
- /** Returns the handler registered by the UI layer that allows it to display property changes made by the active Tool.
167553
- * @internal
167554
- */
167558
+ /** Returns the handler registered by the UI layer that allows it to display property changes made by the active Tool. */
167555
167559
  get toolSettingsChangeHandler() { return this._toolSettingsChangeHandler; }
167556
167560
  set toolSettingsChangeHandler(handler) {
167557
167561
  this._toolSettingsChangeHandler = handler;
167558
167562
  }
167559
- /** Returns the handler registered by the UI layer that allows it to display property changes made by the active Tool.
167560
- * @internal
167561
- */
167563
+ /** Returns the handler registered by the UI layer that allows it to display property changes made by the active Tool. */
167562
167564
  get reloadToolSettingsHandler() { return this._reloadToolSettingsHandler; }
167563
167565
  set reloadToolSettingsHandler(handler) {
167564
167566
  this._reloadToolSettingsHandler = handler;
167565
167567
  }
167566
- /** Returns the handler registered by the UI layer that will trigger UiSyncEvent processing that informs UI component to refresh their state.
167567
- * @internal
167568
- */
167568
+ /** Returns the handler registered by the UI layer that will trigger UiSyncEvent processing that informs UI component to refresh their state. */
167569
167569
  get toolSyncUiEventDispatcher() { return this._toolSyncUiEventDispatcher; }
167570
167570
  set toolSyncUiEventDispatcher(handler) {
167571
167571
  this._toolSyncUiEventDispatcher = handler;
@@ -168520,7 +168520,6 @@ class ToolAdmin {
168520
168520
  * To "bump" a setting means to toggle a boolean value or cycle through enum values.
168521
168521
  * If no `settingIndex` param is specified, the first setting is bumped.
168522
168522
  * Returns true if the setting was successfully bumped.
168523
- * @beta
168524
168523
  */
168525
168524
  async bumpToolSetting(settingIndex) {
168526
168525
  return this.currentTool.bumpToolSetting(settingIndex);
@@ -168530,7 +168529,6 @@ class ToolAdmin {
168530
168529
  * more important user interaction processing is required.
168531
168530
  * @param specificSyncEventId Optional sync event id. If not specified then "tool-admin-refresh-ui" is used.
168532
168531
  * @param toolId Optional, will be used if specificSyncEventId is not specified. If used, the resulting sync event Id will be created using `tool-admin-refresh-ui-${toolId}`.toLowerCase()
168533
- * @beta
168534
168532
  */
168535
168533
  dispatchImmediateUiSyncEvent(specificSyncEventId, toolId) {
168536
168534
  const defaultRefreshEventId = "tool-admin-refresh-ui";
@@ -168548,7 +168546,6 @@ class ToolAdmin {
168548
168546
  * to be processed together.
168549
168547
  * @param specificSyncEventId Optional sync event id. If not specified then "tool-admin-refresh-ui" is used.
168550
168548
  * @param toolId Optional, will be used if specificSyncEventId is not specified. If used, the resulting sync event Id will be created using `tool-admin-refresh-ui-${toolId}`.toLowerCase()
168551
- * @beta
168552
168549
  */
168553
168550
  dispatchUiSyncEvent(specificSyncEventId, toolId) {
168554
168551
  const defaultRefreshEventId = "tool-admin-refresh-ui";
@@ -168700,6 +168697,9 @@ class ToolAdmin {
168700
168697
  this.setLocateCircleOn(enableLocate);
168701
168698
  viewManager.invalidateDecorationsAllViews();
168702
168699
  }
168700
+ /** Controls how the button event location is adjusted for the active tool */
168701
+ get coordinateLockOverrides() { return this.toolState.coordLockOvr; }
168702
+ set coordinateLockOverrides(coordLockOvr) { this.toolState.coordLockOvr = coordLockOvr; }
168703
168703
  /** @internal */
168704
168704
  async callOnCleanup() {
168705
168705
  await this.exitViewTool();
@@ -174536,7 +174536,6 @@ __webpack_require__.r(__webpack_exports__);
174536
174536
 
174537
174537
 
174538
174538
 
174539
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
174540
174539
  /**
174541
174540
  * Base class for BSplineCurve3d and BSplineCurve3dH.
174542
174541
  * * A bspline curve consists of a set of knots and a set of poles.
@@ -175237,11 +175236,9 @@ __webpack_require__.r(__webpack_exports__);
175237
175236
  /** @packageDocumentation
175238
175237
  * @module Serialization
175239
175238
  */
175240
- // import { Point2d } from "../Geometry2d";
175241
175239
 
175242
175240
 
175243
175241
 
175244
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
175245
175242
 
175246
175243
 
175247
175244
 
@@ -175659,14 +175656,14 @@ __webpack_require__.r(__webpack_exports__);
175659
175656
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
175660
175657
  /* harmony export */ "BSplineCurveOps": () => (/* binding */ BSplineCurveOps)
175661
175658
  /* harmony export */ });
175659
+ /* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
175662
175660
  /* harmony import */ var _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../geometry3d/GrowableXYZArray */ "../../core/geometry/lib/esm/geometry3d/GrowableXYZArray.js");
175663
175661
  /* harmony import */ var _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../geometry3d/IndexedXYZCollection */ "../../core/geometry/lib/esm/geometry3d/IndexedXYZCollection.js");
175664
- /* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
175665
175662
  /* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
175663
+ /* harmony import */ var _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../geometry3d/PointHelpers */ "../../core/geometry/lib/esm/geometry3d/PointHelpers.js");
175666
175664
  /* harmony import */ var _numerics_BandedSystem__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../numerics/BandedSystem */ "../../core/geometry/lib/esm/numerics/BandedSystem.js");
175667
175665
  /* harmony import */ var _BSplineCurve__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./BSplineCurve */ "../../core/geometry/lib/esm/bspline/BSplineCurve.js");
175668
175666
  /* harmony import */ var _KnotVector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./KnotVector */ "../../core/geometry/lib/esm/bspline/KnotVector.js");
175669
- /* harmony import */ var _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../geometry3d/PointHelpers */ "../../core/geometry/lib/esm/geometry3d/PointHelpers.js");
175670
175667
  /*---------------------------------------------------------------------------------------------
175671
175668
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
175672
175669
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -175674,7 +175671,6 @@ __webpack_require__.r(__webpack_exports__);
175674
175671
  /** @packageDocumentation
175675
175672
  * @module Bspline
175676
175673
  */
175677
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
175678
175674
 
175679
175675
 
175680
175676
 
@@ -176518,9 +176514,7 @@ __webpack_require__.r(__webpack_exports__);
176518
176514
  /** @packageDocumentation
176519
176515
  * @module Bspline
176520
176516
  */
176521
- // import { Point2d } from "./Geometry2d";
176522
176517
 
176523
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
176524
176518
 
176525
176519
 
176526
176520
 
@@ -178348,7 +178342,6 @@ __webpack_require__.r(__webpack_exports__);
178348
178342
 
178349
178343
 
178350
178344
 
178351
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
178352
178345
  /**
178353
178346
  * Base class for CurvePrimitive (necessarily 3D) with _polygon.
178354
178347
  * * This has a Bezier1dNd polygon as a member, and implements dimension-independent methods
@@ -178883,8 +178876,6 @@ __webpack_require__.r(__webpack_exports__);
178883
178876
  /** @packageDocumentation
178884
178877
  * @module Bspline
178885
178878
  */
178886
- // import { Point2d } from "../Geometry2d";
178887
- /* eslint-disable @typescript-eslint/naming-convention, no-empty, no-console*/
178888
178879
 
178889
178880
 
178890
178881
  /**
@@ -199565,7 +199556,7 @@ class Joint {
199565
199556
  static removeDegeneratePrimitives(start, options, maxTest) {
199566
199557
  /*
199567
199558
  if (Checker.noisy.PolygonOffset)
199568
- console.log("\nENTER removeDegenerates");
199559
+ GeometryCoreTestIO.consoleLog("\nENTER removeDegenerates");
199569
199560
  */
199570
199561
  let jointA = start;
199571
199562
  let numRemoved = 0;
@@ -199587,10 +199578,10 @@ class Joint {
199587
199578
  // f0 and f1 are fractions on the single primitive between these joints.
199588
199579
  /*
199589
199580
  if (Checker.noisy.PolygonOffset) {
199590
- console.log("joint candidate");
199591
- console.log(prettyPrint(jointA.shallowExtract()));
199592
- console.log(prettyPrint(jointB.shallowExtract()));
199593
- console.log("FRACTIONS ", { fA1: f0, fB0: f1 });
199581
+ GeometryCoreTestIO.consoleLog("joint candidate");
199582
+ GeometryCoreTestIO.consoleLog(prettyPrint(jointA.shallowExtract()));
199583
+ GeometryCoreTestIO.consoleLog(prettyPrint(jointB.shallowExtract()));
199584
+ GeometryCoreTestIO.consoleLog("FRACTIONS ", { fA1: f0, fB0: f1 });
199594
199585
  }
199595
199586
  */
199596
199587
  const eliminateF = f0 >= f1 || f0 > 1.0;
@@ -199607,8 +199598,8 @@ class Joint {
199607
199598
  newJoint.nextJoint.annotateJointMode(options);
199608
199599
  /*
199609
199600
  if (Checker.noisy.PolygonOffset) {
199610
- console.log(" NEW DOUBLE CUT");
199611
- console.log(prettyPrint(newJoint.shallowExtract()));
199601
+ GeometryCoreTestIO.consoleLog(" NEW DOUBLE CUT");
199602
+ GeometryCoreTestIO.consoleLog(prettyPrint(newJoint.shallowExtract()));
199612
199603
  }
199613
199604
  */
199614
199605
  }
@@ -199621,8 +199612,8 @@ class Joint {
199621
199612
  newJoint.nextJoint.annotateJointMode(options);
199622
199613
  /*
199623
199614
  if (Checker.noisy.PolygonOffset) {
199624
- console.log(" NEW JOINT");
199625
- console.log(prettyPrint(newJoint.shallowExtract()));
199615
+ GeometryCoreTestIO.consoleLog(" NEW JOINT");
199616
+ GeometryCoreTestIO.consoleLog(prettyPrint(newJoint.shallowExtract()));
199626
199617
  }
199627
199618
  */
199628
199619
  numRemoved++;
@@ -199632,7 +199623,7 @@ class Joint {
199632
199623
  if (numRemoved >= maxRemove) {
199633
199624
  /*
199634
199625
  if (Checker.noisy.PolygonOffset)
199635
- console.log(" EXIT removeDegenerates at maxRemove\n");
199626
+ GeometryCoreTestIO.consoleLog(" EXIT removeDegenerates at maxRemove\n");
199636
199627
  */
199637
199628
  return { newStart: start, numJointRemoved: numRemoved };
199638
199629
  }
@@ -199700,8 +199691,8 @@ class PolygonWireOffsetContext {
199700
199691
  break;
199701
199692
  /*
199702
199693
  if (Checker.noisy.PolygonOffset) {
199703
- console.log(" POST REMOVE DEGENERATES " + state.numJointRemoved);
199704
- Joint.visitJointsOnChain(joint0, (joint: Joint) => { console.log(prettyPrint(joint.shallowExtract())); return true; });
199694
+ GeometryCoreTestIO.consoleLog(" POST REMOVE DEGENERATES " + state.numJointRemoved);
199695
+ Joint.visitJointsOnChain(joint0, (joint: Joint) => { GeometryCoreTestIO.consoleLog(prettyPrint(joint.shallowExtract())); return true; });
199705
199696
  }
199706
199697
  */
199707
199698
  }
@@ -201490,7 +201481,7 @@ class IntegratedSpiral3d extends _TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_0_
201490
201481
  const index0 = Math.trunc(clampedGlobalFraction * numStrokes); // This indexes the point to the left of the query.
201491
201482
  const globalFraction0 = index0 / numStrokes;
201492
201483
  result = this._globalStrokes.packedPoints.getPoint3dAtUncheckedPointIndex(index0, result);
201493
- // console.log(" fractionToPoint ", activeFraction, this.activeFractionInterval, "( global integration " + globalFraction0 + " to " + globalFraction + ")", index0);
201484
+ // GeometryCoreTestIO.consoleLog(" fractionToPoint ", activeFraction, this.activeFractionInterval, "( global integration " + globalFraction0 + " to " + globalFraction + ")", index0);
201494
201485
  this.fullSpiralIncrementalIntegral(result, globalFraction0, targetGlobalFraction, true);
201495
201486
  }
201496
201487
  return result;
@@ -216836,7 +216827,7 @@ class PolygonOps {
216836
216827
  }
216837
216828
  }
216838
216829
  s *= 0.5;
216839
- // console.log ("polygon area ", s, points);
216830
+ // GeometryCoreTestIO.consoleLog("polygon area ", s, points);
216840
216831
  return s;
216841
216832
  }
216842
216833
  /** return a vector which is perpendicular to the polygon and has magnitude equal to the polygon area. */
@@ -228188,7 +228179,7 @@ class TrigPolynomial {
228188
228179
  for (const theta of angles) {
228189
228180
  const c = theta.cos();
228190
228181
  const s = theta.sin();
228191
- console.log({
228182
+ GeometryCoreTestIO.consoleLog({
228192
228183
  angle: theta, co: c, si: s,
228193
228184
  f: axx * c * c + axy * c * s + ayy * s * s + ax * c + ay * s + a1});
228194
228185
  } */
@@ -235902,11 +235893,10 @@ class PolyfaceQuery {
235902
235893
  while (0 < (workCount = await Promise.resolve(PolyfaceQuery.continueAnnounceSweepLinestringToConvexPolyfaceXY(context, visitor, announce)))) {
235903
235894
  workTotal += workCount;
235904
235895
  this.awaitBlockCount++;
235905
- // console.log({ myWorkCount: workCount, myBlockCount: this.awaitBlockCount });
235896
+ // GeometryCoreTestIO.consoleLog({ myWorkCount: workCount, myBlockCount: this.awaitBlockCount });
235906
235897
  }
235907
235898
  }
235908
- // eslint-disable-next-line no-console
235909
- // console.log({ myWorkTotal: workTotal, myBlockCount: this.awaitBlockCount });
235899
+ // GeometryCoreTestIO.consoleLog({ myWorkTotal: workTotal, myBlockCount: this.awaitBlockCount });
235910
235900
  return workTotal;
235911
235901
  }
235912
235902
  /** Search the facets for facet subsets that are connected with at least vertex contact.
@@ -248198,7 +248188,7 @@ class Sample {
248198
248188
  * @param dy3
248199
248189
  * @param dy4
248200
248190
  */
248201
- static creatVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4) {
248191
+ static createVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4) {
248202
248192
  const points = [];
248203
248193
  points.push(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(0, 0));
248204
248194
  points.push(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(ax + dx1, dy1));
@@ -248209,6 +248199,11 @@ class Sample {
248209
248199
  points.push(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(0, 0));
248210
248200
  return points;
248211
248201
  }
248202
+ // cspell:word creat
248203
+ /** @deprecated in 4.x. Use createVerticalStaggerPolygon instead. */
248204
+ static creatVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4) {
248205
+ return this.createVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4);
248206
+ }
248212
248207
  /**
248213
248208
  * Make line segments for each pair of adjacent points.
248214
248209
  * @param points array of points
@@ -248614,9 +248609,12 @@ __webpack_require__.r(__webpack_exports__);
248614
248609
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
248615
248610
  /* harmony export */ "IModelJson": () => (/* binding */ IModelJson)
248616
248611
  /* harmony export */ });
248612
+ /* harmony import */ var _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../bspline/AkimaCurve3d */ "../../core/geometry/lib/esm/bspline/AkimaCurve3d.js");
248617
248613
  /* harmony import */ var _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../bspline/BSplineCurve */ "../../core/geometry/lib/esm/bspline/BSplineCurve.js");
248618
248614
  /* harmony import */ var _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../bspline/BSplineCurve3dH */ "../../core/geometry/lib/esm/bspline/BSplineCurve3dH.js");
248615
+ /* harmony import */ var _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../bspline/BSplineCurveOps */ "../../core/geometry/lib/esm/bspline/BSplineCurveOps.js");
248619
248616
  /* harmony import */ var _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../bspline/BSplineSurface */ "../../core/geometry/lib/esm/bspline/BSplineSurface.js");
248617
+ /* harmony import */ var _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../bspline/InterpolationCurve3d */ "../../core/geometry/lib/esm/bspline/InterpolationCurve3d.js");
248620
248618
  /* harmony import */ var _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../bspline/KnotVector */ "../../core/geometry/lib/esm/bspline/KnotVector.js");
248621
248619
  /* harmony import */ var _curve_Arc3d__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../curve/Arc3d */ "../../core/geometry/lib/esm/curve/Arc3d.js");
248622
248620
  /* harmony import */ var _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../curve/CoordinateXYZ */ "../../core/geometry/lib/esm/curve/CoordinateXYZ.js");
@@ -248628,6 +248626,7 @@ __webpack_require__.r(__webpack_exports__);
248628
248626
  /* harmony import */ var _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../curve/ParityRegion */ "../../core/geometry/lib/esm/curve/ParityRegion.js");
248629
248627
  /* harmony import */ var _curve_Path__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../curve/Path */ "../../core/geometry/lib/esm/curve/Path.js");
248630
248628
  /* harmony import */ var _curve_PointString3d__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../curve/PointString3d */ "../../core/geometry/lib/esm/curve/PointString3d.js");
248629
+ /* harmony import */ var _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../curve/spiral/DirectSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/DirectSpiral3d.js");
248631
248630
  /* harmony import */ var _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../curve/spiral/IntegratedSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/IntegratedSpiral3d.js");
248632
248631
  /* harmony import */ var _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../curve/UnionRegion */ "../../core/geometry/lib/esm/curve/UnionRegion.js");
248633
248632
  /* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
@@ -248644,6 +248643,7 @@ __webpack_require__.r(__webpack_exports__);
248644
248643
  /* harmony import */ var _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../geometry4d/Point4d */ "../../core/geometry/lib/esm/geometry4d/Point4d.js");
248645
248644
  /* harmony import */ var _polyface_AuxData__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../polyface/AuxData */ "../../core/geometry/lib/esm/polyface/AuxData.js");
248646
248645
  /* harmony import */ var _polyface_Polyface__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../polyface/Polyface */ "../../core/geometry/lib/esm/polyface/Polyface.js");
248646
+ /* harmony import */ var _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../polyface/TaggedNumericData */ "../../core/geometry/lib/esm/polyface/TaggedNumericData.js");
248647
248647
  /* harmony import */ var _solid_Box__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../solid/Box */ "../../core/geometry/lib/esm/solid/Box.js");
248648
248648
  /* harmony import */ var _solid_Cone__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../solid/Cone */ "../../core/geometry/lib/esm/solid/Cone.js");
248649
248649
  /* harmony import */ var _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../solid/LinearSweep */ "../../core/geometry/lib/esm/solid/LinearSweep.js");
@@ -248651,15 +248651,13 @@ __webpack_require__.r(__webpack_exports__);
248651
248651
  /* harmony import */ var _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../solid/RuledSweep */ "../../core/geometry/lib/esm/solid/RuledSweep.js");
248652
248652
  /* harmony import */ var _solid_Sphere__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../solid/Sphere */ "../../core/geometry/lib/esm/solid/Sphere.js");
248653
248653
  /* harmony import */ var _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../solid/TorusPipe */ "../../core/geometry/lib/esm/solid/TorusPipe.js");
248654
- /* harmony import */ var _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../curve/spiral/DirectSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/DirectSpiral3d.js");
248655
- /* harmony import */ var _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../polyface/TaggedNumericData */ "../../core/geometry/lib/esm/polyface/TaggedNumericData.js");
248656
- /* harmony import */ var _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../bspline/InterpolationCurve3d */ "../../core/geometry/lib/esm/bspline/InterpolationCurve3d.js");
248657
- /* harmony import */ var _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../bspline/AkimaCurve3d */ "../../core/geometry/lib/esm/bspline/AkimaCurve3d.js");
248658
- /* harmony import */ var _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../bspline/BSplineCurveOps */ "../../core/geometry/lib/esm/bspline/BSplineCurveOps.js");
248659
248654
  /*---------------------------------------------------------------------------------------------
248660
248655
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
248661
248656
  * See LICENSE.md in the project root for license terms and full copyright notice.
248662
248657
  *--------------------------------------------------------------------------------------------*/
248658
+ /** @packageDocumentation
248659
+ * @module Serialization
248660
+ */
248663
248661
 
248664
248662
 
248665
248663
 
@@ -248703,7 +248701,6 @@ __webpack_require__.r(__webpack_exports__);
248703
248701
 
248704
248702
 
248705
248703
  // cspell:word bagof
248706
- /* eslint-disable no-console*/
248707
248704
  /**
248708
248705
  * `ImodelJson` namespace has classes for serializing and deserialization json objects
248709
248706
  * @public
@@ -256238,16 +256235,14 @@ class HalfEdgeGraphMerge {
256238
256235
  const unmatchedNullFaceNodes = [];
256239
256236
  k0 = 0;
256240
256237
  let thetaA, thetaB;
256241
- // eslint-disable-next-line no-console
256242
- // console.log("START VERTEX LINKS");
256238
+ // GeometryCoreTestIO.consoleLog("START VERTEX LINKS");
256243
256239
  // now pinch each neighboring pair together
256244
256240
  for (let k1 = 0; k1 < numK; k1++) {
256245
256241
  if (order[k1] === _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_4__.ClusterableArray.clusterTerminator) {
256246
256242
  // nodes identified in order[k0]..order[k1-1] are properly sorted around a vertex.
256247
256243
  if (k1 > k0) {
256248
256244
  // const xy = clusters.getPoint2d(order[k0]);
256249
- // eslint-disable-next-line no-console
256250
- // console.log({ k0, k1, x: xy.x, y: xy.y });
256245
+ // GeometryCoreTestIO.consoleLog({ k0, k1, x: xy.x, y: xy.y });
256251
256246
  if (k1 > k0 + 1)
256252
256247
  this.secondarySortAroundVertex(clusters, order, allNodes, k0, k1);
256253
256248
  this.doAnnounceVertexNeighborhood(clusters, order, allNodes, k0, k1);
@@ -256463,7 +256458,6 @@ __webpack_require__.r(__webpack_exports__);
256463
256458
  */
256464
256459
 
256465
256460
 
256466
- // /* eslint-disable no-console */
256467
256461
  /**
256468
256462
  * * Context for regularizing single faces.
256469
256463
  * @internal
@@ -256596,7 +256590,7 @@ class RegularizationContext {
256596
256590
  // for horizontal edge cases -- require edges ends to have strict sign change (no zeros!!)
256597
256591
  const cRight = _Merging__WEBPACK_IMPORTED_MODULE_0__.HalfEdgeGraphOps.compareNodesYXUp(node, rightBase);
256598
256592
  const cTop = _Merging__WEBPACK_IMPORTED_MODULE_0__.HalfEdgeGraphOps.compareNodesYXUp(node, rightTop);
256599
- // console.log(node.id, rightBase.id, rightTop.id, cRight, cTop);
256593
+ // GeometryCoreTestIO.consoleLog(node.id, rightBase.id, rightTop.id, cRight, cTop);
256600
256594
  if (cRight * cTop >= 0)
256601
256595
  continue;
256602
256596
  const fraction = _Graph__WEBPACK_IMPORTED_MODULE_1__.HalfEdge.horizontalScanFraction01(rightBase, y0);
@@ -256718,12 +256712,12 @@ class RegularizationContext {
256718
256712
  if (upSweep) {
256719
256713
  this.bottomPeaks.sort(_Merging__WEBPACK_IMPORTED_MODULE_0__.HalfEdgeGraphOps.compareNodesYXUp);
256720
256714
  for (const bottomPeak of this.bottomPeaks) {
256721
- // console.log("SEARCH", bottomPeak.id, [bottomPeak.x, bottomPeak.y]);
256715
+ // GeometryCoreTestIO.consoleLog("SEARCH", bottomPeak.id, [bottomPeak.x, bottomPeak.y]);
256722
256716
  if (!_Merging__WEBPACK_IMPORTED_MODULE_0__.HalfEdgeGraphOps.isDownPeak(bottomPeak))
256723
256717
  continue;
256724
256718
  const target = this.downwardConnectionFromBottomPeak(bottomPeak);
256725
256719
  if (target !== undefined) {
256726
- // console.log("join", bottomPeak.id, [bottomPeak.x, bottomPeak.y], target.id, [target.x, target.y]);
256720
+ // GeometryCoreTestIO.consoleLog("join", bottomPeak.id, [bottomPeak.x, bottomPeak.y], target.id, [target.x, target.y]);
256727
256721
  this.joinNodes(bottomPeak, target, 1);
256728
256722
  }
256729
256723
  }
@@ -289075,7 +289069,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
289075
289069
  /***/ ((module) => {
289076
289070
 
289077
289071
  "use strict";
289078
- module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.60","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 \\"./node_modules/@itwin/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:^4.0.0-dev.60","@itwin/core-bentley":"workspace:^4.0.0-dev.60","@itwin/core-common":"workspace:^4.0.0-dev.60","@itwin/core-geometry":"workspace:^4.0.0-dev.60","@itwin/core-orbitgt":"workspace:^4.0.0-dev.60","@itwin/core-quantity":"workspace:^4.0.0-dev.60"},"//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.0-dev.32","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.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":"~5.0.2","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/object-storage-azure":"^1.5.0","@itwin/cloud-agnostic-core":"^1.5.0","@itwin/object-storage-core":"^1.5.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","qs":"^6.5.3","semver":"^7.3.5","superagent":"^7.1.5","wms-capabilities":"0.4.0","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"}}]}}');
289072
+ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.61","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 \\"./node_modules/@itwin/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:^4.0.0-dev.61","@itwin/core-bentley":"workspace:^4.0.0-dev.61","@itwin/core-common":"workspace:^4.0.0-dev.61","@itwin/core-geometry":"workspace:^4.0.0-dev.61","@itwin/core-orbitgt":"workspace:^4.0.0-dev.61","@itwin/core-quantity":"workspace:^4.0.0-dev.61"},"//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.0-dev.32","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.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":"~5.0.2","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/object-storage-azure":"^1.5.0","@itwin/cloud-agnostic-core":"^1.5.0","@itwin/object-storage-core":"^1.5.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","qs":"^6.5.3","semver":"^7.3.5","superagent":"^7.1.5","wms-capabilities":"0.4.0","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"}}]}}');
289079
289073
 
289080
289074
  /***/ })
289081
289075