@itwin/rpcinterface-full-stack-tests 5.7.0-dev.4 → 5.7.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.
@@ -105531,6 +105531,11 @@ class ECClass extends _SchemaItem__WEBPACK_IMPORTED_MODULE_9__.SchemaItem {
105531
105531
  }
105532
105532
  /**
105533
105533
  * Gets the derived classes belonging to this class.
105534
+ * @note This method relies on the `SchemaContext` to find derived classes.
105535
+ * It will **only** return derived classes from schemas that have already been loaded into the context.
105536
+ * If a derived class exists in a referencing schema that has not yet been loaded, it will not be included in the results.
105537
+ * To ensure all derived classes are found, ensure that all relevant referencing schemas are loaded into the `SchemaContext`
105538
+ * before calling this method.
105534
105539
  * @returns An array of ECClasses or undefined if no derived classes exist.
105535
105540
  */
105536
105541
  async getDerivedClasses() {
@@ -194282,7 +194287,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
194282
194287
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]meter2" },
194283
194288
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]m-sta2" },
194284
194289
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]meter4" },
194285
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]meter4" },
194290
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]millimeter3" },
194286
194291
  ],
194287
194292
  },
194288
194293
  {
@@ -194296,7 +194301,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
194296
194301
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
194297
194302
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
194298
194303
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4-labeled" },
194299
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet4" },
194304
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
194300
194305
  ],
194301
194306
  },
194302
194307
  {
@@ -194310,7 +194315,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
194310
194315
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
194311
194316
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
194312
194317
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
194313
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet4" },
194318
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
194314
194319
  ],
194315
194320
  },
194316
194321
  {
@@ -194324,7 +194329,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
194324
194329
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]f-survey-2" },
194325
194330
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-survey-sta2" },
194326
194331
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
194327
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-4" },
194332
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-2" },
194328
194333
  ],
194329
194334
  },
194330
194335
  ];
@@ -194344,6 +194349,20 @@ const DEFAULT_FORMATPROPS = [
194344
194349
  type: "Decimal",
194345
194350
  },
194346
194351
  },
194352
+ {
194353
+ key: "[units:length]millimeter3",
194354
+ description: "millimeters (labeled) 3 decimal places",
194355
+ format: {
194356
+ composite: {
194357
+ includeZero: true,
194358
+ spacer: "",
194359
+ units: [{ label: "mm", name: "Units.MM" }],
194360
+ },
194361
+ formatTraits: ["keepSingleZero", "showUnitLabel"],
194362
+ precision: 3,
194363
+ type: "Decimal",
194364
+ },
194365
+ },
194347
194366
  {
194348
194367
  key: "[units:length]meter2",
194349
194368
  description: "meters (labeled) 2 decimal places",
@@ -341121,12 +341140,12 @@ class BaseFormat {
341121
341140
  loadFormatProperties(formatProps) {
341122
341141
  this._type = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseFormatType)(formatProps.type, this.name);
341123
341142
  if (formatProps.precision !== undefined) {
341124
- if (!Number.isInteger(formatProps.precision)) // mut be an integer
341143
+ if (!Number.isInteger(formatProps.precision))
341125
341144
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'precision' attribute. It should be an integer.`);
341126
341145
  this._precision = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parsePrecision)(formatProps.precision, this._type, this.name);
341127
341146
  }
341128
341147
  if (this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Scientific) {
341129
- if (undefined === formatProps.scientificType) // if format type is scientific and scientific type is undefined, throw
341148
+ if (undefined === formatProps.scientificType)
341130
341149
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Scientific' type therefore the attribute 'scientificType' is required.`);
341131
341150
  this._scientificType = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseScientificType)(formatProps.scientificType, this.name);
341132
341151
  }
@@ -341134,7 +341153,7 @@ class BaseFormat {
341134
341153
  if (undefined === formatProps.ratioType)
341135
341154
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Ratio' type therefore the attribute 'ratioType' is required.`);
341136
341155
  this._ratioType = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseRatioType)(formatProps.ratioType, this.name);
