@itwin/ecschema-rpcinterface-tests 4.0.0-dev.4 → 4.0.0-dev.6

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":"_07c5.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\6\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.2.13\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
1
+ {"version":3,"file":"_07c5.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_a\\4\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.2.13\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
@@ -144037,15 +144037,6 @@ class Bundle {
144037
144037
  return undefined;
144038
144038
  }
144039
144039
  const colorTextures = [];
144040
- // Check if the system can render to a depth texture without a renderable color texture bound as well.
144041
- // If it cannot, add a renderable color texture to the framebuffer.
144042
- // MacOS Safari exhibited this behavior, which necessitated this code path.
144043
- if (!_System__WEBPACK_IMPORTED_MODULE_13__.System.instance.canRenderDepthWithoutColor) {
144044
- const colTex = _Texture__WEBPACK_IMPORTED_MODULE_14__.TextureHandle.createForAttachment(shadowMapWidth, shadowMapHeight, _GL__WEBPACK_IMPORTED_MODULE_8__.GL.Texture.Format.Rgba, pixelDataType);
144045
- if (undefined === colTex)
144046
- return undefined;
144047
- colorTextures.push(colTex);
144048
- }
144049
144040
  const fbo = _FrameBuffer__WEBPACK_IMPORTED_MODULE_7__.FrameBuffer.create(colorTextures, depthTextureHandle);
144050
144041
  if (undefined === fbo)
144051
144042
  return undefined;
@@ -145080,7 +145071,6 @@ class System extends _RenderSystem__WEBPACK_IMPORTED_MODULE_7__.RenderSystem {
145080
145071
  get maxTextureSize() { return this._capabilities.maxTextureSize; }
145081
145072
  get supportsCreateImageBitmap() { return this._capabilities.supportsCreateImageBitmap; }
145082
145073
  get maxRenderType() { return this._capabilities.maxRenderType; }
145083
- get canRenderDepthWithoutColor() { return this._capabilities.canRenderDepthWithoutColor; }
145084
145074
  get fragDepthDoesNotDisableEarlyZ() { return this._capabilities.driverBugs.fragDepthDoesNotDisableEarlyZ; }
145085
145075
  get maxAntialiasSamples() { return this._capabilities.maxAntialiasSamples; }
145086
145076
  get supportsNonPowerOf2Textures() { return this._capabilities.supportsNonPowerOf2Textures; }
@@ -165320,8 +165310,7 @@ class RealityTileTree extends _internal__WEBPACK_IMPORTED_MODULE_6__.TileTree {
165320
165310
  if (imageryTiles.length)
165321
165311
  this.logTiles("Imagery:", imageryTiles.values());
165322
165312
  }
165323
- if (context.missing.length === 0)
165324
- this.reportTileVisibility(args, selected);
165313
+ this.reportTileVisibility(args, selected);
165325
165314
  _IModelApp__WEBPACK_IMPORTED_MODULE_4__.IModelApp.tileAdmin.addTilesForUser(args.context.viewport, selected, args.readyTiles);
165326
165315
  return selected;
165327
165316
  }
@@ -171589,16 +171578,21 @@ class ImageryMapTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTile
171589
171578
  this.parent.setLeaf(); // Avoid traversing bing branches after no graphics is found.
171590
171579
  this.setIsReady();
171591
171580
  }
