@itwin/ecschema-rpcinterface-tests 5.1.0-dev.40 → 5.1.0-dev.41

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.
@@ -18806,7 +18806,7 @@ var GeoServiceStatus;
18806
18806
  GeoServiceStatus[GeoServiceStatus["VerticalDatumConvertError"] = 147460] = "VerticalDatumConvertError";
18807
18807
  GeoServiceStatus[GeoServiceStatus["CSMapError"] = 147461] = "CSMapError";
18808
18808
  /**
18809
- * @deprecated in 5.0. This status is never returned.
18809
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. This status is never returned.
18810
18810
  */
18811
18811
  GeoServiceStatus[GeoServiceStatus["Pending"] = 147462] = "Pending";
18812
18812
  })(GeoServiceStatus || (GeoServiceStatus = {}));
@@ -20293,7 +20293,7 @@ Symbol.dispose ??= Symbol("Symbol.dispose");
20293
20293
  Symbol.asyncDispose ??= Symbol("Symbol.asyncDispose");
20294
20294
  /**
20295
20295
  * A type guard that checks whether the given argument implements `IDisposable` interface
20296
- * @deprecated in 5.0 Use isDisposable instead.
20296
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use isDisposable instead.
20297
20297
  * @public
20298
20298
  */
20299
20299
  function isIDisposable(obj) {
@@ -20332,7 +20332,7 @@ function disposeArray(list) {
20332
20332
  * of this function is equal to return value of func. If func throws, this function also throws (after
20333
20333
  * disposing the resource).
20334
20334
  * @public
20335
- * @deprecated in 5.0 Use `using` declarations instead.
20335
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use `using` declarations instead.
20336
20336
  */
20337
20337
  function using(resources, func) {
20338
20338
  if (!Array.isArray(resources))
@@ -22102,7 +22102,7 @@ class PerfLogger {
22102
22102
  [Symbol.dispose]() {
22103
22103
  this.logMessage();
22104
22104
  }
22105
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
22105
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
22106
22106
  dispose() {
22107
22107
  this[Symbol.dispose]();
22108
22108
  }
@@ -23837,7 +23837,7 @@ __webpack_require__.r(__webpack_exports__);
23837
23837
  /**
23838
23838
  * Mirrors the SpanKind enum from [@opentelemetry/api](https://open-telemetry.github.io/opentelemetry-js/enums/_opentelemetry_api.SpanKind.html)
23839
23839
  * @public
23840
- * @deprecated in 4.4 - might be removed in next major version. OpenTelemetry Tracing helpers will become internal in a future release. Apps should use `@opentelemetry/api` directly.
23840
+ * @deprecated in 4.4 - will not be removed until after 2026-06-13. OpenTelemetry Tracing helpers will become internal in a future release. Apps should use `@opentelemetry/api` directly.
23841
23841
  */
23842
23842
  var SpanKind;
23843
23843
  (function (SpanKind) {
@@ -23897,7 +23897,7 @@ function flattenObject(obj) {
23897
23897
  /**
23898
23898
  * Enables OpenTelemetry tracing in addition to traditional logging.
23899
23899
  * @public
23900
- * @deprecated in 4.4 - might be removed in next major version. OpenTelemetry Tracing helpers will become internal in a future release. Apps should use `@opentelemetry/api` directly.
23900
+ * @deprecated in 4.4 - will not be removed until after 2026-06-13. OpenTelemetry Tracing helpers will become internal in a future release. Apps should use `@opentelemetry/api` directly.
23901
23901
  */
23902
23902
  class Tracing {
23903
23903
  static _tracer;
@@ -27568,7 +27568,7 @@ class QueryOptionsBuilder {
27568
27568
  * If set ECClassId, SourceECClassId and TargetECClassId system properties will return qualified name of class instead of a @typedef Id64String.
27569
27569
  * @param val A boolean value.
27570
27570
  * @returns @type QueryOptionsBuilder for fluent interface.
27571
- * @deprecated in 4.11 - might be removed in next major version. Use ecsql function ec_classname to get class name instead.
27571
+ * @deprecated in 4.11 - will not be removed until after 2026-06-13. Use ecsql function ec_classname to get class name instead.
27572
27572
  */
27573
27573
  setConvertClassIdsToNames(val) {
27574
27574
  // eslint-disable-next-line @typescript-eslint/no-deprecated
@@ -30849,7 +30849,7 @@ var PrimitiveTypeCode;
30849
30849
  })(PrimitiveTypeCode || (PrimitiveTypeCode = {}));
30850
30850
  /** Metadata for a property.
30851
30851
  * @beta
30852
- * @deprecated in 5.0. Use the `Property` class from @itwin/ecschema-metadata` instead.
30852
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use the `Property` class from @itwin/ecschema-metadata` instead.
30853
30853
  */
30854
30854
  class PropertyMetaData {
30855
30855
  primitiveType;
@@ -30934,7 +30934,7 @@ class PropertyMetaData {
30934
30934
  }
30935
30935
  /** Metadata for an Entity.
30936
30936
  * @beta
30937
- * @deprecated in 5.0. Use `EntityClass` class from `@itwin/ecschema-metadata` instead.
30937
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use `EntityClass` class from `@itwin/ecschema-metadata` instead.
30938
30938
  */
30939
30939
  class EntityMetaData {
30940
30940
  /** The Id of the class in the [[IModelDb]] from which the metadata was obtained. */
@@ -32250,7 +32250,7 @@ var FontType;
32250
32250
  * This class maps FontIds to FontProps.
32251
32251
  * @note This API has never worked properly. Don't use it. Use [IModelDb.fonts]($backend) instead.
32252
32252
  * @public
32253
- * @deprecated in 5.0.0. Use [IModelDb.fonts]($backend) instead.
32253
+ * @deprecated in 5.0.0 - will not be removed until after 2026-06-13. Use [IModelDb.fonts]($backend) instead.
32254
32254
  */
32255
32255
  class FontMap {
32256
32256
  fonts = new Map();
@@ -32714,7 +32714,7 @@ var GeoCoordStatus;
32714
32714
  /** This temporary status is used to mark coordinates for which the conversion has not yet been processed by the backend
32715
32715
  * as opposed to other coordinate conversions that may have been resolved otherwise (typically a cache).
32716
32716
  * At the completion of the conversion promise no coordinates should have this status.
32717
- * @deprecated in 5.0. Pending is no longer returned as a status for coordinate conversions.
32717
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Pending is no longer returned as a status for coordinate conversions.
32718
32718
  */
32719
32719
  GeoCoordStatus[GeoCoordStatus["Pending"] = -41556] = "Pending";
32720
32720
  })(GeoCoordStatus || (GeoCoordStatus = {}));
@@ -55064,7 +55064,7 @@ const unknownIModelId = (req) => ({ iModelId: "undefined", key: req.parameters[0
55064
55064
  /** The RPC interface for working with *snapshot* iModels.
55065
55065
  * This interface is intended for desktop and mobile products. Web products are discouraged from registering this interface.
55066
55066
  * @internal
55067
- * @deprecated in 5.0. Check [[IpcAppFunctions]] or [[CheckpointConnection]] for replacements.
55067
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Check [[IpcAppFunctions]] or [[CheckpointConnection]] for replacements.
55068
55068
  */
55069
55069
  class SnapshotIModelRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_0__.RpcInterface {
55070
55070
  /** Returns the SnapshotIModelRpcInterface client instance for the frontend. */
@@ -55080,15 +55080,15 @@ class SnapshotIModelRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_
55080
55080
  NOTE: Please consult the README in this folder for the semantic versioning rules.
55081
55081
  ===========================================================================================*/
55082
55082
  /**
55083
- * @deprecated in 5.0. Use [[IpcAppFunctions.openSnapshot]] in IPC applications, no replacement for Web applications.
55083
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [[IpcAppFunctions.openSnapshot]] in IPC applications, no replacement for Web applications.
55084
55084
  */
55085
55085
  async openFile(_filePath, _opts) { return this.forward(arguments); }
55086
55086
  /**
55087
- * @deprecated in 4.10 - might be removed in next major version. Use [[CheckpointConnection.openRemote]].
55087
+ * @deprecated in 4.10 - will not be removed until after 2026-06-13. Use [[CheckpointConnection.openRemote]].
55088
55088
  */
55089
55089
  async openRemote(_key, _opts) { return this.forward(arguments); }
55090
55090
  /**
55091
- * @deprecated in 5.0. Use [[IpcAppFunctions.closeIModel]] in IPC applications, no replacement for Web applications.
55091
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [[IpcAppFunctions.closeIModel]] in IPC applications, no replacement for Web applications.
55092
55092
  */
55093
55093
  async close(_iModelRpcProps) { return this.forward(arguments); }
55094
55094
  }
@@ -60099,7 +60099,7 @@ function computeChildTileProps(parent, idProvider, root) {
60099
60099
  /** Deserializes tile content metadata.
60100
60100
  * @throws [[TileReadError]]
60101
60101
  * @internal
60102
- * @deprecated in 4.0 - might be removed in next major version. Use decodeTileContentDescription. I think tile agents (or their tests) are using this function.
60102
+ * @deprecated in 4.0 - will not be removed until after 2026-06-13. Use decodeTileContentDescription. I think tile agents (or their tests) are using this function.
60103
60103
  */
60104
60104
  function readTileContentDescription(stream, sizeMultiplier, is2d, options, isVolumeClassifier) {
60105
60105
  return decodeTileContentDescription({ stream, sizeMultiplier, is2d, options, isVolumeClassifier });
@@ -60520,7 +60520,7 @@ class SchemaContext {
60520
60520
  /**
60521
60521
  * Adds the given SchemaItem to the the SchemaContext by locating the schema, with the best match of SchemaMatchType.Exact, and
60522
60522
  * @param schemaItem The SchemaItem to add
60523
- * @deprecated in 4.0 - might be removed in next major version. use ecschema-editing package
60523
+ * @deprecated in 4.0 - will not be removed until after 2026-06-13. Use ecschema-editing package
60524
60524
  */
60525
60525
  async addSchemaItem(schemaItem) {
60526
60526
  const schema = await this.getSchema(schemaItem.key.schemaKey, _ECObjects__WEBPACK_IMPORTED_MODULE_0__.SchemaMatchType.Exact);
@@ -64033,7 +64033,7 @@ var SchemaMatchType;
64033
64033
  (function (SchemaMatchType) {
64034
64034
  /*
64035
64035
  * Find exact VersionRead, VersionWrite, VersionMinor match as well as Data. NOTE data is not yet matched
64036
- * @deprecated in 4.10 - might be removed in next major version. Use Exact instead.
64036
+ * @deprecated in 4.10 - will not be removed until after 2026-06-13. Use Exact instead.
64037
64037
  */
64038
64038
  SchemaMatchType[SchemaMatchType["Identical"] = 0] = "Identical";
64039
64039
  /* Find exact VersionRead, VersionWrite, VersionMinor match. */
@@ -64133,7 +64133,7 @@ function parseSchemaItemType(type) {
64133
64133
  * @param value The SchemaItemType to stringify.
64134
64134
  * @return A string representing the provided SchemaItemType. If the type is not valid, an empty string is returned.
64135
64135
  * @beta
64136
- * @deprecated in 4.6.0 - might be removed in next major version. SchemaItemType is a string enum so just use it directly
64136
+ * @deprecated in 4.6.0 - will not be removed until after 2026-06-13. SchemaItemType is a string enum so just use it directly
64137
64137
  */
64138
64138
  function schemaItemTypeToString(value) {
64139
64139
  return value; // TODO: Remove
@@ -65544,7 +65544,7 @@ class CustomAttributeClass extends _Class__WEBPACK_IMPORTED_MODULE_2__.ECClass {
65544
65544
  static get schemaItemType() { return _ECObjects__WEBPACK_IMPORTED_MODULE_0__.SchemaItemType.CustomAttributeClass; }
65545
65545
  _appliesTo;
65546
65546
  /**
65547
- * @deprecated in 4.8 - might be removed in next major version. use [[appliesTo]]
65547
+ * @deprecated in 4.8 - will not be removed until after 2026-06-13. Use [[appliesTo]]
65548
65548
  * */
65549
65549
  get containerType() {
65550
65550
  return this.appliesTo;
@@ -72109,7 +72109,7 @@ class ECSchemaRpcLocater {
72109
72109
  * @param _matchType How to match key against candidate schemas
72110
72110
  * @param _context The SchemaContext that will control the lifetime of the schema and holds the schema's references, if they exist.
72111
72111
  * @throws Error Always throws an error indicating this method is not supported.
72112
- * @deprecated in 5.0 Use the asynchronous `getSchema` method for schema retrieval.
72112
+ * @deprecated in 5.0. Use the asynchronous `getSchema` method for schema retrieval.
72113
72113
  */
72114
72114
  getSchemaSync(_schemaKey, _matchType, _context) {
72115
72115
  throw new Error("getSchemaSync is not supported. Use the asynchronous getSchema method instead.");
@@ -82940,7 +82940,7 @@ class GraphicalEditingScope extends _BriefcaseTxns__WEBPACK_IMPORTED_MODULE_2__.
82940
82940
  this._cleanup = undefined;
82941
82941
  }
82942
82942
  }
82943
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
82943
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
82944
82944
  dispose() {
82945
82945
  this[Symbol.dispose]();
82946
82946
  }
@@ -84353,13 +84353,13 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
84353
84353
  */
84354
84354
  onClose = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
84355
84355
  /** The font map for this IModelConnection. Only valid after calling #loadFontMap and waiting for the returned promise to be fulfilled.
84356
- * @deprecated in 5.0.0. If you need font Ids on the front-end for some reason, write an Ipc method that queries [IModelDb.fonts]($backend).
84356
+ * @deprecated in 5.0.0 - will not be removed until after 2026-06-13. If you need font Ids on the front-end for some reason, write an Ipc method that queries [IModelDb.fonts]($backend).
84357
84357
  */
84358
84358
  fontMap; // eslint-disable-line @typescript-eslint/no-deprecated
84359
84359
  _schemaContext;
84360
84360
  /** Load the FontMap for this IModelConnection.
84361
84361
  * @returns Returns a Promise<FontMap> that is fulfilled when the FontMap member of this IModelConnection is valid.
84362
- * @deprecated in 5.0.0. If you need font Ids on the front-end for some reason, write an Ipc method that queries [IModelDb.fonts]($backend).
84362
+ * @deprecated in 5.0.0 - will not be removed until after 2026-06-13. If you need font Ids on the front-end for some reason, write an Ipc method that queries [IModelDb.fonts]($backend).
84363
84363
  */
84364
84364
  async loadFontMap() {
84365
84365
  if (undefined === this.fontMap) { // eslint-disable-line @typescript-eslint/no-deprecated
@@ -84480,7 +84480,7 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
84480
84480
  return this.isOpen ? this._snapRpc.request(props) : { status: 2 };
84481
84481
  }
84482
84482
  /** @internal
84483
- * @deprecated in 4.8 - might be removed in next major version. Use AccuSnap.doSnapRequest.
84483
+ * @deprecated in 4.8 - will not be removed until after 2026-06-13. Use AccuSnap.doSnapRequest.
84484
84484
  */
84485
84485
  async requestSnap(props) {
84486
84486
  return this[_common_internal_Symbols__WEBPACK_IMPORTED_MODULE_13__._requestSnap](props);
@@ -84521,7 +84521,7 @@ class IModelConnection extends _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.I
84521
84521
  return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassProperties(this.getRpcProps(), requestProps);
84522
84522
  }
84523
84523
  /** Request mass properties for multiple elements from the backend.
84524
- * @deprecated in 4.11 - might be removed in next major version. Use [[IModelConnection.getMassProperties]].
84524
+ * @deprecated in 4.11 - will not be removed until after 2026-06-13. Use [[IModelConnection.getMassProperties]].
84525
84525
  */
84526
84526
  async getMassPropertiesPerCandidate(requestProps) {
84527
84527
  return _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelReadRpcInterface.getClientForRouting(this.routingContext.token).getMassPropertiesPerCandidate(this.getRpcProps(), requestProps);
@@ -84840,7 +84840,7 @@ class SnapshotConnection extends IModelConnection {
84840
84840
  }
84841
84841
  /** Open an IModelConnection to a remote read-only snapshot iModel from a key that will be resolved by the backend.
84842
84842
  * @note This method is intended for web applications.
84843
- * @deprecated in 4.10 - might be removed in next major version. Use [[CheckpointConnection.openRemote]].
84843
+ * @deprecated in 4.10 - will not be removed until after 2026-06-13. Use [[CheckpointConnection.openRemote]].
84844
84844
  */
84845
84845
  static async openRemote(fileKey) {
84846
84846
  const routingContext = _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_6__.IModelRoutingContext.current || _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_6__.IModelRoutingContext.default;
@@ -85247,7 +85247,7 @@ class SnapshotConnection extends IModelConnection {
85247
85247
  * There is no guarantee that this view will be suitable for the purposes of any other applications.
85248
85248
  * Most applications should ignore the default view and instead create a [[ViewState]] that fits their own requirements using APIs like [[ViewCreator3d]].
85249
85249
  * @returns the Id of the default view as defined in the iModel's property table, or an invalid ID if no default view is defined.
85250
- * @deprecated in 4.2 - might be removed in next major version. Create a ViewState to your own specifications.
85250
+ * @deprecated in 4.2 - will not be removed until after 2026-06-13. Create a ViewState to your own specifications.
85251
85251
  */
85252
85252
  async queryDefaultViewId() {
85253
85253
  const iModel = this._iModel;
@@ -85633,7 +85633,7 @@ class IpcApp {
85633
85633
  throw Object.assign(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.BackendError(err.errorNumber, err.iTwinErrorId.key, err.message, err.loggingMetadata), trimErr);
85634
85634
  }
85635
85635
  /** @internal
85636
- * @deprecated in 4.8 - might be removed in next major version. Use [[makeIpcProxy]] for a type-safe interface.
85636
+ * @deprecated in 4.8 - will not be removed until after 2026-06-13. Use [[makeIpcProxy]] for a type-safe interface.
85637
85637
  */
85638
85638
  static async callIpcChannel(channelName, methodName, ...args) {
85639
85639
  return this[_common_internal_Symbols__WEBPACK_IMPORTED_MODULE_2__._callIpcChannel](channelName, methodName, ...args);
@@ -88827,7 +88827,7 @@ class HiliteSet {
88827
88827
  /** Toggle the hilited state of one or more elements.
88828
88828
  * @param arg the ID(s) of the elements whose state is to be toggled.
88829
88829
  * @param onOff True to add the elements to the hilited set, false to remove them.
88830
- * @deprecated in 5.0. Use [[add]], [[remove]], [[replace]] instead.
88830
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [[add]], [[remove]], [[replace]] instead.
88831
88831
  */
88832
88832
  setHilite(arg, onOff) {
88833
88833
  if (onOff) {
@@ -88895,14 +88895,14 @@ class SelectionSet {
88895
88895
  }
88896
88896
  /** Return true if elemId is in this `SelectionSet`.
88897
88897
  * @see [[isSelected]]
88898
- * @deprecated in 5.0. Use `SelectionSet.elements.has(elemId)` instead.
88898
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use `SelectionSet.elements.has(elemId)` instead.
88899
88899
  */
88900
88900
  has(elemId) {
88901
88901
  return !!elemId && this.elements.has(elemId);
88902
88902
  }
88903
88903
  /** Query whether an Id is in the selection set.
88904
88904
  * @see [[has]]
88905
- * @deprecated in 5.0. Use `SelectionSet.elements.has(elemId)` instead.
88905
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use `SelectionSet.elements.has(elemId)` instead.
88906
88906
  */
88907
88907
  isSelected(elemId) {
88908
88908
  return !!elemId && this.elements.has(elemId);
@@ -93685,7 +93685,7 @@ class ViewState extends _EntityState__WEBPACK_IMPORTED_MODULE_5__.ElementState {
93685
93685
  /** Execute a function against each [[TileTreeReference]] associated with this view.
93686
93686
  * This may include tile trees not associated with any [[GeometricModelState]] - e.g., context reality data.
93687
93687
  * @note This method is inefficient (iteration cannot be aborted) and awkward (callback cannot be async nor return a value). Prefer to iterate using [[getTileTreeRefs]].
93688
- * @deprecated in 5.0. Use [[getTileTreeRefs]] instead.
93688
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [[getTileTreeRefs]] instead.
93689
93689
  */
93690
93690
  forEachTileTreeRef(func) {
93691
93691
  for (const ref of this.getModelTreeRefs()) {
@@ -96728,7 +96728,7 @@ class Viewport {
96728
96728
  this.onDisposed.raiseEvent(this);
96729
96729
  this.detachFromView();
96730
96730
  }
96731
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
96731
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
96732
96732
  dispose() {
96733
96733
  this[Symbol.dispose]();
96734
96734
  }
@@ -97087,7 +97087,7 @@ class Viewport {
97087
97087
  }
97088
97088
  }
97089
97089
  /** Apply a function to every tile tree reference associated with the map layers displayed by this viewport.
97090
- * @deprecated in 5.0. Use [[mapTileTreeRefs]] instead.
97090
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [[mapTileTreeRefs]] instead.
97091
97091
  */
97092
97092
  forEachMapTreeRef(func) {
97093
97093
  if (this._mapTiledGraphicsProvider)
@@ -97099,7 +97099,7 @@ class Viewport {
97099
97099
  }
97100
97100
  ;
97101
97101
  /** Apply a function to every [[TileTreeReference]] displayed by this viewport.
97102
- * @deprecated in 5.0. Use [[getTileTreeRefs]] instead.
97102
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [[getTileTreeRefs]] instead.
97103
97103
  */
97104
97104
  forEachTileTreeRef(func) {
97105
97105
  for (const ref of this.getTileTreeRefs()) {
@@ -110086,7 +110086,7 @@ class AtmosphereUniforms {
110086
110086
  return true;
110087
110087
  }
110088
110088
  [Symbol.dispose]() { }
110089
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
110089
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
110090
110090
  dispose() {
110091
110091
  this[Symbol.dispose]();
110092
110092
  }
@@ -110172,7 +110172,7 @@ class BuffersContainer {
110172
110172
  this._context = context;
110173
110173
  this._vao = new VAOHandle(this._context);
110174
110174
  }
110175
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
110175
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
110176
110176
  dispose() {
110177
110177
  this[Symbol.dispose]();
110178
110178
  }
@@ -110234,7 +110234,7 @@ class VAOHandle {
110234
110234
  (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(!this.isDisposed);
110235
110235
  }
110236
110236
  get isDisposed() { return this._arrayObject === undefined; }
110237
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
110237
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
110238
110238
  dispose() {
110239
110239
  this[Symbol.dispose]();
110240
110240
  }
@@ -112958,7 +112958,7 @@ class ClippingProgram {
112958
112958
  [Symbol.dispose]() {
112959
112959
  this._program = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._program);
112960
112960
  }
112961
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
112961
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
112962
112962
  dispose() {
112963
112963
  this[Symbol.dispose]();
112964
112964
  }
@@ -125012,7 +125012,7 @@ class ShaderProgram {
125012
125012
  this._status = 2 /* CompileStatus.Uncompiled */;
125013
125013
  }
125014
125014
  }
125015
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
125015
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
125016
125016
  dispose() {
125017
125017
  this[Symbol.dispose]();
125018
125018
  }
@@ -125481,7 +125481,7 @@ class ShaderProgramExecutor {
125481
125481
  ShaderProgramExecutor.freeParams();
125482
125482
  this._isDisposed = true;
125483
125483
  }
125484
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
125484
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
125485
125485
  dispose() {
125486
125486
  this[Symbol.dispose]();
125487
125487
  }
@@ -129099,7 +129099,7 @@ class SingularTechnique {
129099
129099
  [Symbol.dispose]() {
129100
129100
  this.program[Symbol.dispose]();
129101
129101
  }
129102
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
129102
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
129103
129103
  dispose() {
129104
129104
  this[Symbol.dispose]();
129105
129105
  }
@@ -129156,7 +129156,7 @@ class VariedTechnique {
129156
129156
  this._clippingPrograms.length = 0;
129157
129157
  this._isDisposed = true;
129158
129158
  }
129159
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
129159
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
129160
129160
  dispose() {
129161
129161
  this[Symbol.dispose]();
129162
129162
  }
@@ -129863,7 +129863,7 @@ class Techniques {
129863
129863
  (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(tech);
129864
129864
  this._list.length = 0;
129865
129865
  }
129866
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
129866
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
129867
129867
  dispose() {
129868
129868
  this[Symbol.dispose]();
129869
129869
  }
@@ -145951,7 +145951,7 @@ class RealityTreeReference extends RealityModelTileTree.Reference {
145951
145951
  div.innerHTML = strings.join("<br>");
145952
145952
  return div;
145953
145953
  }
145954
- /** @deprecated in 5.0 Use [addAttributions] instead. */
145954
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
145955
145955
  addLogoCards(cards) {
145956
145956
  if (this._rdSourceKey.provider === _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RealityDataProvider.CesiumIonAsset && !cards.dataset.openStreetMapLogoCard) {
145957
145957
  cards.dataset.openStreetMapLogoCard = "true";
@@ -147660,7 +147660,7 @@ class ArcGISMapLayerImageryProvider extends _tile_internal__WEBPACK_IMPORTED_MOD
147660
147660
  }
147661
147661
  }
147662
147662
  }
147663
- /** @deprecated in 5.0 Use [addAttributions] instead. */
147663
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
147664
147664
  addLogoCards(cards) {
147665
147665
  if (!cards.dataset.arcGisLogoCard) {
147666
147666
  cards.dataset.arcGisLogoCard = "true";
@@ -147890,7 +147890,7 @@ class AzureMapsLayerImageryProvider extends _tile_internal__WEBPACK_IMPORTED_MOD
147890
147890
  return "";
147891
147891
  return `${this._settings.url}&${this._settings.accessKey.key}=${this._settings.accessKey.value}&api-version=2.0&zoom=${zoom}&x=${x}&y=${y}`;
147892
147892
  }
147893
- /** @deprecated in 5.0 Use [addAttributions] instead. */
147893
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
147894
147894
  addLogoCards(cards) {
147895
147895
  if (!cards.dataset.azureMapsLogoCard) {
147896
147896
  cards.dataset.azureMapsLogoCard = "true";
@@ -148057,7 +148057,7 @@ class BingMapsImageryLayerProvider extends _tile_internal__WEBPACK_IMPORTED_MODU
148057
148057
  }
148058
148058
  return matchingAttributions;
148059
148059
  }
148060
- /** @deprecated in 5.0 Use [addAttributions] instead. */
148060
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
148061
148061
  addLogoCards(cards, vp) {
148062
148062
  const tiles = _IModelApp__WEBPACK_IMPORTED_MODULE_2__.IModelApp.tileAdmin.getTilesForUser(vp)?.selected;
148063
148063
  const matchingAttributions = this.getMatchingAttributions(tiles);
@@ -148514,7 +148514,7 @@ class MapBoxLayerImageryProvider extends _tile_internal__WEBPACK_IMPORTED_MODULE
148514
148514
  url = url.concat(`?${this._settings.accessKey.key}=${this._settings.accessKey.value}`);
148515
148515
  return url;
148516
148516
  }
148517
- /** @deprecated in 5.0 Use [addAttributions] instead. */
148517
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
148518
148518
  addLogoCards(cards) {
148519
148519
  if (!cards.dataset.mapboxLogoCard) {
148520
148520
  cards.dataset.mapboxLogoCard = "true";
@@ -150254,7 +150254,7 @@ class AngleDescription extends _FormattedQuantityDescription__WEBPACK_IMPORTED_M
150254
150254
  }
150255
150255
  get formatterQuantityType() { return _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_1__.QuantityType.Angle; }
150256
150256
  /**
150257
- * @deprecated in 5.0. Use the `kindOfQuantityName` property instead.
150257
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use the `kindOfQuantityName` property instead.
150258
150258
  */
150259
150259
  get quantityType() { return "Angle"; }
150260
150260
  get parseError() { return _IModelApp__WEBPACK_IMPORTED_MODULE_0__.IModelApp.localization.getLocalizedString("iModelJs:Properties.UnableToParseAngle"); }
@@ -150387,7 +150387,7 @@ class LengthDescription extends _FormattedQuantityDescription__WEBPACK_IMPORTED_
150387
150387
  }
150388
150388
  get formatterQuantityType() { return _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_1__.QuantityType.Length; }
150389
150389
  /**
150390
- * @deprecated in 5.0. Use the `kindOfQuantityName` property instead.
150390
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use the `kindOfQuantityName` property instead.
150391
150391
  */
150392
150392
  get quantityType() { return "Length"; }
150393
150393
  get parseError() { return _IModelApp__WEBPACK_IMPORTED_MODULE_0__.IModelApp.localization.getLocalizedString("iModelJs:Properties.UnableToParseLength"); }
@@ -150408,7 +150408,7 @@ class SurveyLengthDescription extends _FormattedQuantityDescription__WEBPACK_IMP
150408
150408
  }
150409
150409
  get formatterQuantityType() { return _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_1__.QuantityType.LengthSurvey; }
150410
150410
  /**
150411
- * @deprecated in 5.0. Use the `kindOfQuantityName` property instead.
150411
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use the `kindOfQuantityName` property instead.
150412
150412
  */
150413
150413
  get quantityType() { return "LengthSurvey"; }
150414
150414
  get parseError() { return _IModelApp__WEBPACK_IMPORTED_MODULE_0__.IModelApp.localization.getLocalizedString("iModelJs:Properties.UnableToParseLength"); }
@@ -150429,7 +150429,7 @@ class EngineeringLengthDescription extends _FormattedQuantityDescription__WEBPAC
150429
150429
  }
150430
150430
  get formatterQuantityType() { return _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_1__.QuantityType.LengthEngineering; }
150431
150431
  /**
150432
- * @deprecated in 5.0. Use the `kindOfQuantityName` property instead.
150432
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use the `kindOfQuantityName` property instead.
150433
150433
  */
150434
150434
  get quantityType() { return "LengthEngineering"; }
150435
150435
  get parseError() { return _IModelApp__WEBPACK_IMPORTED_MODULE_0__.IModelApp.localization.getLocalizedString("iModelJs:Properties.UnableToParseLength"); }
@@ -152283,7 +152283,7 @@ class Decorations {
152283
152283
  this.viewOverlay = undefined;
152284
152284
  this.normal = undefined;
152285
152285
  }
152286
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
152286
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
152287
152287
  dispose() {
152288
152288
  this[Symbol.dispose]();
152289
152289
  }
@@ -152584,7 +152584,7 @@ class GraphicBranch {
152584
152584
  [Symbol.dispose]() {
152585
152585
  this.clear();
152586
152586
  }
152587
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
152587
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
152588
152588
  dispose() {
152589
152589
  this[Symbol.dispose]();
152590
152590
  }
@@ -158200,7 +158200,7 @@ class Tile {
158200
158200
  this._state = 5 /* TileState.Abandoned */;
158201
158201
  this.disposeChildren();
158202
158202
  }
158203
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
158203
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
158204
158204
  dispose() {
158205
158205
  this[Symbol.dispose]();
158206
158206
  }
@@ -160861,7 +160861,7 @@ class TileTree {
160861
160861
  this._isDisposed = true;
160862
160862
  (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this.rootTile);
160863
160863
  }
160864
- /** @deprecated in 5.0 Use [Symbol.dispose] instead. */
160864
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [Symbol.dispose] instead. */
160865
160865
  dispose() {
160866
160866
  this[Symbol.dispose]();
160867
160867
  }
@@ -161183,7 +161183,7 @@ class TileTreeReference /* implements RenderMemory.Consumer */ {
161183
161183
  * @beta
161184
161184
  */
161185
161185
  get planarClipMaskPriority() { return _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PlanarClipMaskPriority.DesignModel; }
161186
- /** @deprecated in 5.0 Use [addAttributions] instead. */
161186
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
161187
161187
  addLogoCards(_cards, _vp) { }
161188
161188
  /** Add attribution logo cards for the tile tree source logo cards to the viewport's logo div.
161189
161189
  * @beta
@@ -162151,7 +162151,7 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
162151
162151
  this._assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
162152
162152
  this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(CesiumTerrainProvider._tokenTimeoutInterval);
162153
162153
  }
162154
- /** @deprecated in 5.0 Use [addAttributions] instead. */
162154
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
162155
162155
  addLogoCards(cards) {
162156
162156
  if (cards.dataset.cesiumIonLogoCard)
162157
162157
  return;
@@ -162771,7 +162771,7 @@ class ImageryMapTileTree extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityT
162771
162771
  this._rootTile = new ImageryMapTile(params.rootTile, this, rootQuadId, this.getTileRectangle(rootQuadId));
162772
162772
  }
162773
162773
  get tilingScheme() { return this._imageryLoader.imageryProvider.tilingScheme; }
162774
- /** @deprecated in 5.0 Use [addAttributions] instead. */
162774
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
162775
162775
  addLogoCards(cards, vp) {
162776
162776
  // eslint-disable-next-line @typescript-eslint/no-deprecated
162777
162777
  this._imageryLoader.addLogoCards(cards, vp);
@@ -162825,7 +162825,7 @@ class ImageryTileLoader extends _internal__WEBPACK_IMPORTED_MODULE_4__.RealityTi
162825
162825
  get maxDepth() { return this._imageryProvider.maximumZoomLevel; }
162826
162826
  get minDepth() { return this._imageryProvider.minimumZoomLevel; }
162827
162827
  get priority() { return _internal__WEBPACK_IMPORTED_MODULE_4__.TileLoadPriority.Map; }
162828
- /** @deprecated in 5.0 Use [addAttributions] instead. */
162828
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
162829
162829
  addLogoCards(cards, vp) {
162830
162830
  // eslint-disable-next-line @typescript-eslint/no-deprecated
162831
162831
  this._imageryProvider.addLogoCards(cards, vp);
@@ -163730,7 +163730,7 @@ class MapLayerImageryProvider {
163730
163730
  });
163731
163731
  }
163732
163732
  get tilingScheme() { return this.useGeographicTilingScheme ? this._geographicTilingScheme : this._mercatorTilingScheme; }
163733
- /** @deprecated in 5.0 Use [addAttributions] instead. */
163733
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
163734
163734
  addLogoCards(_cards, _viewport) { }
163735
163735
  /**
163736
163736
  * Add attribution logo cards for the data supplied by this provider to the [[Viewport]]'s logo div.
@@ -166083,7 +166083,7 @@ class MapTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_7__.TileTr
166083
166083
  }
166084
166084
  return info;
166085
166085
  }
166086
- /** @deprecated in 5.0 Use [addAttributions] instead. */
166086
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
166087
166087
  addLogoCards(cards, vp) {
166088
166088
  const tree = this.treeOwner.tileTree;
166089
166089
  if (tree) {
@@ -166721,7 +166721,7 @@ __webpack_require__.r(__webpack_exports__);
166721
166721
  * @public
166722
166722
  */
166723
166723
  class TerrainMeshProvider {
166724
- /** @deprecated in 5.0 Use [addAttributions] instead. */
166724
+ /** @deprecated in 5.0 - will not be removed until after 2026-06-13. Use [addAttributions] instead. */
166725
166725
  addLogoCards(_cards, _vp) { }
166726
166726
  /** Add attribution logo cards for the terrain data supplied by this provider to the [[Viewport]]'s logo div.
166727
166727
  * For example, a provider that produces meshes from [Bing Maps](https://docs.microsoft.com/en-us/bingmaps/rest-services/elevations/) would be required to
@@ -181718,7 +181718,7 @@ class Geometry {
181718
181718
  static largeCoordinateResult = 1.0e13;
181719
181719
  /**
181720
181720
  * Numeric value that may considered infinite for metric coordinates.
181721
- * @deprecated in 4.x - might be removed in next major version. Use [[largeCoordinateResult]].
181721
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use [[largeCoordinateResult]].
181722
181722
  * * This coordinate should be used only as a placeholder indicating "at infinity" -- computing actual
181723
181723
  * points at this coordinate invites numerical problems.
181724
181724
  */
@@ -181729,7 +181729,7 @@ class Geometry {
181729
181729
  }
181730
181730
  /**
181731
181731
  * Test if the absolute value of x is at least [[largeCoordinateResult]].
181732
- * @deprecated in 4.x - might be removed in next major version. Use [[isLargeCoordinateResult]].
181732
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use [[isLargeCoordinateResult]].
181733
181733
  */
181734
181734
  static isHugeCoordinate(x) {
181735
181735
  return Geometry.isLargeCoordinateResult(x);
@@ -182696,7 +182696,7 @@ class Geometry {
182696
182696
  /**
182697
182697
  * Clone an array whose members have type `T`, which implements the clone method.
182698
182698
  * * If the clone method returns `undefined`, then `undefined` is forced into the cloned array.
182699
- * @deprecated in 4.x - might be removed in next major version. Use cloneArray.
182699
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use cloneArray.
182700
182700
  */
182701
182701
  // eslint-disable-next-line @typescript-eslint/no-deprecated
182702
182702
  static cloneMembers(array) {
@@ -183122,7 +183122,7 @@ class BSpline1dNd {
183122
183122
  * Test if the leading and trailing polygon coordinates are replicated in the manner of a "closed" bspline polygon
183123
183123
  * which has been expanded to act as a normal bspline.
183124
183124
  * @returns true if `degree` leading and trailing polygon blocks match.
183125
- * @deprecated in 4.x - might be removed in next major version. Use `testClosablePolygon` instead.
183125
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use `testClosablePolygon` instead.
183126
183126
  */
183127
183127
  testCloseablePolygon(mode) {
183128
183128
  return this.testClosablePolygon(mode);
@@ -185422,7 +185422,7 @@ var UVSelect;
185422
185422
  UVSelect[UVSelect["uDirection"] = 0] = "uDirection";
185423
185423
  /**
185424
185424
  * index of v direction
185425
- * @deprecated in 4.x - might be removed in next major version. Use vDirection instead.
185425
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use vDirection instead.
185426
185426
  */
185427
185427
  UVSelect[UVSelect["VDirection"] = 1] = "VDirection";
185428
185428
  /** index of v direction */
@@ -185649,7 +185649,7 @@ class BSpline2dNd extends _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geom
185649
185649
  }
185650
185650
  /**
185651
185651
  * sum poles by the weights in the basisBuffer, using poles for given span
185652
- * @deprecated in 4.x - might be removed in next major version. Use sumPoleBufferDerivativesForSpan instead.
185652
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use sumPoleBufferDerivativesForSpan instead.
185653
185653
  */
185654
185654
  sumpoleBufferDerivativesForSpan(spanIndexU, spanIndexV) {
185655
185655
  return this.sumPoleBufferDerivativesForSpan(spanIndexU, spanIndexV);
@@ -185871,7 +185871,7 @@ class BSplineSurface3d extends BSpline2dNd {
185871
185871
  getPointGridJSON() {
185872
185872
  const result = {
185873
185873
  points: _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_7__.Point3dArray.unpackNumbersToNestedArraysIJK(this.coffs, 3, this.numPolesUV(0)),
185874
- weighStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates, // @deprecated in 4.x - might be removed in next major version. Use weightStyle instead.
185874
+ weighStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates, // @deprecated in 4.x - will not be removed until after 2026-06-13. Use weightStyle instead.
185875
185875
  weightStyle: WeightStyle.UnWeighted,
185876
185876
  numCartesianDimensions: 3,
185877
185877
  };
@@ -186284,7 +186284,7 @@ class BSplineSurface3dH extends BSpline2dNd {
186284
186284
  const result = {
186285
186285
  points: _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_7__.Point3dArray.unpackNumbersToNestedArraysIJK(this.coffs, 4, this.numPolesUV(0)),
186286
186286
  numCartesianDimensions: 3,
186287
- weighStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates, // @deprecated in 4.x - might be removed in next major version. Use weightStyle instead.
186287
+ weighStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates, // @deprecated in 4.x - will not be removed until after 2026-06-13. Use weightStyle instead.
186288
186288
  weightStyle: WeightStyle.WeightsAlreadyAppliedToCoordinates,
186289
186289
  };
186290
186290
  return result;
@@ -195169,7 +195169,7 @@ class Arc3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_1__.CurvePrimitive
195169
195169
  }
195170
195170
  /**
195171
195171
  * Gauss point quadrature count for evaluating curve length. (The number of intervals is adjusted to the arc sweep).
195172
- * @deprecated in 5.0. Use correct spelling quadratureGaussCount.
195172
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use correct spelling quadratureGaussCount.
195173
195173
  */
195174
195174
  static quadratureGuassCount = 5;
195175
195175
  /** Gauss point quadrature count for evaluating curve length. (The number of intervals is adjusted to the arc sweep). */
@@ -198994,7 +198994,7 @@ class CurveLocationDetailPair {
198994
198994
  }
198995
198995
  /**
198996
198996
  * Data bundle for a pair of arrays of CurveLocationDetail structures.
198997
- * @deprecated in 4.x - might be removed in next major version. Use CurveLocationDetailPair[] instead.
198997
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use CurveLocationDetailPair[] instead.
198998
198998
  * @public
198999
198999
  */
199000
199000
  class CurveLocationDetailArrayPair {
@@ -206700,7 +206700,7 @@ class StrokeOptions {
206700
206700
  maxEdgeLength;
206701
206701
  /**
206702
206702
  * Caller expects convex facets.
206703
- * @deprecated in 4.x - might be removed in next major version. Never used. See [[shouldTriangulate]] and [[maximizeConvexFacets]].
206703
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Never used. See [[shouldTriangulate]] and [[maximizeConvexFacets]].
206704
206704
  */
206705
206705
  needConvexFacets;
206706
206706
  /** Minimum strokes on a primitive. */
@@ -220968,7 +220968,7 @@ class GrowableXYArray extends _IndexedXYCollection__WEBPACK_IMPORTED_MODULE_0__.
220968
220968
  return result;
220969
220969
  }
220970
220970
  /** Restructure MultiLineStringDataVariant as array of GrowableXYZArray
220971
- * @deprecated in 4.x - might be removed in next major version. Moved to GrowableXYZArray class.
220971
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Moved to GrowableXYZArray class.
220972
220972
  */
220973
220973
  static createArrayOfGrowableXYZArray(data) {
220974
220974
  return _GrowableXYZArray__WEBPACK_IMPORTED_MODULE_1__.GrowableXYZArray.createArrayOfGrowableXYZArray(data);
@@ -239651,7 +239651,7 @@ class Point4d extends _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
239651
239651
  * extract 4 consecutive numbers from a Float64Array into a Point4d.
239652
239652
  * @param data buffer of numbers
239653
239653
  * @param xIndex first index for x,y,z,w sequence. Assumed to be a valid index!
239654
- * @deprecated in 4.x - might be removed in next major version. Use createFromPacked instead.
239654
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use createFromPacked instead.
239655
239655
  */
239656
239656
  static createFromPackedXYZW(data, xIndex = 0, result) {
239657
239657
  return Point4d.create(data[xIndex], data[xIndex + 1], data[xIndex + 2], data[xIndex + 3], result);
@@ -248975,7 +248975,7 @@ class IndexedPolyface extends Polyface {
248975
248975
  }
248976
248976
  /**
248977
248977
  * Clean up the open facet.
248978
- * @deprecated in 4.x - might be removed in next major version. to remove nebulous "open facet" concept from the API. Call [[PolyfaceData.trimAllIndexArrays]]
248978
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. To remove nebulous "open facet" concept from the API. Call [[PolyfaceData.trimAllIndexArrays]]
248979
248979
  * instead.
248980
248980
  */
248981
248981
  cleanupOpenFacet() {
@@ -249125,7 +249125,7 @@ class IndexedPolyface extends Polyface {
249125
249125
  }
249126
249126
  /**
249127
249127
  * Given the index of a facet, return the data pertaining to the face it is a part of.
249128
- * @deprecated in 4.x - might be removed in next major version. Use [[IndexedPolyface.tryGetFaceData]], which verifies the index is in range.
249128
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use [[IndexedPolyface.tryGetFaceData]], which verifies the index is in range.
249129
249129
  */
249130
249130
  getFaceDataByFacetIndex(facetIndex) {
249131
249131
  return this.data.face[this._facetToFaceData[facetIndex]];
@@ -250347,7 +250347,7 @@ class PolyfaceBuilder extends _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODU
250347
250347
  * Apply stroke counts to curve primitives.
250348
250348
  * * Recursively visit all children of data.
250349
250349
  * * At each primitive, invoke `computeStrokeCountForOptions` method with options from the builder.
250350
- * @deprecated in 4.x - might be removed in next major version. This method does nothing and is unneeded.
250350
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. This method does nothing and is unneeded.
250351
250351
  */
250352
250352
  applyStrokeCountsToCurvePrimitives(data) {
250353
250353
  const options = this._options;
@@ -252386,7 +252386,7 @@ class PolyfaceData {
252386
252386
  }
252387
252387
  /**
252388
252388
  * Resize all data arrays to the specified `length`.
252389
- * @deprecated in 4.x - might be removed in next major version. because name is misleading. Call [[PolyfaceData.resizeAllArrays]] instead.
252389
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Because name is misleading. Call [[PolyfaceData.resizeAllArrays]] instead.
252390
252390
  */
252391
252391
  resizeAllDataArrays(length) {
252392
252392
  if (length > this.point.length) {
@@ -253958,7 +253958,7 @@ class PolyfaceQuery {
253958
253958
  });
253959
253959
  return builder.claimPolyface(true);
253960
253960
  }
253961
- /** @deprecated in 4.x - might be removed in next major version. Use [[sweepLineStringToFacetsXYReturnSweptFacets]] instead. */
253961
+ /** @deprecated in 4.x - will not be removed until after 2026-06-13. Use [[sweepLineStringToFacetsXYReturnSweptFacets]] instead. */
253962
253962
  static sweepLinestringToFacetsXYreturnSweptFacets(linestringPoints, polyface) {
253963
253963
  return this.sweepLineStringToFacetsXYReturnSweptFacets(linestringPoints, polyface);
253964
253964
  }
@@ -254061,7 +254061,7 @@ class PolyfaceQuery {
254061
254061
  * * Return collected line segments.
254062
254062
  * * This calls [[sweepLineStringToFacets]] with options created by
254063
254063
  * `const options = SweepLineStringToFacetsOptions.create(Vector3d.unitZ(), Angle.createSmallAngle(), false, true, true, true);`
254064
- * @deprecated in 4.x - might be removed in next major version. Use [[PolyfaceQuery.sweepLineStringToFacets]] to get further options.
254064
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use [[PolyfaceQuery.sweepLineStringToFacets]] to get further options.
254065
254065
  */
254066
254066
  static sweepLinestringToFacetsXYReturnLines(linestringPoints, polyface) {
254067
254067
  const options = SweepLineStringToFacetsOptions.create(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.unitZ(), _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_2__.Angle.createSmallAngle(), false, true, true, true);
@@ -254071,7 +254071,7 @@ class PolyfaceQuery {
254071
254071
  * Find segments (within the linestring) which project to facets.
254072
254072
  * * Return chains.
254073
254073
  * * This calls [[sweepLineStringToFacets]] with default options.
254074
- * @deprecated in 4.x - might be removed in next major version. Use [[PolyfaceQuery.sweepLineStringToFacets]] to get further options.
254074
+ * @deprecated in 4.x - will not be removed until after 2026-06-13. Use [[PolyfaceQuery.sweepLineStringToFacets]] to get further options.
254075
254075
  */
254076
254076
  static sweepLinestringToFacetsXYReturnChains(linestringPoints, polyface) {
254077
254077
  return PolyfaceQuery.sweepLineStringToFacets(linestringPoints, polyface);
@@ -267872,7 +267872,7 @@ class Sample {
267872
267872
  return points;
267873
267873
  }
267874
267874
  // cspell:word creat
267875
- /** @deprecated in 4.x - might be removed in next major version. Use createVerticalStaggerPolygon instead. */
267875
+ /** @deprecated in 4.x - will not be removed until after 2026-06-13. Use createVerticalStaggerPolygon instead. */
267876
267876
  static creatVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4) {
267877
267877
  return this.createVerticalStaggerPolygon(dy1, dy2, dy3, dy4, ax, ay, dx1, dx4);
267878
267878
  }
@@ -297990,7 +297990,7 @@ var ShowSignOption;
297990
297990
  // parse and toString methods
297991
297991
  /**
297992
297992
  * @beta
297993
- * @deprecated in 4.10 - might be removed in next major version. ScientificType is now a string enum and doesn't need a serialization method. You can access the enum directly.
297993
+ * @deprecated in 4.10 - will not be removed until after 2026-06-13. ScientificType is now a string enum and doesn't need a serialization method. You can access the enum directly.
297994
297994
  */
297995
297995
  function scientificTypeToString(scientificType) {
297996
297996
  return (scientificType === ScientificType.Normalized) ? "Normalized" : "ZeroNormalized";
@@ -298032,7 +298032,7 @@ function parseShowSignOption(showSignOption, formatName) {
298032
298032
  }
298033
298033
  /**
298034
298034
  * @beta
298035
- * @deprecated in 4.10 - might be removed in next major version. ShowSignOption is now a string enum and doesn't need a serialization method. You can access the enum directly.
298035
+ * @deprecated in 4.10 - will not be removed until after 2026-06-13. ShowSignOption is now a string enum and doesn't need a serialization method. You can access the enum directly.
298036
298036
  */
298037
298037
  function showSignOptionToString(showSign) {
298038
298038
  switch (showSign) {
@@ -298125,7 +298125,7 @@ function parseFormatType(jsonObjType, formatName) {
298125
298125
  }
298126
298126
  }
298127
298127
  /** @beta
298128
- * @deprecated in 4.10 - might be removed in next major version. FormatType is now a string enum and doesn't need a serialization method. You can access the enum directly.
298128
+ * @deprecated in 4.10 - will not be removed until after 2026-06-13. FormatType is now a string enum and doesn't need a serialization method. You can access the enum directly.
298129
298129
  */
298130
298130
  function formatTypeToString(type) {
298131
298131
  switch (type) {
@@ -299547,7 +299547,7 @@ class Parser {
299547
299547
  * @param inString A string that contains text represent a quantity.
299548
299548
  * @param format Defines the likely format of inString. Primary unit serves as a default unit if no unit label found in string.
299549
299549
  * @param unitsConversions dictionary of conversions used to convert from unit used in inString to output quantity
299550
- * @deprecated in 4.10 - might be removed in next major version. Check [[Parser.parseQuantityString]] for replacements.
299550
+ * @deprecated in 4.10 - will not be removed until after 2026-06-13. Check [[Parser.parseQuantityString]] for replacements.
299551
299551
  */
299552
299552
  static parseToQuantityValue(inString, format, unitsConversions) {
299553
299553
  // TODO: This method is not able to do bearing and azimuth formatting and is overlapping with parseQuantityString.
@@ -300805,10 +300805,10 @@ class Settings {
300805
300805
  });
300806
300806
  }
300807
300807
  toString() {
300808
- return `Configurations:
300809
- oidc client id: ${this.oidcClientId},
300810
- oidc scopes: ${this.oidcScopes},
300811
- applicationId: ${this.gprid},
300808
+ return `Configurations:
300809
+ oidc client id: ${this.oidcClientId},
300810
+ oidc scopes: ${this.oidcScopes},
300811
+ applicationId: ${this.gprid},
300812
300812
  log level: ${this.logLevel}`;
300813
300813
  }
300814
300814
  }
@@ -301285,7 +301285,7 @@ class UiAdmin {
301285
301285
  /** Get the cursor X and Y position. */
301286
301286
  get cursorPosition() { return { x: 0, y: 0 }; }
301287
301287
  /** Create a PointProps object.
301288
- * @deprecated in 4.2.x - might be removed in next major version. Please use @core/geometry [[XAndY]] or a custom implementation.
301288
+ * @deprecated in 4.2.x - will not be removed until after 2026-06-13. Please use @core/geometry [[XAndY]] or a custom implementation.
301289
301289
  */
301290
301290
  createXAndY(x, y) { return { x, y }; }
301291
301291
  /** Determines if focus is set to Home */
@@ -301489,7 +301489,7 @@ __webpack_require__.r(__webpack_exports__);
301489
301489
  * @module Utilities
301490
301490
  */
301491
301491
  /** Enumeration for Function Keys
301492
- * @public @deprecated in 4.3 - might be removed in next major version. Please use the `ts-key-enum` npm package or string literals.
301492
+ * @public @deprecated in 4.3 - will not be removed until after 2026-06-13. Please use the `ts-key-enum` npm package or string literals.
301493
301493
  */
301494
301494
  var FunctionKey;
301495
301495
  (function (FunctionKey) {
@@ -301507,7 +301507,7 @@ var FunctionKey;
301507
301507
  FunctionKey["F12"] = "F12";
301508
301508
  })(FunctionKey || (FunctionKey = {}));
301509
301509
  /** Enumeration for Special Keys
301510
- * @public @deprecated in 4.3 - might be removed in next major version. Please use the `ts-key-enum` npm package or string literals.
301510
+ * @public @deprecated in 4.3 - will not be removed until after 2026-06-13. Please use the `ts-key-enum` npm package or string literals.
301511
301511
  */
301512
301512
  var SpecialKey;
301513
301513
  (function (SpecialKey) {
@@ -301536,7 +301536,7 @@ var SpecialKey;
301536
301536
  SpecialKey["Decimal"] = "Decimal";
301537
301537
  })(SpecialKey || (SpecialKey = {}));
301538
301538
  /** Determines if a KeyboardEvent.key is an Arrow key
301539
- * @public @deprecated in 4.3 - might be removed in next major version. Please use a custom implementation moving forward.
301539
+ * @public @deprecated in 4.3 - will not be removed until after 2026-06-13. Please use a custom implementation moving forward.
301540
301540
  */
301541
301541
  function isArrowKey(key) {
301542
301542
  // eslint-disable-next-line @typescript-eslint/no-deprecated
@@ -301588,7 +301588,7 @@ __webpack_require__.r(__webpack_exports__);
301588
301588
  /**
301589
301589
  * Class that define Standard Content Layouts that can be used to specify how the content is arranged in a frontstage.
301590
301590
  * @public
301591
- * @deprecated in 4.10.x - might be removed in next major version. Use `StandardContentLayouts` from `@itwin/appui-react`.
301591
+ * @deprecated in 4.10.x - will not be removed until after 2026-06-13. Use `StandardContentLayouts` from `@itwin/appui-react`.
301592
301592
  */
301593
301593
  class StandardContentLayouts {
301594
301594
  static singleView = {
@@ -303113,20 +303113,20 @@ __webpack_require__.r(__webpack_exports__);
303113
303113
  */
303114
303114
  /* eslint-disable @typescript-eslint/no-deprecated */
303115
303115
  /** Creates an IconSpec with an SVG source and gets the SVG source from an IconSpec.
303116
- * @public @deprecated in 4.3 - might be removed in next major version. AppUI libraries >= 4.7.x support loading SVGs sources without prefixes, eliminating the need for these utilities.
303116
+ * @public @deprecated in 4.3 - will not be removed until after 2026-06-13. AppUI libraries >= 4.7.x support loading SVGs sources without prefixes, eliminating the need for these utilities.
303117
303117
  */
303118
303118
  class IconSpecUtilities {
303119
303119
  /** Prefix for an SVG IconSpec loaded with the Sprite loader */
303120
303120
  static SVG_PREFIX = "svg:";
303121
303121
  static WEB_COMPONENT_PREFIX = "webSvg:";
303122
303122
  /** Create an IconSpec for an SVG loaded into web component with svg-loader
303123
- * @public @deprecated in 4.3 - might be removed in next major version. AppUI libraries > 4.7.x support loading SVGs sources without prefixes, eliminating the need for this utility.
303123
+ * @public @deprecated in 4.3 - will not be removed until after 2026-06-13. AppUI libraries > 4.7.x support loading SVGs sources without prefixes, eliminating the need for this utility.
303124
303124
  */
303125
303125
  static createWebComponentIconSpec(srcString) {
303126
303126
  return `${IconSpecUtilities.WEB_COMPONENT_PREFIX}${srcString}`;
303127
303127
  }
303128
303128
  /** Get the SVG Source from an svg-loader IconSpec
303129
- * @public @deprecated in 4.3 - might be removed in next major version. AppUI libraries > 4.7.x support loading SVGs sources without prefixes, eliminating the need for this utility.
303129
+ * @public @deprecated in 4.3 - will not be removed until after 2026-06-13. AppUI libraries > 4.7.x support loading SVGs sources without prefixes, eliminating the need for this utility.
303130
303130
  */
303131
303131
  static getWebComponentSource(iconSpec) {
303132
303132
  if (iconSpec.startsWith(IconSpecUtilities.WEB_COMPONENT_PREFIX) && iconSpec.length > 7) {
@@ -303180,7 +303180,7 @@ __webpack_require__.r(__webpack_exports__);
303180
303180
  */
303181
303181
 
303182
303182
  /** iTwin.js UI UiError class is a subclass of BentleyError. Errors are logged.
303183
- * @public @deprecated in 4.3 - might be removed in next major version. Use [[Bentley.BentleyError]] instead.
303183
+ * @public @deprecated in 4.3 - will not be removed until after 2026-06-13. Use [[Bentley.BentleyError]] instead.
303184
303184
  */
303185
303185
  class UiError extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BentleyError {
303186
303186
  category;
@@ -303216,7 +303216,7 @@ __webpack_require__.r(__webpack_exports__);
303216
303216
 
303217
303217
  /** iTwin.js UI UiEvent class is a subclass of BeEvent with argument type safety.
303218
303218
  * @public
303219
- * @deprecated in 4.2 - might be removed in next major version. This type is a duplicate of [[BeUiEvent]], which should be used instead.
303219
+ * @deprecated in 4.2 - will not be removed until after 2026-06-13. This type is a duplicate of [[BeUiEvent]], which should be used instead.
303220
303220
  */
303221
303221
  class UiEvent extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeUiEvent {
303222
303222
  }
@@ -303247,14 +303247,14 @@ __webpack_require__.r(__webpack_exports__);
303247
303247
 
303248
303248
  /** UiSync Event class.
303249
303249
  * @public
303250
- * @deprecated in 4.2.x - might be removed in next major version. Use [[UiSyncEvent]] from @itwin/appui-react.
303250
+ * @deprecated in 4.2.x - will not be removed until after 2026-06-13. Use [[UiSyncEvent]] from @itwin/appui-react.
303251
303251
  */
303252
303252
  class UiSyncEvent extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeUiEvent {
303253
303253
  }
303254
303254
  /** This class is used to send eventIds to interested UI components so the component can determine if it needs
303255
303255
  * to refresh its display by calling setState on itself.
303256
303256
  * @public
303257
- * @deprecated in 4.2.x - might be removed in next major version. Use [[SyncUiEventDispatcher]] from @itwin/appui-react.
303257
+ * @deprecated in 4.2.x - will not be removed until after 2026-06-13. Use [[SyncUiEventDispatcher]] from @itwin/appui-react.
303258
303258
  */
303259
303259
  class UiEventDispatcher {
303260
303260
  _syncEventTimerId;
@@ -303457,7 +303457,7 @@ function join(head, tail) {
303457
303457
  * @param contiguous - If true the filter string must be found "contiguous" in the searched string (E.g. "pul" will match "Git: Pull").
303458
303458
  * Otherwise also matches sub string of the word with beginnings of the words in the target (e.g. "gp" or "g p" will match "Git: Pull").
303459
303459
  * Useful in cases where the target is words (e.g. command labels)
303460
- * @internal @deprecated in 4.3 - might be removed in next major version. Use `matchesWords` from @itwin/core-react instead. Though internal, this requires deprecation due to known public usage in @itwin/core-react.
303460
+ * @internal @deprecated in 4.3 - will not be removed until after 2026-06-13. Use `matchesWords` from @itwin/core-react instead. Though internal, this requires deprecation due to known public usage in @itwin/core-react.
303461
303461
  */
303462
303462
  function matchesWords(word, target, contiguous = false) {
303463
303463
  if (!target || target.length === 0) {
@@ -303529,7 +303529,7 @@ __webpack_require__.r(__webpack_exports__);
303529
303529
  */
303530
303530
  /** Gets the class name for an object.
303531
303531
  * @internal
303532
- * @deprecated in 4.3 - might be removed in next major version. Please use your own implementation in the future. Though internal, this requires deprecation due to known public usage in @itwin/core-react.
303532
+ * @deprecated in 4.3 - will not be removed until after 2026-06-13. Please use your own implementation in the future. Though internal, this requires deprecation due to known public usage in @itwin/core-react.
303533
303533
  */
303534
303534
  const getClassName = (obj) => {
303535
303535
  let className = "";
@@ -313618,7 +313618,7 @@ var loadLanguages = instance.loadLanguages;
313618
313618
  /***/ ((module) => {
313619
313619
 
313620
313620
  "use strict";
313621
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.1.0-dev.40","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 ES2022 --outDir lib/esm","clean":"rimraf -g 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 --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 \\"./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 webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","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:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//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/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/eslint-plugin":"5.0.0-dev.1","@types/chai-as-promised":"^7","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.13.0","glob":"^10.3.12","playwright":"~1.47.1","rimraf":"^6.0.1","source-map-loader":"^5.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//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.3.0","@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
313621
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.1.0-dev.41","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 ES2022 --outDir lib/esm","clean":"rimraf -g 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 --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 \\"./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 webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","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:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//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/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/eslint-plugin":"5.0.0-dev.1","@types/chai-as-promised":"^7","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.13.0","glob":"^10.3.12","playwright":"~1.47.1","rimraf":"^6.0.1","source-map-loader":"^5.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//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.3.0","@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
313622
313622
 
313623
313623
  /***/ })
313624
313624