341137
- if (undefined !== formatProps.ratioSeparator) {
341156
+ if (undefined !== formatProps.ratioSeparator) { // optional; default is 0.0
341138
341157
  if (typeof (formatProps.ratioSeparator) !== "string")
341139
341158
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'ratioSeparator' attribute. It should be of type 'string'.`);
341140
341159
  if (formatProps.ratioSeparator.length !== 1)
@@ -341151,25 +341170,24 @@ class BaseFormat {
341151
341170
  this._ratioFormatType = _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.RatioFormatType.Decimal; // Apply default
341152
341171
  }
341153
341172
  }
341154
- if (undefined !== formatProps.roundFactor) { // optional; default is 0.0
341173
+ if (undefined !== formatProps.roundFactor) {
341155
341174
  if (typeof (formatProps.roundFactor) !== "number")
341156
341175
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'roundFactor' attribute. It should be of type 'number'.`);
341157
341176
  if (formatProps.roundFactor !== this.roundFactor) // if roundFactor isn't default value of 0.0, reassign roundFactor variable
341158
341177
  this._roundFactor = formatProps.roundFactor;
341159
341178
  }
341160
- if (undefined !== formatProps.minWidth) { // optional
341161
- if (!Number.isInteger(formatProps.minWidth) || formatProps.minWidth < 0) // must be a positive int
341179
+ if (undefined !== formatProps.minWidth) {
341180
+ if (!Number.isInteger(formatProps.minWidth) || formatProps.minWidth < 0)
341162
341181
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'minWidth' attribute. It should be a positive integer.`);
341163
341182
  this._minWidth = formatProps.minWidth;
341164
341183
  }
341165
341184
  if (_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Station === this.type) {
341166
341185
  if (undefined === formatProps.stationOffsetSize)
341167
341186
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Station' type therefore the attribute 'stationOffsetSize' is required.`);
341168
- if (!Number.isInteger(formatProps.stationOffsetSize) || formatProps.stationOffsetSize <= 0) // must be a positive int > 0
341187
+ if (!Number.isInteger(formatProps.stationOffsetSize) || formatProps.stationOffsetSize <= 0)
341169
341188
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'stationOffsetSize' attribute. It should be a positive integer.`);
341170
341189
  this._stationOffsetSize = formatProps.stationOffsetSize;
341171
341190
  if (undefined !== formatProps.stationBaseFactor) {
341172
- // optional - must be a positive integer
341173
341191
  if (!Number.isInteger(formatProps.stationBaseFactor) || formatProps.stationBaseFactor <= 0)
341174
341192
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'stationBaseFactor' attribute. It should be a positive integer.`);
341175
341193
  this._stationBaseFactor = formatProps.stationBaseFactor;
@@ -341178,19 +341196,19 @@ class BaseFormat {
341178
341196
  if (undefined !== formatProps.showSignOption) { // optional; default is "onlyNegative"
341179
341197
  this._showSignOption = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseShowSignOption)(formatProps.showSignOption, this.name);
341180
341198
  }
341181
- if (undefined !== formatProps.formatTraits && formatProps.formatTraits.length !== 0) { // FormatTraits is optional
341182
- if (!Array.isArray(formatProps.formatTraits) && typeof (formatProps.formatTraits) !== "string") // must be either an array of strings or a string
341199
+ if (undefined !== formatProps.formatTraits && formatProps.formatTraits.length !== 0) {
341200
+ if (!Array.isArray(formatProps.formatTraits) && typeof (formatProps.formatTraits) !== "string")
341183
341201
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'formatTraits' attribute. It should be of type 'string' or 'string[]'.`);
341184
- this.parseFormatTraits(formatProps.formatTraits); // check that all of the options for formatTraits are valid. If now, throw
341202
+ this.parseFormatTraits(formatProps.formatTraits);
341185
341203
  }
341186
- if (undefined !== formatProps.decimalSeparator) { // optional
341187
- if (typeof (formatProps.decimalSeparator) !== "string") // not a string or not a one character string
341204
+ if (undefined !== formatProps.decimalSeparator) {
341205
+ if (typeof (formatProps.decimalSeparator) !== "string")
341188
341206
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'decimalSeparator' attribute. It should be of type 'string'.`);
341189
341207
  if (formatProps.decimalSeparator.length > 1)
341190
341208
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'decimalSeparator' attribute. It should be an empty or one character string.`);
341191
341209
  this._decimalSeparator = formatProps.decimalSeparator;
341192
341210
  }
341193
- if (undefined !== formatProps.thousandSeparator) { // optional
341211
+ if (undefined !== formatProps.thousandSeparator) {
341194
341212
  if (typeof (formatProps.thousandSeparator) !== "string")
341195
341213
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'thousandSeparator' attribute. It should be of type 'string'.`);
341196
341214
  if (formatProps.thousandSeparator.length > 1)