171592
- selectCartoDrapeTiles(drapeTiles, rectangleToDrape, drapePixelSize, args) {
171581
+ selectCartoDrapeTiles(drapeTiles, highResolutionReplacementTiles, rectangleToDrape, drapePixelSize, args) {
171593
171582
  // Base draping overlap on width rather than height so that tiling schemes with multiple root nodes overlay correctly.
171594
171583
  const isSmallerThanDrape = (this.rectangle.xLength() / this.maximumSize) < drapePixelSize;
171595
- if (this.isLeaf // Include leaves so tiles get stretched past max LOD levels.
171584
+ if ((this.isLeaf) // Include leaves so tiles get stretched past max LOD levels. (Only for base imagery layer)
171596
171585
  || isSmallerThanDrape
171597
171586
  || this._anyChildNotFound) {
171598
171587
  if (this.isOutOfLodRange) {
171599
171588
  drapeTiles.push(this);
171600
171589
  this.setIsReady();
171601
171590
  }
171591
+ else if (this.isLeaf && !isSmallerThanDrape && !this._anyChildNotFound) {
171592
+ // These tiles are selected because we are beyond the max LOD of the tile tree,
171593
+ // might be used to display "stretched" tiles instead of having blank.
171594
+ highResolutionReplacementTiles.push(this);
171595
+ }
171602
171596
  else {
171603
171597
  drapeTiles.push(this);
171604
171598
  }
@@ -171613,7 +171607,7 @@ class ImageryMapTile extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTile
171613
171607
  for (const child of this.children) {
171614
171608
  const mapChild = child;
171615
171609
  if (mapChild.rectangle.intersectsRange(rectangleToDrape))
171616
- status = mapChild.selectCartoDrapeTiles(drapeTiles, rectangleToDrape, drapePixelSize, args);
171610
+ status = mapChild.selectCartoDrapeTiles(drapeTiles, highResolutionReplacementTiles, rectangleToDrape, drapePixelSize, args);
171617
171611
  if (_internal__WEBPACK_IMPORTED_MODULE_4__.TileTreeLoadStatus.Loaded !== status)
171618
171612
  break;
171619
171613
  }
@@ -171748,12 +171742,12 @@ class ImageryMapTileTree extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityT
171748
171742
  return [];
171749
171743
  }
171750
171744
  draw(_args) { (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(false); }
171751
- selectCartoDrapeTiles(drapeTiles, tileToDrape, args) {
171745
+ selectCartoDrapeTiles(drapeTiles, highResolutionReplacementTiles, tileToDrape, args) {
171752
171746
  const drapeRectangle = tileToDrape.rectangle.clone(ImageryMapTileTree._scratchDrapeRectangle);
171753
171747
  // Base draping overlap on width rather than height so that tiling schemes with multiple root nodes overlay correctly.
171754
171748
  const drapePixelSize = 1.05 * tileToDrape.rectangle.xLength() / tileToDrape.maximumSize;
171755
171749
  drapeRectangle.scaleAboutCenterInPlace(ImageryMapTileTree._drapeIntersectionScale); // Contract slightly to avoid draping adjacent or slivers.
171756
- return this.rootTile.selectCartoDrapeTiles(drapeTiles, drapeRectangle, drapePixelSize, args);
171750
+ return this.rootTile.selectCartoDrapeTiles(drapeTiles, highResolutionReplacementTiles, drapeRectangle, drapePixelSize, args);
171757
171751
  }
171758
171752
  cartoRectangleFromQuadId(quadId) { return this.tilingScheme.tileXYToRectangle(quadId.column, quadId.row, quadId.level); }
171759
171753
  }
@@ -173112,6 +173106,13 @@ class MapTile extends _internal__WEBPACK_IMPORTED_MODULE_7__.RealityTile {
173112
173106
  * @internal
173113
173107
  */
173114
173108
  get hiddenImageryTiles() { return this._hiddenTiles; }
173109
+ /** List of leafs tiles that have been selected as a replacement for missing high resolution tiles.
173110
+ * When this list is non-empty this means we are past the maximum LOD available of the tile tree.
173111
+ * By using those tiles, you are likely to get a display where tiles looks pixelated..
173112
+ * in some cases this is preferred to have no tile at all.
173113
+ * @internal
173114
+ */
173115
+ get highResolutionReplacementTiles() { return this._highResolutionReplacementTiles; }
173115
173116
  /** @internal */
173116
173117
  getRangeCorners(result) {
173117
173118
  return this._patch instanceof PlanarTilePatch ? this._patch.getRangeCorners(this.heightRange, result) : this.range.corners(result);
@@ -173384,6 +173385,9 @@ class MapTile extends _internal__WEBPACK_IMPORTED_MODULE_7__.RealityTile {
173384
173385
  if (this._hiddenTiles) {
173385
173386
  this._hiddenTiles = undefined;
173386
173387
  }
173388
+ if (this._highResolutionReplacementTiles) {
173389
+ this._highResolutionReplacementTiles = undefined;
173390
+ }
173387
173391
  }
173388
173392
  /** @internal */
173389
173393
  produceGraphics() {
@@ -173475,12 +173479,26 @@ class MapTile extends _internal__WEBPACK_IMPORTED_MODULE_7__.RealityTile {
173475
173479
  this.clearImageryTiles();
173476
173480
  this._imageryTiles = new Array();
173477
173481
  this._hiddenTiles = new Array();
173482
+ this._highResolutionReplacementTiles = new Array();
173478
173483
  for (const layerImageryTree of this.mapTree.layerImageryTrees) {
173479
- const tmpTiles = new Array();
173480
- if (_internal__WEBPACK_IMPORTED_MODULE_7__.TileTreeLoadStatus.Loaded !== layerImageryTree.tree.selectCartoDrapeTiles(tmpTiles, this, args)) {
173484
+ let tmpTiles = new Array();
173485
+ const tmpLeafTiles = new Array();
173486
+ if (_internal__WEBPACK_IMPORTED_MODULE_7__.TileTreeLoadStatus.Loaded !== layerImageryTree.tree.selectCartoDrapeTiles(tmpTiles, tmpLeafTiles, this, args)) {
173481
173487
  this._imageryTiles = undefined;
173482
173488
  return;
173483
173489
  }
173490
+ // When the base layer is zoomed-in beyond it's max resolution,
173491
+ // we display leaf tiles and stretched them if needed.
173492
+ // We don't want the same behavior non-base layers, in the case,
173493
+ // the layer will simply disappear past its max resolution.
173494
+ // Note: Replacement leaf tiles are kept as a mean to determine which
173495
+ // imagery tree has reached it's maximum zoom level.
173496
+ if (layerImageryTree.baseImageryLayer) {
173497
+ tmpTiles = [...tmpTiles, ...tmpLeafTiles];
173498
+ }
173499
+ else {
173500
+ this._highResolutionReplacementTiles = [...this._highResolutionReplacementTiles, ...tmpLeafTiles];
173501
+ }
173484
173502
  // MapTileTree might include a non-visible imagery tree, we need to check for that.
173485
173503
  if (layerImageryTree.settings.visible && !layerImageryTree.settings.allSubLayersInvisible) {
173486
173504
  for (const imageryTile of tmpTiles) {
@@ -174138,8 +174156,8 @@ class MapTileTree extends _internal__WEBPACK_IMPORTED_MODULE_7__.RealityTileTree
174138
174156
  /** Add a new imagery tile tree / map-layer settings pair and initialize the imagery tile tree state.
174139
174157
  * @internal
174140
174158
  */
174141
- addImageryLayer(tree, settings, index) {
174142
- this.layerImageryTrees.push({ tree, settings });
174159
+ addImageryLayer(tree, settings, index, baseImageryLayer) {
174160
+ this.layerImageryTrees.push({ tree, settings, baseImageryLayer });
174143
174161
  this._layerSettings.set(tree.modelId, settings);
174144
174162
  if (!this._imageryTreeState.has(tree.modelId))
174145
174163
  this._imageryTreeState.set(tree.modelId, new _internal__WEBPACK_IMPORTED_MODULE_7__.ImageryTileTreeState());
@@ -174378,15 +174396,19 @@ class MapTileTree extends _internal__WEBPACK_IMPORTED_MODULE_7__.RealityTileTree
174378
174396
  treeVisibility.reset();
174379
174397
  }
174380
174398
  }
174381
- let allTilesRead = true;
174382
174399
  for (const selectedTile of selected) {
174383
174400
  if (selectedTile instanceof _internal__WEBPACK_IMPORTED_MODULE_7__.MapTile) {
174384
- if (!selectedTile.isReady)
174385
- allTilesRead = false;
174386
174401
  let selectedImageryTiles = selectedTile.imageryTiles;
174387
174402
  if (selectedTile.hiddenImageryTiles) {
174388
174403
  selectedImageryTiles = selectedImageryTiles ? [...selectedImageryTiles, ...selectedTile.hiddenImageryTiles] : selectedTile.hiddenImageryTiles;
174389
174404
  }
174405
+ const leafTiles = selectedTile.highResolutionReplacementTiles;
174406
+ if (leafTiles) {
174407
+ for (const tile of leafTiles) {
174408
+ const treeState = this.getImageryTreeState(tile.tree.id);
174409
+ treeState === null || treeState === void 0 ? void 0 : treeState.setScaleRangeVisibility(false);
174410
+ }
174411
+ }
174390
174412
  if (selectedImageryTiles) {
174391
174413
  for (const selectedImageryTile of selectedImageryTiles) {
174392
174414
  const treeState = this.getImageryTreeState(selectedImageryTile.tree.id);
@@ -174402,8 +174424,6 @@ class MapTileTree extends _internal__WEBPACK_IMPORTED_MODULE_7__.RealityTileTree
174402
174424
  }
174403
174425
  }
174404
174426
  }
174405
- if (!allTilesRead)
174406
- changes;
174407
174427
  for (const [treeId, prevState] of layersVisibilityBefore) {
174408
174428
  const newState = this.getImageryTreeState(treeId);
174409
174429
  if (newState) {
@@ -174780,8 +174800,9 @@ class MapTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_7__.TileTr
174780
174800
  const layerTree = layerTreeRef.treeOwner.load();
174781
174801
  if (undefined === layerTree)
174782
174802
  return false; // Not loaded yet.
174803
+ const baseImageryLayer = this._baseImageryLayerIncluded && (treeIndex === 0);
174783
174804
  if (layerTree instanceof _internal__WEBPACK_IMPORTED_MODULE_7__.ImageryMapTileTree) {
174784
- tree.addImageryLayer(layerTree, layerTreeRef.layerSettings, treeIndex);
174805
+ tree.addImageryLayer(layerTree, layerTreeRef.layerSettings, treeIndex, baseImageryLayer);
174785
174806
  }
174786
174807
  else if (layerTreeRef instanceof _internal__WEBPACK_IMPORTED_MODULE_7__.ModelMapLayerTileTreeReference)
174787
174808
  tree.addModelLayer(layerTreeRef, context);
@@ -203609,6 +203630,10 @@ class CurveChainWithDistanceIndex extends _curve_CurvePrimitive__WEBPACK_IMPORTE
203609
203630
  const fragment = this.chainDistanceToFragment(distanceAlongPath, true);
203610
203631
  const curveFraction = fragment.chainDistanceToAccurateChildFraction(distanceAlongPath, true);
203611
203632
  result = fragment.childCurve.fractionToPointAndDerivative(curveFraction, result);
203633
+ // Fractional arc length parameterization for the curve C is f=f(t)=s(t)/L, where
203634
+ // L is total length of C, f'=||C'||/L, and inverse t=t(f), t'=1/f'=L/||C'||.
203635
+ // Then d/df(C(t(f)))=C't'=C'L/||C'||. The fragment gave us C', so the
203636
+ // derivative we seek is just a scale away.
203612
203637
  const a = this._totalLength / result.direction.magnitude();
203613
203638
  result.direction.scaleInPlace(a);
203614
203639
  return result;
@@ -203634,23 +203659,26 @@ class CurveChainWithDistanceIndex extends _curve_CurvePrimitive__WEBPACK_IMPORTE
203634
203659
  * * vectorV is the second derivative, i.e.derivative of vectorU.
203635
203660
  */
203636
203661
  fractionToPointAnd2Derivatives(fraction, result) {
203637
- const totalLength = this._totalLength;
203638
- const distanceAlongPath = fraction * totalLength;
203662
+ const distanceAlongPath = fraction * this._totalLength;
203639
203663
  const fragment = this.chainDistanceToFragment(distanceAlongPath, true);
203640
203664
  const curveFraction = fragment.chainDistanceToAccurateChildFraction(distanceAlongPath, true);
203641
203665
  result = fragment.childCurve.fractionToPointAnd2Derivatives(curveFraction, result);
203642
203666
  if (!result)
203643
203667
  return undefined;
203644
- const dotUU = result.vectorU.magnitudeSquared();
203645
- const magU = Math.sqrt(dotUU);
203668
+ // See fractionToPointAndDerivative for derivation of d/df(C(t(f)))=L C'/||C'||.
203669
+ // For the 2nd deriv, use quotient rule, d/dt||x(t)||=x.x'/||x|| and ||x||^2=x.x :
203670
+ // d/df(C'(t(f))) = L d/df(C'/||C'||)
203671
+ // = L (||C'|| d/df(C') - C' d/df||C'||) / ||C'||^2
203672
+ // = L (||C'|| C" L/||C'|| - C' C'.C"/||C'|| L/||C'||) / ||C'||^2
203673
+ // = (L/||C'||)^2 (C" - C' C'.C"/C'.C' )
203674
+ // We have C' and C" from the fragment.
203675
+ const magU = result.vectorU.magnitude();
203676
+ const dotUU = magU * magU;
203646
203677
  const dotUV = result.vectorU.dotProduct(result.vectorV);
203647
- const duds = 1.0 / magU;
203648
- const a = duds * duds;
203649
- _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_5__.Vector3d.createAdd2Scaled(result.vectorV, a, result.vectorU, -a * dotUV / dotUU, result.vectorV); // IN PLACE update to vectorV.
203650
- result.vectorU.scale(duds);
203651
- // scale for 0..1 parameterization ....
203652
- result.vectorU.scaleInPlace(totalLength);
203653
- result.vectorV.scaleInPlace(totalLength * totalLength);
203678
+ result.vectorV.addScaledInPlace(result.vectorU, -dotUV / dotUU);
203679
+ const scale = this._totalLength / magU;
203680
+ result.vectorU.scaleInPlace(scale);
203681
+ result.vectorV.scaleInPlace(scale * scale);
203654
203682
  return result;
203655
203683
  }
203656
203684
  /** Attempt to transform in place.
@@ -203715,7 +203743,7 @@ class CurveChainWithDistanceIndex extends _curve_CurvePrimitive__WEBPACK_IMPORTE
203715
203743
  numCalls: this._numCalls,
203716
203744
  numTested: this._numTested,
203717
203745
  numAssigned: this._numAssigned,
203718
- numCandidate: this._numCandidate
203746
+ numCandidate: this._numCandidate,
203719
203747
  };
203720
203748
  if (clear) {
203721
203749
  this._numTested = this._numAssigned = this._numCandidate = 0;
@@ -290811,7 +290839,6 @@ class Capabilities {
290811
290839
  this._maxVertUniformVectors = 0;
290812
290840
  this._maxVaryingVectors = 0;
290813
290841
  this._maxFragUniformVectors = 0;
290814
- this._canRenderDepthWithoutColor = false;
290815
290842
  this._maxAntialiasSamples = 1;
290816
290843
  this._supportsCreateImageBitmap = false;
290817
290844
  this._maxTexSizeAllow = maxTexSizeAllowed;
@@ -290854,7 +290881,6 @@ class Capabilities {
290854
290881
  get supportsStandardDerivatives() { return this._isWebGL2 || this.queryExtensionObject("OES_standard_derivatives") !== undefined; }
290855
290882
  get supportsMRTTransparency() { return this.maxColorAttachments >= 2; }
290856
290883
  get supportsMRTPickShaders() { return this.maxColorAttachments >= 3; }
290857
- get canRenderDepthWithoutColor() { return this._canRenderDepthWithoutColor; }
290858
290884
  get supportsShadowMaps() {
290859
290885
  return this.supportsTextureFloat || this.supportsTextureHalfFloat;
290860
290886
  }
@@ -290985,7 +291011,6 @@ class Capabilities {
290985
291011
  // Determine the maximum depth attachment type.
290986
291012
  // this._maxDepthType = this.queryExtensionObject("WEBGL_depth_texture") !== undefined ? DepthType.TextureUnsignedInt32 : DepthType.RenderBufferUnsignedShort16;
290987
291013
  this._maxDepthType = this._isWebGL2 || this.queryExtensionObject("WEBGL_depth_texture") !== undefined ? DepthType.TextureUnsignedInt24Stencil8 : DepthType.RenderBufferUnsignedShort16;
290988
- this._canRenderDepthWithoutColor = this._maxDepthType === DepthType.TextureUnsignedInt24Stencil8 ? this.isDepthRenderableWithoutColor(gl) : false;
290989
291014
  this._presentFeatures = this._gatherFeatures();
290990
291015
  const missingRequiredFeatures = this._findMissingFeatures(Capabilities.requiredFeatures);
290991
291016
  const missingOptionalFeatures = this._findMissingFeatures(Capabilities.optionalFeatures);
@@ -291030,24 +291055,6 @@ class Capabilities {
291030
291055
  gl.getError(); // clear any errors
291031
291056
  return fbStatus === gl.FRAMEBUFFER_COMPLETE;
291032
291057
  }
291033
- /** Determines if depth textures can be rendered without also having a color attachment bound on the host system. */
291034
- isDepthRenderableWithoutColor(gl) {
291035
- const dtExt = this.queryExtensionObject("WEBGL_depth_texture");
291036
- if (dtExt === undefined)
291037
- return false;
291038
- const tex = gl.createTexture();
291039
- gl.bindTexture(gl.TEXTURE_2D, tex);
291040
- gl.texImage2D(gl.TEXTURE_2D, 0, gl.DEPTH_STENCIL, 1, 1, 0, gl.DEPTH_STENCIL, dtExt.UNSIGNED_INT_24_8_WEBGL, null);
291041
- const fb = gl.createFramebuffer();
291042
- gl.bindFramebuffer(gl.FRAMEBUFFER, fb);
291043
- gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.DEPTH_STENCIL_ATTACHMENT, gl.TEXTURE_2D, tex, 0);
291044
- const fbStatus = gl.checkFramebufferStatus(gl.FRAMEBUFFER);
291045
- gl.bindFramebuffer(gl.FRAMEBUFFER, null);
291046
- gl.deleteFramebuffer(fb);
291047
- gl.deleteTexture(tex);
291048
- gl.getError(); // clear any errors
291049
- return fbStatus === gl.FRAMEBUFFER_COMPLETE;
291050
- }
291051
291058
  setMaxAnisotropy(desiredMax, gl) {
291052
291059
  const ext = this.queryExtensionObject("EXT_texture_filter_anisotropic");
291053
291060
  if (undefined === ext)
@@ -301936,7 +301943,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
301936
301943
  /***/ ((module) => {
301937
301944
 
301938
301945
  "use strict";
301939
- module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.4","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:^4.0.0-dev.4","@itwin/core-bentley":"workspace:^4.0.0-dev.4","@itwin/core-common":"workspace:^4.0.0-dev.4","@itwin/core-geometry":"workspace:^4.0.0-dev.4","@itwin/core-orbitgt":"workspace:^4.0.0-dev.4","@itwin/core-quantity":"workspace:^4.0.0-dev.4"},"//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:*","@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","lodash":"^4.17.10","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"}}]}}');
301946
+ module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.6","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:^4.0.0-dev.6","@itwin/core-bentley":"workspace:^4.0.0-dev.6","@itwin/core-common":"workspace:^4.0.0-dev.6","@itwin/core-geometry":"workspace:^4.0.0-dev.6","@itwin/core-orbitgt":"workspace:^4.0.0-dev.6","@itwin/core-quantity":"workspace:^4.0.0-dev.6"},"//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:*","@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","lodash":"^4.17.10","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"}}]}}');
301940
301947
 
301941
301948
  /***/ })
301942
301949