@@ -341216,7 +341234,7 @@ class BaseFormat {
341216
341234
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'azimuthBase' attribute. It should be of type 'number'.`);
341217
341235
  this._azimuthBase = formatProps.azimuthBase;
341218
341236
  }
341219
- if (undefined !== formatProps.azimuthCounterClockwise) { // optional; default is false
341237
+ if (undefined !== formatProps.azimuthCounterClockwise) { // optional; default is false, azimuth values are clockwise from base
341220
341238
  if (typeof (formatProps.azimuthCounterClockwise) !== "boolean")
341221
341239
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'azimuthCounterClockwise' attribute. It should be of type 'boolean'.`);
341222
341240
  this._azimuthCounterClockwise = formatProps.azimuthCounterClockwise;
@@ -341317,25 +341335,25 @@ class Format extends BaseFormat {
341317
341335
  fromFullyResolvedJSON(jsonObj) {
341318
341336
  this.loadFormatProperties(jsonObj);
341319
341337
  this._customProps = jsonObj.custom;
341320
- if (undefined !== jsonObj.composite) { // optional
341338
+ if (undefined !== jsonObj.composite) {
341321
341339
  this._units = new Array();
341322
341340
  if (jsonObj.composite.includeZero !== undefined) {
341323
- if (typeof (jsonObj.composite.includeZero) !== "boolean") // includeZero must be a boolean IF it is defined
341341
+ if (typeof (jsonObj.composite.includeZero) !== "boolean")
341324
341342
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'includeZero' attribute. It should be of type 'boolean'.`);
341325
341343
  this._includeZero = jsonObj.composite.includeZero;
341326
341344
  }
341327
- if (jsonObj.composite.spacer !== undefined) { // spacer must be a string IF it is defined
341345
+ if (jsonObj.composite.spacer !== undefined) {
341328
341346
  if (typeof (jsonObj.composite.spacer) !== "string")
341329
341347
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'spacer' attribute. It must be of type 'string'.`);
341330
341348
  if (jsonObj.composite.spacer.length > 1)
341331
341349
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'spacer' attribute. It should be an empty or one character string.`);
341332
341350
  this._spacer = jsonObj.composite.spacer;
341333
341351
  }
341334
- if (jsonObj.composite.units !== undefined) { // if composite is defined, it must be an array with 1-4 units
341335
- if (!Array.isArray(jsonObj.composite.units)) { // must be an array
341352
+ if (jsonObj.composite.units !== undefined) { // If composite is defined, it must be an array with 1-4 units
341353
+ if (!Array.isArray(jsonObj.composite.units)) {
341336
341354
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'units' attribute. It must be of type 'array'`);
341337
341355
  }
341338
- if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) { // Composite requires 1-4 units
341356
+ if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) {
341339
341357
  const isDuplicateAllowed = this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Ratio;
341340
341358
  const seenUnits = new Set();
341341
341359
  this._units = [];
@@ -341605,7 +341623,7 @@ var FormatTraits;
341605
341623
  /** Indicates that if an exponent value is positive to not include a `+`. By default a sign, `+` or `-`, is always shown. Not yet supported */
341606
341624
  FormatTraits[FormatTraits["ExponentOnlyNegative"] = 512] = "ExponentOnlyNegative";
341607
341625
  })(FormatTraits || (FormatTraits = {}));
341608
- /** Precision for Fractional formatted value types. Range from Whole (1/1) through 1/256.
341626
+ /** Precision for Fractional formatted value types. Values must be powers of 2, ranging from Whole (1/1) through 1/256.
341609
341627
  * @beta */
341610
341628
  var FractionalPrecision;
341611
341629
  (function (FractionalPrecision) {
@@ -345147,7 +345165,7 @@ class TestContext {
345147
345165
  this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
345148
345166
  const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
345149
345167
  await core_frontend_1.NoRenderApp.startup({
345150
- applicationVersion: "5.7.0-dev.4",
345168
+ applicationVersion: "5.7.0-dev.6",
345151
345169
  applicationId: this.settings.gprid,
345152
345170
  authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
345153
345171
  hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
@@ -348955,9 +348973,9 @@ Object.defineProperty(exports, "createRelationshipPathJoinClause", ({ enumerable
348955
348973
 
348956
348974
  /***/ }),
348957
348975
 
348958
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js":
348976
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js":
348959
348977
  /*!****************************************************************************************************************************************************!*\
348960
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js ***!
348978
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js ***!
348961
348979
  \****************************************************************************************************************************************************/
348962
348980
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
348963
348981
 
@@ -349002,32 +349020,32 @@ var __importStar = (this && this.__importStar) || (function () {
349002
349020
  })();
349003
349021
  Object.defineProperty(exports, "__esModule", ({ value: true }));
349004
349022
  exports.TypedPrimitiveValue = exports.PrimitiveValue = exports.InstanceKey = exports.trimWhitespace = exports.releaseMainThread = exports.parseFullClassName = exports.normalizeFullClassName = exports.julianToDateTime = exports.createMainThreadReleaseOnTimePassedHandler = exports.getClass = exports.createCachingECClassHierarchyInspector = exports.NOOP_LOGGER = exports.parseInstanceLabel = exports.createBisInstanceLabelSelectClauseFactory = exports.createClassBasedInstanceLabelSelectClauseFactory = exports.createDefaultInstanceLabelSelectClauseFactory = exports.formatConcatenatedValue = exports.createDefaultValueFormatter = exports.ConcatenatedValuePart = exports.ConcatenatedValue = exports.ECSql = void 0;
349005
- const ECSql = __importStar(__webpack_require__(/*! ./shared/ecsql-snippets/index.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js"));
349023
+ const ECSql = __importStar(__webpack_require__(/*! ./shared/ecsql-snippets/index.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js"));
349006
349024
  exports.ECSql = ECSql;
349007
- var ConcatenatedValue_js_1 = __webpack_require__(/*! ./shared/ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
349025
+ var ConcatenatedValue_js_1 = __webpack_require__(/*! ./shared/ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
349008
349026
  Object.defineProperty(exports, "ConcatenatedValue", ({ enumerable: true, get: function () { return ConcatenatedValue_js_1.ConcatenatedValue; } }));
349009
349027
  Object.defineProperty(exports, "ConcatenatedValuePart", ({ enumerable: true, get: function () { return ConcatenatedValue_js_1.ConcatenatedValuePart; } }));
349010
- var Formatting_js_1 = __webpack_require__(/*! ./shared/Formatting.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js");
349028
+ var Formatting_js_1 = __webpack_require__(/*! ./shared/Formatting.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js");
349011
349029
  Object.defineProperty(exports, "createDefaultValueFormatter", ({ enumerable: true, get: function () { return Formatting_js_1.createDefaultValueFormatter; } }));
349012
349030
  Object.defineProperty(exports, "formatConcatenatedValue", ({ enumerable: true, get: function () { return Formatting_js_1.formatConcatenatedValue; } }));
349013
- var InstanceLabelSelectClauseFactory_js_1 = __webpack_require__(/*! ./shared/InstanceLabelSelectClauseFactory.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js");
349031
+ var InstanceLabelSelectClauseFactory_js_1 = __webpack_require__(/*! ./shared/InstanceLabelSelectClauseFactory.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js");
349014
349032
  Object.defineProperty(exports, "createDefaultInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createDefaultInstanceLabelSelectClauseFactory; } }));
349015
349033
  Object.defineProperty(exports, "createClassBasedInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createClassBasedInstanceLabelSelectClauseFactory; } }));
349016
349034
  Object.defineProperty(exports, "createBisInstanceLabelSelectClauseFactory", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.createBisInstanceLabelSelectClauseFactory; } }));
349017
349035
  Object.defineProperty(exports, "parseInstanceLabel", ({ enumerable: true, get: function () { return InstanceLabelSelectClauseFactory_js_1.parseInstanceLabel; } }));
349018
- var Logging_js_1 = __webpack_require__(/*! ./shared/Logging.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js");
349036
+ var Logging_js_1 = __webpack_require__(/*! ./shared/Logging.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js");
349019
349037
  Object.defineProperty(exports, "NOOP_LOGGER", ({ enumerable: true, get: function () { return Logging_js_1.NOOP_LOGGER; } }));
349020
- var Metadata_js_1 = __webpack_require__(/*! ./shared/Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349038
+ var Metadata_js_1 = __webpack_require__(/*! ./shared/Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349021
349039
  Object.defineProperty(exports, "createCachingECClassHierarchyInspector", ({ enumerable: true, get: function () { return Metadata_js_1.createCachingECClassHierarchyInspector; } }));
349022
349040
  Object.defineProperty(exports, "getClass", ({ enumerable: true, get: function () { return Metadata_js_1.getClass; } }));
349023
- var Utils_js_1 = __webpack_require__(/*! ./shared/Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349041
+ var Utils_js_1 = __webpack_require__(/*! ./shared/Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349024
349042
  Object.defineProperty(exports, "createMainThreadReleaseOnTimePassedHandler", ({ enumerable: true, get: function () { return Utils_js_1.createMainThreadReleaseOnTimePassedHandler; } }));
349025
349043
  Object.defineProperty(exports, "julianToDateTime", ({ enumerable: true, get: function () { return Utils_js_1.julianToDateTime; } }));
349026
349044
  Object.defineProperty(exports, "normalizeFullClassName", ({ enumerable: true, get: function () { return Utils_js_1.normalizeFullClassName; } }));
349027
349045
  Object.defineProperty(exports, "parseFullClassName", ({ enumerable: true, get: function () { return Utils_js_1.parseFullClassName; } }));
349028
349046
  Object.defineProperty(exports, "releaseMainThread", ({ enumerable: true, get: function () { return Utils_js_1.releaseMainThread; } }));
349029
349047
  Object.defineProperty(exports, "trimWhitespace", ({ enumerable: true, get: function () { return Utils_js_1.trimWhitespace; } }));
349030
- var Values_js_1 = __webpack_require__(/*! ./shared/Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
349048
+ var Values_js_1 = __webpack_require__(/*! ./shared/Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
349031
349049
  Object.defineProperty(exports, "InstanceKey", ({ enumerable: true, get: function () { return Values_js_1.InstanceKey; } }));
349032
349050
  Object.defineProperty(exports, "PrimitiveValue", ({ enumerable: true, get: function () { return Values_js_1.PrimitiveValue; } }));
349033
349051
  Object.defineProperty(exports, "TypedPrimitiveValue", ({ enumerable: true, get: function () { return Values_js_1.TypedPrimitiveValue; } }));
@@ -349035,9 +349053,9 @@ Object.defineProperty(exports, "TypedPrimitiveValue", ({ enumerable: true, get:
349035
349053
 
349036
349054
  /***/ }),
349037
349055
 
349038
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js":
349056
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js":
349039
349057
  /*!*********************************************************************************************************************************************************!*\
349040
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js ***!
349058
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js ***!
349041
349059
  \*********************************************************************************************************************************************************/
349042
349060
  /***/ ((__unused_webpack_module, exports) => {
349043
349061
 
@@ -349094,9 +349112,9 @@ var ConcatenatedValue;
349094
349112
 
349095
349113
  /***/ }),
349096
349114
 
349097
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js":
349115
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js":
349098
349116
  /*!**************************************************************************************************************************************************!*\
349099
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js ***!
349117
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Formatting.js ***!
349100
349118
  \**************************************************************************************************************************************************/
349101
349119
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349102
349120
 
@@ -349110,8 +349128,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
349110
349128
  exports.formatConcatenatedValue = formatConcatenatedValue;
349111
349129
  exports.createDefaultValueFormatter = createDefaultValueFormatter;
349112
349130
  const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.5.2/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
349113
- const ConcatenatedValue_js_1 = __webpack_require__(/*! ./ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
349114
- const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349131
+ const ConcatenatedValue_js_1 = __webpack_require__(/*! ./ConcatenatedValue.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ConcatenatedValue.js");
349132
+ const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349115
349133
  /**
349116
349134
  * Formats a concatenated value into a string, taking into account different types of `ConcatenatedValuePart` that
349117
349135
  * the value consists of.
@@ -349218,9 +349236,9 @@ function applyPointsFormatting(value) {
349218
349236
 
349219
349237
  /***/ }),
349220
349238
 
349221
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js":
349239
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js":
349222
349240
  /*!************************************************************************************************************************************************************************!*\
349223
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js ***!
349241
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/InstanceLabelSelectClauseFactory.js ***!
349224
349242
  \************************************************************************************************************************************************************************/
349225
349243
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349226
349244
 
@@ -349235,7 +349253,7 @@ exports.parseInstanceLabel = parseInstanceLabel;
349235
349253
  exports.createDefaultInstanceLabelSelectClauseFactory = createDefaultInstanceLabelSelectClauseFactory;
349236
349254
  exports.createClassBasedInstanceLabelSelectClauseFactory = createClassBasedInstanceLabelSelectClauseFactory;
349237
349255
  exports.createBisInstanceLabelSelectClauseFactory = createBisInstanceLabelSelectClauseFactory;
349238
- const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ecsql-snippets/ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
349256
+ const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ecsql-snippets/ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
349239
349257
  /**
349240
349258
  * Parses an instance label from query result into a string or a `ConcatenatedValue`. The latter type of result
349241
349259
  * is expected when label selector is created using `IInstanceLabelSelectClauseFactory.createSelectClause` with
@@ -349394,9 +349412,9 @@ function concatenate(props, selectors, checkSelector) {
349394
349412
 
349395
349413
  /***/ }),
349396
349414
 
349397
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js":
349415
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js":
349398
349416
  /*!***********************************************************************************************************************************************!*\
349399
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js ***!
349417
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Logging.js ***!
349400
349418
  \***********************************************************************************************************************************************/
349401
349419
  /***/ ((__unused_webpack_module, exports) => {
349402
349420
 
@@ -349424,9 +349442,9 @@ exports.NOOP_LOGGER = {
349424
349442
 
349425
349443
  /***/ }),
349426
349444
 
349427
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js":
349445
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js":
349428
349446
  /*!************************************************************************************************************************************************!*\
349429
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js ***!
349447
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js ***!
349430
349448
  \************************************************************************************************************************************************/
349431
349449
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349432
349450
 
@@ -349440,7 +349458,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
349440
349458
  exports.createCachingECClassHierarchyInspector = createCachingECClassHierarchyInspector;
349441
349459
  exports.getClass = getClass;
349442
349460
  const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.5.2/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
349443
- const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349461
+ const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js");
349444
349462
  /**
349445
349463
  * Creates a new `ECClassHierarchyInspector` that caches results of `derivesFrom` calls.
349446
349464
  * @public
@@ -349487,9 +349505,9 @@ async function getClass(schemaProvider, fullClassName) {
349487
349505
 
349488
349506
  /***/ }),
349489
349507
 
349490
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js":
349508
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js":
349491
349509
  /*!*********************************************************************************************************************************************!*\
349492
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js ***!
349510
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Utils.js ***!
349493
349511
  \*********************************************************************************************************************************************/
349494
349512
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349495
349513
 
@@ -349594,9 +349612,9 @@ function julianToDateTime(julianDate) {
349594
349612
 
349595
349613
  /***/ }),
349596
349614
 
349597
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js":
349615
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js":
349598
349616
  /*!**********************************************************************************************************************************************!*\
349599
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js ***!
349617
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js ***!
349600
349618
  \**********************************************************************************************************************************************/
349601
349619
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349602
349620
 
@@ -349760,9 +349778,9 @@ var TypedPrimitiveValue;
349760
349778
 
349761
349779
  /***/ }),
349762
349780
 
349763
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js":
349781
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js":
349764
349782
  /*!************************************************************************************************************************************************************************!*\
349765
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js ***!
349783
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js ***!
349766
349784
  \************************************************************************************************************************************************************************/
349767
349785
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349768
349786
 
@@ -349774,8 +349792,8 @@ var TypedPrimitiveValue;
349774
349792
  *--------------------------------------------------------------------------------------------*/
349775
349793
  Object.defineProperty(exports, "__esModule", ({ value: true }));
349776
349794
  exports.createRelationshipPathJoinClause = createRelationshipPathJoinClause;
349777
- const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349778
- const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
349795
+ const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349796
+ const ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
349779
349797
  /**
349780
349798
  * Creates an ECSQL JOIN snippet for given relationships' path.
349781
349799
  *
@@ -349910,9 +349928,9 @@ function getClassSelectClause(ecClass, alias) {
349910
349928
 
349911
349929
  /***/ }),
349912
349930
 
349913
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js":
349931
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js":
349914
349932
  /*!*********************************************************************************************************************************************************************************!*\
349915
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js ***!
349933
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js ***!
349916
349934
  \*********************************************************************************************************************************************************************************/
349917
349935
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
349918
349936
 
@@ -349932,8 +349950,8 @@ exports.createNullableSelector = createNullableSelector;
349932
349950
  exports.createConcatenatedValueJsonSelector = createConcatenatedValueJsonSelector;
349933
349951
  exports.createConcatenatedValueStringSelector = createConcatenatedValueStringSelector;
349934
349952
  const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../common/temp/node_modules/.pnpm/@itwin+core-bentley@5.5.2/node_modules/@itwin/core-bentley/lib/esm/core-bentley.js");
349935
- const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349936
- const Values_js_1 = __webpack_require__(/*! ../Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
349953
+ const Metadata_js_1 = __webpack_require__(/*! ../Metadata.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Metadata.js");
349954
+ const Values_js_1 = __webpack_require__(/*! ../Values.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/Values.js");
349937
349955
  /** @public */
349938
349956
  // eslint-disable-next-line @typescript-eslint/no-redeclare
349939
349957
  var TypedValueSelectClauseProps;
@@ -350180,9 +350198,9 @@ function createPrimitiveValueStringSelector(value) {
350180
350198
 
350181
350199
  /***/ }),
350182
350200
 
350183
- /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js":
350201
+ /***/ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js":
350184
350202
  /*!************************************************************************************************************************************************************!*\
350185
- !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js ***!
350203
+ !*** ../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/index.js ***!
350186
350204
  \************************************************************************************************************************************************************/
350187
350205
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
350188
350206
 
@@ -350194,7 +350212,7 @@ function createPrimitiveValueStringSelector(value) {
350194
350212
  *--------------------------------------------------------------------------------------------*/
350195
350213
  Object.defineProperty(exports, "__esModule", ({ value: true }));
350196
350214
  exports.createRelationshipPathJoinClause = exports.createPrimitivePropertyValueSelectorProps = exports.createInstanceKeySelector = exports.createConcatenatedValueStringSelector = exports.createConcatenatedValueJsonSelector = exports.createNullableSelector = exports.createRawPrimitiveValueSelector = exports.createRawPropertyValueSelector = void 0;
350197
- var ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
350215
+ var ECSqlValueSelectorSnippets_js_1 = __webpack_require__(/*! ./ECSqlValueSelectorSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlValueSelectorSnippets.js");
350198
350216
  Object.defineProperty(exports, "createRawPropertyValueSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createRawPropertyValueSelector; } }));
350199
350217
  Object.defineProperty(exports, "createRawPrimitiveValueSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createRawPrimitiveValueSelector; } }));
350200
350218
  Object.defineProperty(exports, "createNullableSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createNullableSelector; } }));
@@ -350202,7 +350220,7 @@ Object.defineProperty(exports, "createConcatenatedValueJsonSelector", ({ enumera
350202
350220
  Object.defineProperty(exports, "createConcatenatedValueStringSelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createConcatenatedValueStringSelector; } }));
350203
350221
  Object.defineProperty(exports, "createInstanceKeySelector", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createInstanceKeySelector; } }));
350204
350222
  Object.defineProperty(exports, "createPrimitivePropertyValueSelectorProps", ({ enumerable: true, get: function () { return ECSqlValueSelectorSnippets_js_1.createPrimitivePropertyValueSelectorProps; } }));
350205
- var ECSqlJoinSnippets_js_1 = __webpack_require__(/*! ./ECSqlJoinSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js");
350223
+ var ECSqlJoinSnippets_js_1 = __webpack_require__(/*! ./ECSqlJoinSnippets.js */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/shared/ecsql-snippets/ECSqlJoinSnippets.js");
350206
350224
  Object.defineProperty(exports, "createRelationshipPathJoinClause", ({ enumerable: true, get: function () { return ECSqlJoinSnippets_js_1.createRelationshipPathJoinClause; } }));
350207
350225
 
350208
350226
 
@@ -350638,7 +350656,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
350638
350656
  exports.createHiliteSetProvider = createHiliteSetProvider;
350639
350657
  const rxjs_1 = __webpack_require__(/*! rxjs */ "../../common/temp/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/index.js");
350640
350658
  const rxjs_for_await_1 = __webpack_require__(/*! rxjs-for-await */ "../../common/temp/node_modules/.pnpm/rxjs-for-await@1.0.0_rxjs@7.8.2/node_modules/rxjs-for-await/dist/esm/index.js");
350641
- const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
350659
+ const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
350642
350660
  const Utils_js_1 = __webpack_require__(/*! ./Utils.js */ "../../common/temp/node_modules/.pnpm/@itwin+unified-selection@1.2.0/node_modules/@itwin/unified-selection/lib/cjs/unified-selection/Utils.js");
350643
350661
  const HILITE_SET_EMIT_FREQUENCY = 20;
350644
350662
  /**
@@ -350991,7 +351009,7 @@ async function* executeQuery(queryExecutor, query) {
350991
351009
  *--------------------------------------------------------------------------------------------*/
350992
351010
  Object.defineProperty(exports, "__esModule", ({ value: true }));
350993
351011
  exports.Selectables = exports.TRANSIENT_ELEMENT_CLASSNAME = exports.Selectable = void 0;
350994
- const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
351012
+ const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
350995
351013
  /** @public */
350996
351014
  // eslint-disable-next-line @typescript-eslint/no-redeclare
350997
351015
  var Selectable;
@@ -351593,7 +351611,7 @@ exports.genericExecuteQuery = genericExecuteQuery;
351593
351611
  exports.releaseMainThreadOnItemsCount = releaseMainThreadOnItemsCount;
351594
351612
  exports.safeDispose = safeDispose;
351595
351613
  const rxjs_1 = __webpack_require__(/*! rxjs */ "../../common/temp/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/index.js");
351596
- const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.7/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
351614
+ const presentation_shared_1 = __webpack_require__(/*! @itwin/presentation-shared */ "../../common/temp/node_modules/.pnpm/@itwin+presentation-shared@1.2.8/node_modules/@itwin/presentation-shared/lib/cjs/presentation-shared.js");
351597
351615
  /**
351598
351616
  * Forms ECSql bindings from given ID's.
351599
351617
  * @internal
@@ -371813,7 +371831,7 @@ var loadLanguages = instance.loadLanguages;
371813
371831
  /***/ ((module) => {
371814
371832
 
371815
371833
  "use strict";
371816
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.7.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 && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers && npm run -s copy:draco","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","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./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","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","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/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","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/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^4.3.4","@loaders.gl/draco":"^4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
371834
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.7.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 && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers && npm run -s copy:draco","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","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./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","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","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/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","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/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^4.3.4","@loaders.gl/draco":"^4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
371817
371835
 
371818
371836
  /***/ }),
371819
371837