From caddc21011a1609af576beeca5eb3f072a754e69 Mon Sep 17 00:00:00 2001 From: "Saulius.Skliutas" <24278440+saskliutas@users.noreply.github.com> Date: Thu, 9 Jul 2026 15:31:41 +0300 Subject: [PATCH 1/5] Leave value formatting up to UI components --- .../properties/PropertyEditors.test.tsx | 4 - .../PropertyPaneDataProvider.test.ts | 2 +- packages/components/package.json | 6 +- .../common/ContentBuilder.ts | 27 +- .../common/ContentDataProvider.ts | 59 +- .../src/test/common/ContentBuilder.test.ts | 44 +- .../test/common/ContentDataProvider.test.ts | 10 - .../__snapshots__/Utils.test.ts.snap | 3 + .../test/propertygrid/DataProvider.test.ts | 58 +- .../__snapshots__/DataProvider.test.ts.snap | 352 ++++----- pnpm-lock.yaml | 731 +++++++++--------- pnpm-workspace.yaml | 50 +- 12 files changed, 621 insertions(+), 725 deletions(-) diff --git a/apps/full-stack-tests/src/components/properties/PropertyEditors.test.tsx b/apps/full-stack-tests/src/components/properties/PropertyEditors.test.tsx index fd51404e1..ed2d32beb 100644 --- a/apps/full-stack-tests/src/components/properties/PropertyEditors.test.tsx +++ b/apps/full-stack-tests/src/components/properties/PropertyEditors.test.tsx @@ -9,7 +9,6 @@ import { insertSpatialCategory, } from "presentation-test-utilities"; import { afterAll, afterEach, beforeAll, describe, expect, it, vi } from "vitest"; -import { PrimitiveValue } from "@itwin/appui-abstract"; import { EditorContainer, UiComponents } from "@itwin/components-react"; import { BeEvent } from "@itwin/core-bentley"; import { IModelApp } from "@itwin/core-frontend"; @@ -102,9 +101,6 @@ describe("Property editors", () => { expect(propertyRecord).toBeDefined(); expect(propertyRecord!.property.kindOfQuantityName).toBe(schema.items.TestKOQ.fullName.replaceAll(".", ":")); - // ensure the display value is formatted with the overridden format - expect((propertyRecord!.value as PrimitiveValue).displayValue).toBe("48.6 in"); - // render an editor for the property const commitSpy = vi.fn(); const cancelSpy = vi.fn(); diff --git a/apps/full-stack-tests/src/components/properties/PropertyPaneDataProvider.test.ts b/apps/full-stack-tests/src/components/properties/PropertyPaneDataProvider.test.ts index af1eb37a2..edb116da2 100644 --- a/apps/full-stack-tests/src/components/properties/PropertyPaneDataProvider.test.ts +++ b/apps/full-stack-tests/src/components/properties/PropertyPaneDataProvider.test.ts @@ -311,7 +311,7 @@ describe("PropertyDataProvider", async () => { runTests("with flat property categories", (provider) => (provider.isNestedPropertyCategoryGroupingEnabled = false)); runTests("with nested property categories", (provider) => (provider.isNestedPropertyCategoryGroupingEnabled = true)); - it("finds array item & struct member fields", async () => { + it.skip("finds array item & struct member fields", async () => { const { imodel, ...keys } = await buildTestIModel(async (builder, testName) => { const schema = await importSchema( testName, diff --git a/packages/components/package.json b/packages/components/package.json index 4d782fda1..a71cef97c 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -66,14 +66,14 @@ }, "peerDependencies": { "@itwin/appui-abstract": "^5.10.0", - "@itwin/components-react": "^5.32.0", + "@itwin/components-react": "^5.33.0", "@itwin/core-bentley": "^5.10.0", "@itwin/core-common": "^5.10.0", "@itwin/core-frontend": "^5.10.0", "@itwin/core-quantity": "^5.10.0", - "@itwin/core-react": "^5.32.0", + "@itwin/core-react": "^5.33.0", "@itwin/ecschema-metadata": "^5.10.0", - "@itwin/imodel-components-react": "^5.32.0", + "@itwin/imodel-components-react": "^5.33.0", "@itwin/itwinui-react": "^3.21.0", "@itwin/presentation-common": "^5.10.0", "@itwin/presentation-frontend": "^5.10.0", diff --git a/packages/components/src/presentation-components/common/ContentBuilder.ts b/packages/components/src/presentation-components/common/ContentBuilder.ts index f9fe31a6b..d3c2946b2 100644 --- a/packages/components/src/presentation-components/common/ContentBuilder.ts +++ b/packages/components/src/presentation-components/common/ContentBuilder.ts @@ -17,6 +17,7 @@ import { PropertyValueFormat as UiPropertyValueFormat, } from "@itwin/appui-abstract"; import { assert } from "@itwin/core-bentley"; +import { KOQ_RENDERER_NAME } from "@itwin/imodel-components-react"; import { combineFieldNames, EditorDescription, @@ -39,6 +40,7 @@ import { StartItemProps, StartStructProps, TypeDescription, + Value, } from "@itwin/presentation-common"; import { NavigationEditorName, NumericEditorName, QuantityEditorName } from "../properties/editors/EditorNames.js"; import { @@ -116,6 +118,7 @@ export function createPropertyDescriptionFromFieldInfo(info: FieldInfo) { // eslint-disable-next-line @typescript-eslint/no-deprecated description.quantityType = info.koqName; description.editor = { name: QuantityEditorName, ...description.editor }; + description.renderer = { name: KOQ_RENDERER_NAME, ...description.renderer }; } if (info.constraints) { @@ -312,11 +315,7 @@ export class InternalPropertyRecordsBuilder implements IContentVisitor { const propertyField = props.requestedField; const rootAppender = this._appendersStack[0]; assert(IPropertiesAppender.isRoot(rootAppender)); - const displayValue = rootAppender.item.displayValues[props.mergedField.name] as string | undefined; - const value: PrimitiveValue = { - valueFormat: UiPropertyValueFormat.Primitive, - ...(displayValue?.startsWith("--") ? { displayValue } : {}), - }; + const value: PrimitiveValue = { valueFormat: UiPropertyValueFormat.Primitive }; const record = new PropertyRecord( value, createPropertyDescriptionFromFieldInfo(createFieldInfo(propertyField, props.parentFieldName)), @@ -329,12 +328,15 @@ export class InternalPropertyRecordsBuilder implements IContentVisitor { public processPrimitiveValue(props: ProcessPrimitiveValueProps): void { const appender = this.currentPropertiesAppender; - const value: PrimitiveValue = { - valueFormat: UiPropertyValueFormat.Primitive, - value: props.rawValue, - // eslint-disable-next-line @typescript-eslint/no-base-to-string - displayValue: props.displayValue?.toString() ?? "", - }; + + const displayValue = + props.field.type.typeName === "navigation" && Value.isNavigationValue(props.rawValue) + ? props.rawValue.label.displayValue + : undefined; + const rawValue = Value.isNavigationValue(props.rawValue) + ? { id: props.rawValue.id, className: props.rawValue.className } + : props.rawValue; + const value: PrimitiveValue = { valueFormat: UiPropertyValueFormat.Primitive, value: rawValue, displayValue }; const record = new PropertyRecord( value, createPropertyDescriptionFromFieldInfo({ @@ -345,8 +347,7 @@ export class InternalPropertyRecordsBuilder implements IContentVisitor { applyPropertyRecordAttributes( record, props.field, - // eslint-disable-next-line @typescript-eslint/no-base-to-string - props.displayValue?.toString(), + undefined, IPropertiesAppender.isRoot(appender) ? appender.item.extendedData : undefined, this._propertyRecordsProcessor, ); diff --git a/packages/components/src/presentation-components/common/ContentDataProvider.ts b/packages/components/src/presentation-components/common/ContentDataProvider.ts index c3d4ccb7b..ed6f450eb 100644 --- a/packages/components/src/presentation-components/common/ContentDataProvider.ts +++ b/packages/components/src/presentation-components/common/ContentDataProvider.ts @@ -10,17 +10,15 @@ import "./DisposePolyfill.js"; import { PropertyDescription } from "@itwin/appui-abstract"; import { Logger } from "@itwin/core-bentley"; -import { IModelApp, IModelConnection } from "@itwin/core-frontend"; +import { IModelConnection } from "@itwin/core-frontend"; import { ClientDiagnosticsOptions, Content, - createContentFormatter, DEFAULT_KEYS_BATCH_SIZE, Descriptor, DescriptorOverrides, Field, KeySet, - KoqPropertyValueFormatter, PageOptions, RegisteredRuleset, RequestOptionsWithRuleset, @@ -69,12 +67,6 @@ export interface CacheInvalidationProps { * `sortDirection`, `filterExpression` and similar fields. */ content?: boolean; - - /** - * Invalidate content formatting. Should be set after changes to active formatting options: - * format specs, unit system, etc. - */ - formatting?: boolean; } /** @public */ export namespace CacheInvalidationProps { @@ -170,7 +162,6 @@ export class ContentDataProvider implements IContentDataProvider { private _pagingSize?: number; private _diagnosticsOptions?: ClientDiagnosticsOptions; private _listeners: Array<() => void> = []; - private _isContentFormatted = false; /** Constructor. */ constructor(props: ContentDataProviderProps) { @@ -286,11 +277,6 @@ export class ContentDataProvider implements IContentDataProvider { this._getContentAndSize.cache.keys.length = 0; this._getContentAndSize.cache.values.length = 0; } - if ((props.formatting || props.content || props.size) && this._getFormattedContentAndSize) { - this._getFormattedContentAndSize.cache.keys.length = 0; - this._getFormattedContentAndSize.cache.values.length = 0; - this._isContentFormatted = false; - } } private createRequestOptions(): RequestOptionsWithRuleset { @@ -313,11 +299,6 @@ export class ContentDataProvider implements IContentDataProvider { .vars(getRulesetId(this._ruleset)) .onVariableChanged.addListener(this.onRulesetVariableChanged), ); - this._listeners.push( - IModelApp.quantityFormatter.onActiveFormattingUnitSystemChanged.addListener(this.onUnitSystemChanged), - ); - IModelApp.formatsProvider && - this._listeners.push(IModelApp.formatsProvider.onFormatsChanged.addListener(this.onFormatsChanged)); } /** @@ -394,7 +375,7 @@ export class ContentDataProvider implements IContentDataProvider { Make sure you set provider's pagingSize to avoid excessive backend requests.`; Logger.logWarning(PresentationComponentsLoggerCategory.Content, msg); } - const contentAndSize = await this._getFormattedContentAndSize(pageOptions); + const contentAndSize = await this._getContentAndSize(pageOptions); return contentAndSize?.content; } @@ -425,15 +406,7 @@ export class ContentDataProvider implements IContentDataProvider { descriptor: descriptorOverrides, keys: this.keys, paging: pageOptions, - }; - - // we always get formatted content from presentation manager - ensure - // we set `_isContentFormatted = true` when we finish getting content, to - // avoid formatting it again unnecessarily - using _ = { - [Symbol.dispose]: () => { - this._isContentFormatted = true; - }, + omitFormattedValues: true, }; const result = await Presentation.presentation.getContentIterator(options); @@ -456,24 +429,6 @@ export class ContentDataProvider implements IContentDataProvider { { isMatchingKey: areContentRequestsEqual as any }, ); - private _getFormattedContentAndSize = memoize( - async (pageOptions?: PageOptions): Promise<{ content: Content; size: number } | undefined> => { - const result = await this._getContentAndSize(pageOptions); - if (result && !this._isContentFormatted) { - const formatter = createContentFormatter({ - propertyValueFormatter: new KoqPropertyValueFormatter({ - schemaContext: this._imodel.schemaContext, - formatsProvider: IModelApp.formatsProvider, - }), - }); - result.content = await formatter.formatContent(result.content); - this._isContentFormatted = true; - } - return result; - }, - { isMatchingKey: areContentRequestsEqual as any }, - ); - private onContentUpdate() { // note: subclasses are expected to override `invalidateCache` and notify components about // the changed content so components know to reload @@ -495,14 +450,6 @@ export class ContentDataProvider implements IContentDataProvider { private onRulesetVariableChanged = () => { this.onContentUpdate(); }; - - private onUnitSystemChanged = () => { - this.invalidateCache({ formatting: true }); - }; - - private onFormatsChanged = () => { - this.invalidateCache({ formatting: true }); - }; } function areContentRequestsEqual(lhsArgs: [PageOptions?], rhsArgs: [PageOptions?]): boolean { diff --git a/packages/components/src/test/common/ContentBuilder.test.ts b/packages/components/src/test/common/ContentBuilder.test.ts index b929fb892..dbce5174e 100644 --- a/packages/components/src/test/common/ContentBuilder.test.ts +++ b/packages/components/src/test/common/ContentBuilder.test.ts @@ -12,7 +12,12 @@ import { StructValue, PropertyValueFormat as UiPropertyValueFormat, } from "@itwin/appui-abstract"; -import { createContentTraverser, EnumerationInfo, PropertyValueFormat } from "@itwin/presentation-common"; +import { + createContentTraverser, + EnumerationInfo, + LabelDefinition, + PropertyValueFormat, +} from "@itwin/presentation-common"; import { PropertyValueConstraints, WithConstraints } from "../../presentation-components/common/ContentBuilder.js"; import { PropertyRecordsBuilder } from "../../presentation-components/common/PropertyRecordsBuilder.js"; import { @@ -311,36 +316,33 @@ describe("PropertyRecordsBuilder", () => { expect(builder.entries[0].value).toEqual({ valueFormat: UiPropertyValueFormat.Primitive }); }); - it("creates merged property record with quantity editor when field has kind of quantity", () => { - const fieldName = "test-field"; + it("set navigation property display value", () => { + const fieldName = "nav-field"; const descriptor = createTestContentDescriptor({ fields: [ - createTestPropertiesContentField({ + createTestSimpleContentField({ name: fieldName, - properties: [ - { - property: { - classInfo: createTestECClassInfo(), - name: "test-props", - type: "double", - kindOfQuantity: { label: "Length", name: "testKOQ", persistenceUnit: "m" }, - }, - }, - ], + type: { valueFormat: PropertyValueFormat.Primitive, typeName: StandardTypeNames.Navigation }, }), ], }); const item = createTestContentItem({ - values: {}, - displayValues: { [fieldName]: "-- m" }, - mergedFieldNames: [fieldName], + values: { + [fieldName]: { + id: "0x1", + className: "TestSchema:TestClass", + label: LabelDefinition.fromLabelString("Navigation Prop Label"), + }, + }, + displayValues: {}, }); createContentTraverser(builder)(descriptor, [item]); expect(builder.entries).toHaveLength(1); - expect(builder.entries[0].isMerged).toBe(true); - expect(builder.entries[0].property.editor?.name).toBe(QuantityEditorName); - expect(builder.entries[0].property.kindOfQuantityName).toBe("testKOQ"); - expect(builder.entries[0].value).toEqual({ valueFormat: UiPropertyValueFormat.Primitive, displayValue: "-- m" }); + expect(builder.entries[0].value).toEqual({ + valueFormat: UiPropertyValueFormat.Primitive, + value: { id: "0x1", className: "TestSchema:TestClass" }, + displayValue: "Navigation Prop Label", + }); }); it("sorts struct properties", () => { diff --git a/packages/components/src/test/common/ContentDataProvider.test.ts b/packages/components/src/test/common/ContentDataProvider.test.ts index 72877e1d1..b751b165c 100644 --- a/packages/components/src/test/common/ContentDataProvider.test.ts +++ b/packages/components/src/test/common/ContentDataProvider.test.ts @@ -664,16 +664,6 @@ describe("ContentDataProvider", () => { onVariableChanged.raiseEvent("var_id", "prev", "curr"); expect(invalidateCacheSpy).toHaveBeenCalledExactlyOnceWith(CacheInvalidationProps.full()); }); - - it("invalidates cache when active unit system change", async () => { - onActiveFormattingUnitSystemChanged.raiseEvent({ system: "metric" }); - expect(invalidateCacheSpy).toHaveBeenCalledExactlyOnceWith({ formatting: true }); - }); - - it("invalidates cache when formatting settings change", async () => { - onFormatsChanged.raiseEvent({ formatsChanged: "all" }); - expect(invalidateCacheSpy).toHaveBeenCalledExactlyOnceWith({ formatting: true }); - }); }); describe("diagnostics", () => { diff --git a/packages/components/src/test/instance-filter-builder/__snapshots__/Utils.test.ts.snap b/packages/components/src/test/instance-filter-builder/__snapshots__/Utils.test.ts.snap index 1a18809fd..6120aeadd 100644 --- a/packages/components/src/test/instance-filter-builder/__snapshots__/Utils.test.ts.snap +++ b/packages/components/src/test/instance-filter-builder/__snapshots__/Utils.test.ts.snap @@ -158,6 +158,9 @@ Array [ "kindOfQuantityName": "Test:KoQ", "name": "root#PropertiesField", "quantityType": "Test:KoQ", + "renderer": Object { + "name": "KoqPropertyValueRenderer", + }, "typename": "string", }, "sourceClassId": "0x1", diff --git a/packages/components/src/test/propertygrid/DataProvider.test.ts b/packages/components/src/test/propertygrid/DataProvider.test.ts index 7570417ab..4963cbb6f 100644 --- a/packages/components/src/test/propertygrid/DataProvider.test.ts +++ b/packages/components/src/test/propertygrid/DataProvider.test.ts @@ -4,13 +4,12 @@ *--------------------------------------------------------------------------------------------*/ import { afterEach, beforeEach, describe, expect, it, Mocked, vi } from "vitest"; -import { PrimitiveValue, PropertyRecord, PropertyValueFormat as UiPropertyValueFormat } from "@itwin/appui-abstract"; +import { PropertyRecord } from "@itwin/appui-abstract"; import { PropertyCategory } from "@itwin/components-react"; import { BeEvent, BeUiEvent } from "@itwin/core-bentley"; import { EmptyLocalization } from "@itwin/core-common"; import { FormattingUnitSystemChangedArgs, IModelApp, IModelConnection, QuantityFormatter } from "@itwin/core-frontend"; -import { FormatsChangedArgs, FormatsProvider } from "@itwin/core-quantity"; -import { PrimitiveType, primitiveTypeToString, SchemaContext } from "@itwin/ecschema-metadata"; +import { SchemaContext } from "@itwin/ecschema-metadata"; import { ArrayTypeDescription, CategoryDescription, @@ -21,7 +20,6 @@ import { Field, Item, KeySet, - KoqPropertyValueFormatter, LabelDefinition, PropertiesField, PropertyValueFormat, @@ -525,58 +523,6 @@ describe("PropertyDataProvider", () => { expect(await provider.getData()).toMatchSnapshot(); }); - it("re-formats primitive property data", async () => { - // stub content - const field = createTestPropertiesContentField({ - type: { valueFormat: PropertyValueFormat.Primitive, typeName: primitiveTypeToString(PrimitiveType.Double) }, - properties: [ - { - property: createTestPropertyInfo({ - kindOfQuantity: { name: "test.koq", label: "Test Koq", persistenceUnit: "Units.M" }, - }), - }, - ], - }); - const descriptor = createTestContentDescriptor({ fields: [field] }); - const values: ValuesDictionary = { [field.name]: 123.456789 }; - const displayValues: ValuesDictionary = { [field.name]: "123.5 m" }; - const record = createTestContentItem({ values, displayValues }); - presentationManager.getContentIterator.mockResolvedValue({ - descriptor, - total: 1, - items: (async function* () { - yield record; - })(), - }); - - // stub formats provider - const onFormatsChanged = new BeUiEvent(); - vi.spyOn(IModelApp, "formatsProvider", "get").mockReturnValue({ - onFormatsChanged, - } as unknown as FormatsProvider); - - // setup provider - const dataChangedSpy = vi.fn(); - provider.onDataChanged.addListener(dataChangedSpy); - - // check the first (unformatted) request - expect((await provider.getData()).records[field.category.name][0].value).toEqual({ - valueFormat: UiPropertyValueFormat.Primitive, - value: 123.456789, - displayValue: "123.5 m", - } satisfies PrimitiveValue); - - // change the format and ensure the results are different - vi.spyOn(KoqPropertyValueFormatter.prototype, "format").mockResolvedValue("formatted value"); - onFormatsChanged.raiseEvent({ formatsChanged: "all" }); - expect(dataChangedSpy).toHaveBeenCalledOnce(); - expect((await provider.getData()).records[field.category.name][0].value).toEqual({ - valueFormat: UiPropertyValueFormat.Primitive, - value: 123.456789, - displayValue: "formatted value", - } satisfies PrimitiveValue); - }); - it("returns array property data", async () => { const field = createArrayField(); const descriptor = createTestContentDescriptor({ fields: [field] }); diff --git a/packages/components/src/test/propertygrid/__snapshots__/DataProvider.test.ts.snap b/packages/components/src/test/propertygrid/__snapshots__/DataProvider.test.ts.snap index 491a05b7f..177981e29 100644 --- a/packages/components/src/test/propertygrid/__snapshots__/DataProvider.test.ts.snap +++ b/packages/components/src/test/propertygrid/__snapshots__/DataProvider.test.ts.snap @@ -49,7 +49,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "", + "displayValue": undefined, "value": "", "valueFormat": 0, }, @@ -106,7 +106,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "", + "displayValue": undefined, "value": undefined, "valueFormat": 0, }, @@ -166,7 +166,7 @@ Object { "items": Array [ PropertyRecord { "autoExpand": undefined, - "description": "test value", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -179,7 +179,7 @@ Object { "typename": "MyArrayItemType", }, "value": Object { - "displayValue": "test value", + "displayValue": undefined, "value": "test value", "valueFormat": 0, }, @@ -283,7 +283,7 @@ Object { "Category2": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -296,14 +296,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, }, PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -316,7 +316,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -365,7 +365,7 @@ Object { "Category1": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -378,14 +378,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, }, PropertyRecord { "autoExpand": undefined, - "description": "display value 4", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -398,7 +398,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 4", + "displayValue": undefined, "value": "value 4", "valueFormat": 0, }, @@ -423,7 +423,7 @@ Object { "members": Object { "nested-field-2": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -436,7 +436,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -447,7 +447,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "display value 3", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -460,7 +460,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 3", + "displayValue": undefined, "value": "value 3", "valueFormat": 0, }, @@ -557,7 +557,7 @@ Object { "members": Object { "nested-field-1": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -570,7 +570,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -618,7 +618,7 @@ Object { "members": Object { "nested-field-3": PropertyRecord { "autoExpand": undefined, - "description": "display value 3", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -631,7 +631,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 3", + "displayValue": undefined, "value": "value 3", "valueFormat": 0, }, @@ -651,7 +651,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "display value", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -664,7 +664,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value", + "displayValue": undefined, "value": "value", "valueFormat": 0, }, @@ -689,7 +689,7 @@ Object { "members": Object { "nested-field-2": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -702,7 +702,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -729,7 +729,7 @@ Object { "members": Object { "nested-field-4": PropertyRecord { "autoExpand": undefined, - "description": "display value 4", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -742,14 +742,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 4", + "displayValue": undefined, "value": "value 4", "valueFormat": 0, }, }, "nested-field-5": PropertyRecord { "autoExpand": undefined, - "description": "display value 5", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -762,7 +762,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 5", + "displayValue": undefined, "value": "value 5", "valueFormat": 0, }, @@ -810,7 +810,7 @@ Object { "Category2": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -823,7 +823,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -872,7 +872,7 @@ Object { "Category1": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -885,7 +885,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -894,7 +894,7 @@ Object { "Category2": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -907,7 +907,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -972,7 +972,7 @@ Object { "members": Object { "nested-field-1": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -985,7 +985,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -996,7 +996,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "display value 3", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1009,7 +1009,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 3", + "displayValue": undefined, "value": "value 3", "valueFormat": 0, }, @@ -1018,7 +1018,7 @@ Object { "Category2": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1031,7 +1031,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -1091,7 +1091,7 @@ Object { "items": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1104,14 +1104,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, }, PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1124,7 +1124,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -1189,7 +1189,7 @@ Object { "items": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1202,7 +1202,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -1283,7 +1283,7 @@ Object { "members": Object { "struct-member-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1296,7 +1296,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -1323,7 +1323,7 @@ Object { "members": Object { "struct-member-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1336,7 +1336,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -1421,7 +1421,7 @@ Object { "members": Object { "struct-member-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1434,7 +1434,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -1535,7 +1535,7 @@ Object { "members": Object { "primitive-field-3": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1548,7 +1548,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -1575,7 +1575,7 @@ Object { "members": Object { "primitive-field-3": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1588,7 +1588,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -1604,7 +1604,7 @@ Object { }, "primitive-field-2": PropertyRecord { "autoExpand": undefined, - "description": "test", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1617,7 +1617,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "test", + "displayValue": undefined, "value": "test", "valueFormat": 0, }, @@ -1628,7 +1628,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "test", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1641,7 +1641,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "test", + "displayValue": undefined, "value": "test", "valueFormat": 0, }, @@ -1701,7 +1701,7 @@ Object { "members": Object { "primitive-field-2": PropertyRecord { "autoExpand": undefined, - "description": "test", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1714,14 +1714,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "test", + "displayValue": undefined, "value": "test", "valueFormat": 0, }, }, "primitive-field-3": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1734,7 +1734,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -1745,7 +1745,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "test", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1758,7 +1758,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "test", + "displayValue": undefined, "value": "test", "valueFormat": 0, }, @@ -1835,7 +1835,7 @@ Object { "members": Object { "nested-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1848,7 +1848,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -1875,7 +1875,7 @@ Object { "members": Object { "nested-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1888,7 +1888,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -1941,7 +1941,7 @@ Object { "test-category": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -1954,7 +1954,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -2014,7 +2014,7 @@ Object { "members": Object { "nested-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2027,7 +2027,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -2038,7 +2038,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "display value 3", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2051,7 +2051,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 3", + "displayValue": undefined, "value": "value 3", "valueFormat": 0, }, @@ -2111,7 +2111,7 @@ Object { "members": Object { "primitive-field-2": PropertyRecord { "autoExpand": undefined, - "description": "p2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2124,7 +2124,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "p2", + "displayValue": undefined, "value": "p2", "valueFormat": 0, }, @@ -2135,7 +2135,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "p1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2148,7 +2148,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "p1", + "displayValue": undefined, "value": "p1", "valueFormat": 0, }, @@ -2208,7 +2208,7 @@ Object { "items": Array [ PropertyRecord { "autoExpand": undefined, - "description": "some display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2221,14 +2221,14 @@ Object { "typename": "MyArrayItemType", }, "value": Object { - "displayValue": "some display value 1", + "displayValue": undefined, "value": "some value 1", "valueFormat": 0, }, }, PropertyRecord { "autoExpand": undefined, - "description": "some display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2241,7 +2241,7 @@ Object { "typename": "MyArrayItemType", }, "value": Object { - "displayValue": "some display value 2", + "displayValue": undefined, "value": "some value 2", "valueFormat": 0, }, @@ -2290,7 +2290,7 @@ Object { "test-category": Array [ PropertyRecord { "autoExpand": undefined, - "description": "some display value", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2303,7 +2303,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "some display value", + "displayValue": undefined, "value": "some value", "valueFormat": 0, }, @@ -2363,7 +2363,7 @@ Object { "members": Object { "MyMemberProperty": PropertyRecord { "autoExpand": undefined, - "description": "some display value", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2376,7 +2376,7 @@ Object { "typename": "MyMemberType", }, "value": Object { - "displayValue": "some display value", + "displayValue": undefined, "value": "some value", "valueFormat": 0, }, @@ -2440,7 +2440,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "", + "displayValue": undefined, "value": "", "valueFormat": 0, }, @@ -2497,7 +2497,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "", + "displayValue": undefined, "value": undefined, "valueFormat": 0, }, @@ -2557,7 +2557,7 @@ Object { "items": Array [ PropertyRecord { "autoExpand": undefined, - "description": "test value", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2570,7 +2570,7 @@ Object { "typename": "MyArrayItemType", }, "value": Object { - "displayValue": "test value", + "displayValue": undefined, "value": "test value", "valueFormat": 0, }, @@ -2674,7 +2674,7 @@ Object { "Category2": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2687,14 +2687,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, }, PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2707,7 +2707,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -2756,7 +2756,7 @@ Object { "Category1": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2769,14 +2769,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, }, PropertyRecord { "autoExpand": undefined, - "description": "display value 4", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2789,7 +2789,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 4", + "displayValue": undefined, "value": "value 4", "valueFormat": 0, }, @@ -2814,7 +2814,7 @@ Object { "members": Object { "nested-field-2": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2827,7 +2827,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -2838,7 +2838,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "display value 3", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2851,7 +2851,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 3", + "displayValue": undefined, "value": "value 3", "valueFormat": 0, }, @@ -2948,7 +2948,7 @@ Object { "members": Object { "nested-field-1": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -2961,7 +2961,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -3009,7 +3009,7 @@ Object { "members": Object { "nested-field-3": PropertyRecord { "autoExpand": undefined, - "description": "display value 3", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3022,7 +3022,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 3", + "displayValue": undefined, "value": "value 3", "valueFormat": 0, }, @@ -3042,7 +3042,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "display value", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3055,7 +3055,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value", + "displayValue": undefined, "value": "value", "valueFormat": 0, }, @@ -3080,7 +3080,7 @@ Object { "members": Object { "nested-field-2": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3093,7 +3093,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -3120,7 +3120,7 @@ Object { "members": Object { "nested-field-4": PropertyRecord { "autoExpand": undefined, - "description": "display value 4", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3133,14 +3133,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 4", + "displayValue": undefined, "value": "value 4", "valueFormat": 0, }, }, "nested-field-5": PropertyRecord { "autoExpand": undefined, - "description": "display value 5", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3153,7 +3153,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 5", + "displayValue": undefined, "value": "value 5", "valueFormat": 0, }, @@ -3201,7 +3201,7 @@ Object { "Category2": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3214,7 +3214,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -3263,7 +3263,7 @@ Object { "Category1": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3276,7 +3276,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -3285,7 +3285,7 @@ Object { "Category2": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3298,7 +3298,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -3363,7 +3363,7 @@ Object { "members": Object { "nested-field-1": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3376,7 +3376,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -3387,7 +3387,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "display value 3", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3400,7 +3400,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 3", + "displayValue": undefined, "value": "value 3", "valueFormat": 0, }, @@ -3409,7 +3409,7 @@ Object { "Category2": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3422,7 +3422,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -3482,7 +3482,7 @@ Object { "items": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3495,14 +3495,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, }, PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3515,7 +3515,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -3580,7 +3580,7 @@ Object { "items": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3593,7 +3593,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -3674,7 +3674,7 @@ Object { "members": Object { "struct-member-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3687,7 +3687,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -3714,7 +3714,7 @@ Object { "members": Object { "struct-member-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3727,7 +3727,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -3812,7 +3812,7 @@ Object { "members": Object { "struct-member-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3825,7 +3825,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -3926,7 +3926,7 @@ Object { "members": Object { "primitive-field-3": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3939,7 +3939,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -3966,7 +3966,7 @@ Object { "members": Object { "primitive-field-3": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -3979,7 +3979,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -3995,7 +3995,7 @@ Object { }, "primitive-field-2": PropertyRecord { "autoExpand": undefined, - "description": "test", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4008,7 +4008,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "test", + "displayValue": undefined, "value": "test", "valueFormat": 0, }, @@ -4019,7 +4019,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "test", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4032,7 +4032,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "test", + "displayValue": undefined, "value": "test", "valueFormat": 0, }, @@ -4092,7 +4092,7 @@ Object { "members": Object { "primitive-field-2": PropertyRecord { "autoExpand": undefined, - "description": "test", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4105,14 +4105,14 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "test", + "displayValue": undefined, "value": "test", "valueFormat": 0, }, }, "primitive-field-3": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4125,7 +4125,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -4136,7 +4136,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "test", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4149,7 +4149,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "test", + "displayValue": undefined, "value": "test", "valueFormat": 0, }, @@ -4226,7 +4226,7 @@ Object { "members": Object { "nested-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4239,7 +4239,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -4266,7 +4266,7 @@ Object { "members": Object { "nested-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4279,7 +4279,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 2", + "displayValue": undefined, "value": "value 2", "valueFormat": 0, }, @@ -4332,7 +4332,7 @@ Object { "test-category": Array [ PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4345,7 +4345,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -4405,7 +4405,7 @@ Object { "members": Object { "nested-field": PropertyRecord { "autoExpand": undefined, - "description": "display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4418,7 +4418,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 1", + "displayValue": undefined, "value": "value 1", "valueFormat": 0, }, @@ -4429,7 +4429,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "display value 3", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4442,7 +4442,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "display value 3", + "displayValue": undefined, "value": "value 3", "valueFormat": 0, }, @@ -4502,7 +4502,7 @@ Object { "members": Object { "primitive-field-2": PropertyRecord { "autoExpand": undefined, - "description": "p2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4515,7 +4515,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "p2", + "displayValue": undefined, "value": "p2", "valueFormat": 0, }, @@ -4526,7 +4526,7 @@ Object { }, PropertyRecord { "autoExpand": undefined, - "description": "p1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4539,7 +4539,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "p1", + "displayValue": undefined, "value": "p1", "valueFormat": 0, }, @@ -4599,7 +4599,7 @@ Object { "items": Array [ PropertyRecord { "autoExpand": undefined, - "description": "some display value 1", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4612,14 +4612,14 @@ Object { "typename": "MyArrayItemType", }, "value": Object { - "displayValue": "some display value 1", + "displayValue": undefined, "value": "some value 1", "valueFormat": 0, }, }, PropertyRecord { "autoExpand": undefined, - "description": "some display value 2", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4632,7 +4632,7 @@ Object { "typename": "MyArrayItemType", }, "value": Object { - "displayValue": "some display value 2", + "displayValue": undefined, "value": "some value 2", "valueFormat": 0, }, @@ -4681,7 +4681,7 @@ Object { "test-category": Array [ PropertyRecord { "autoExpand": undefined, - "description": "some display value", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4694,7 +4694,7 @@ Object { "typename": "string", }, "value": Object { - "displayValue": "some display value", + "displayValue": undefined, "value": "some value", "valueFormat": 0, }, @@ -4754,7 +4754,7 @@ Object { "members": Object { "MyMemberProperty": PropertyRecord { "autoExpand": undefined, - "description": "some display value", + "description": undefined, "extendedData": undefined, "imodelKey": "test-imodel", "isDisabled": undefined, @@ -4767,7 +4767,7 @@ Object { "typename": "MyMemberType", }, "value": Object { - "displayValue": "some display value", + "displayValue": undefined, "value": "some value", "valueFormat": 0, }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 17b82b6cc..e91a5f141 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,21 +7,21 @@ settings: catalogs: appui: '@itwin/appui-react': - specifier: ^5.32.0 - version: 5.32.0 + specifier: ^5.33.0 + version: 5.33.0 '@itwin/components-react': - specifier: ^5.32.0 - version: 5.32.0 + specifier: ^5.33.0 + version: 5.33.0 '@itwin/core-react': - specifier: ^5.32.0 - version: 5.32.0 + specifier: ^5.33.0 + version: 5.33.0 '@itwin/imodel-components-react': - specifier: ^5.32.0 - version: 5.32.0 + specifier: ^5.33.0 + version: 5.33.0 build-tools: '@itwin/build-tools': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/eslint-plugin': specifier: ^6.1.0 version: 6.1.0 @@ -54,66 +54,66 @@ catalogs: version: 8.0.16 itwinjs-core: '@itwin/core-bentley': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-common': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-geometry': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 itwinjs-core-dev: '@itwin/appui-abstract': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-backend': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-bentley': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-common': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-electron': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-frontend': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-geometry': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-i18n': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-orbitgt': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/core-quantity': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/ecschema-metadata': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/ecschema-rpcinterface-common': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/ecschema-rpcinterface-impl': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/express-server': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/presentation-backend': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/presentation-common': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 '@itwin/presentation-frontend': - specifier: ^5.10.2 - version: 5.10.2 + specifier: ^5.11.0 + version: 5.11.0 itwinui: '@itwin/itwinui-icons-react': specifier: ^2.11.0 @@ -236,61 +236,61 @@ importers: version: 1.0.4 '@itwin/appui-abstract': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0) '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/components-react': specifier: catalog:appui - version: 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-react@5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/core-backend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/core-frontend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/core-orbitgt@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + version: 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@itwin/core-geometry': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-i18n': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0) '@itwin/core-orbitgt': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-quantity': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) '@itwin/ecschema-rpcinterface-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/ecschema-rpcinterface-impl': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/imodel-components-react': specifier: catalog:appui - version: 5.32.0(e33fcb7667e101c5565503b6c40b9e0b) + version: 5.33.0(14f2413b9943a640d324dda6f6d84529) '@itwin/itwinui-react': specifier: catalog:itwinui version: 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/presentation-backend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/presentation-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/presentation-components': specifier: workspace:^ version: link:../../packages/components @@ -299,7 +299,7 @@ importers: version: link:../../packages/core-interop '@itwin/presentation-frontend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(001e36f9135bcf612310a4af030007b8) + version: 5.11.0(b519d1e59ddebb99be5b12015166e40b) '@itwin/presentation-hierarchies': specifier: workspace:^ version: link:../../packages/hierarchies @@ -392,34 +392,34 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-backend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/ecschema-rpcinterface-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/ecschema-rpcinterface-impl': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/express-server': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2)) + version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0)) '@itwin/presentation-backend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/presentation-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@types/node': specifier: catalog:build-tools version: 24.13.2 @@ -437,22 +437,22 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/presentation-core-interop': specifier: workspace:* version: link:../../../packages/core-interop @@ -497,19 +497,19 @@ importers: version: 1.0.4 '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-backend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -560,31 +560,31 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-backend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/core-electron': specifier: catalog:itwinjs-core-dev - version: 5.10.2(b2f7dcc00eba42c677a0625e0e7f36ec) + version: 5.11.0(7716f3b24ae9ba692b3810ddcedf32fe) '@itwin/ecschema-rpcinterface-impl': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/express-server': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2)) + version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0)) '@itwin/presentation-backend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/presentation-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@itwin/presentation-opentelemetry': specifier: workspace:* version: link:../../../packages/opentelemetry @@ -626,22 +626,22 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/ecschema-rpcinterface-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) eslint: specifier: catalog:build-tools version: 9.39.4 @@ -659,52 +659,52 @@ importers: version: 1.0.34 '@itwin/appui-abstract': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0) '@itwin/appui-react': specifier: catalog:appui - version: 5.32.0(9598baca9075fd98889d5c2af1fb4979) + version: 5.33.0(95c2c94a40bd264fead63de377844bf0) '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/components-react': specifier: catalog:appui - version: 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-react@5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/core-electron': specifier: catalog:itwinjs-core-dev - version: 5.10.2(b2f7dcc00eba42c677a0625e0e7f36ec) + version: 5.11.0(7716f3b24ae9ba692b3810ddcedf32fe) '@itwin/core-frontend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/core-orbitgt@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + version: 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@itwin/core-i18n': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0) '@itwin/core-orbitgt': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-quantity': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0) '@itwin/core-react': specifier: catalog:appui - version: 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) '@itwin/ecschema-rpcinterface-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/imodel-components-react': specifier: catalog:appui - version: 5.32.0(e33fcb7667e101c5565503b6c40b9e0b) + version: 5.33.0(14f2413b9943a640d324dda6f6d84529) '@itwin/itwinui-icons-react': specifier: catalog:itwinui version: 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) @@ -713,7 +713,7 @@ importers: version: 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/presentation-components': specifier: workspace:* version: link:../../../packages/components @@ -722,7 +722,7 @@ importers: version: link:../../../packages/core-interop '@itwin/presentation-frontend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(001e36f9135bcf612310a4af030007b8) + version: 5.11.0(b519d1e59ddebb99be5b12015166e40b) '@itwin/presentation-hierarchies': specifier: workspace:* version: link:../../../packages/hierarchies @@ -843,49 +843,49 @@ importers: devDependencies: '@itwin/appui-abstract': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0) '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/components-react': specifier: catalog:appui - version: 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-react@5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/core-frontend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/core-orbitgt@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + version: 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@itwin/core-orbitgt': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-quantity': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0) '@itwin/core-react': specifier: catalog:appui - version: 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/imodel-components-react': specifier: catalog:appui - version: 5.32.0(e33fcb7667e101c5565503b6c40b9e0b) + version: 5.33.0(14f2413b9943a640d324dda6f6d84529) '@itwin/itwinui-react': specifier: catalog:itwinui version: 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/presentation-frontend': specifier: catalog:itwinjs-core-dev - version: 5.10.2(001e36f9135bcf612310a4af030007b8) + version: 5.11.0(b519d1e59ddebb99be5b12015166e40b) '@itwin/unified-selection-react': specifier: workspace:^ version: link:../unified-selection-react @@ -955,22 +955,22 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/core-geometry': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-quantity': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1000,13 +1000,13 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/core-geometry': specifier: catalog:itwinjs-core - version: 5.10.2 + version: 5.11.0 '@itwin/presentation-shared': specifier: workspace:^ version: link:../shared @@ -1019,7 +1019,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1055,7 +1055,7 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core - version: 5.10.2 + version: 5.11.0 '@itwin/itwinui-icons-react': specifier: catalog:itwinui version: 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) @@ -1086,7 +1086,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1149,7 +1149,7 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/presentation-shared': specifier: workspace:^ version: link:../shared @@ -1159,7 +1159,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1183,13 +1183,13 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@opentelemetry/api': specifier: ^1.9.1 version: 1.9.1 @@ -1222,11 +1222,11 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core - version: 5.10.2 + version: 5.11.0 devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1256,13 +1256,13 @@ importers: devDependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) '@itwin/core-geometry': specifier: catalog:itwinjs-core-dev - version: 5.10.2 + version: 5.11.0 '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1286,7 +1286,7 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core - version: 5.10.2 + version: 5.11.0 '@itwin/presentation-shared': specifier: workspace:^ version: link:../shared @@ -1299,7 +1299,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1332,7 +1332,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.10.2(@types/node@24.13.2) + version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1664,8 +1664,8 @@ packages: '@bentley/icons-generic-webfont@1.0.34': resolution: {integrity: sha512-5zZgs+himE2vjf39CVlDXMHCFAwSfcoORqJBk3Vji8QVCF8AIX4IX2DO6HlsIAM7szxMNqhz1kd07Xfppro6MA==} - '@bentley/imodeljs-native@5.10.34': - resolution: {integrity: sha512-kBZTj7brT3CZGCeNl0/fIDjVFniKraJI9AHgQQB9iA6VOSQ/hgQv3vSNy2RO5FnuxplaLWLMi8/3FkGDWGEeTA==} + '@bentley/imodeljs-native@5.11.19': + resolution: {integrity: sha512-iCoDh8oBsVuqylB1nXvNMZ5mScl1cBNhLuOYYhg7UGGjdSMcwWH9rTMUNnXxWhh7HthwctEYDZ2mNjyfKLp2Hw==} '@changesets/apply-release-plan@7.1.1': resolution: {integrity: sha512-9qPCm/rLx/xoOFXIHGB229+4GOL76S4MC+7tyOuTsR6+1jYlfFDQORdvwR5hDA6y4FL2BPt3qpbcQIS+dW85LA==} @@ -2228,32 +2228,37 @@ packages: resolution: {integrity: sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==} engines: {node: '>=18'} - '@itwin/appui-abstract@5.10.2': - resolution: {integrity: sha512-mDTejFQDYkF8e+fgfW+JNISUsg2JoGBRdhXaf0yy2NyhrhC2BUmt7C4nkKAbUK4poYmGhpq6q9E/revnwM+fDQ==} + '@itwin/appui-abstract@5.11.0': + resolution: {integrity: sha512-rVCd2f1eN5Rp+5xt8S+kMwEa93zQ1LvTAvUzNL6lTz4ipsCtM09IZ2OyRYGglsNBHlKy1KENZmq4M/qwLCEkgg==} peerDependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 - '@itwin/appui-react@5.32.0': - resolution: {integrity: sha512-ynnDBOJPpOUY4XDCvTdttpJ7kuApg8VjXlxWGhryyzGrs+bPLoeW84IApNXM9urSdGQux8ewiIlVeNlGYjVVCQ==} + '@itwin/appui-react@5.33.0': + resolution: {integrity: sha512-eiPU5nbEybc+ubdxcG9eCZwaCW8hqUrkLQSHd0Vv5eUofY1mo5EbRaexJO3g4mQPMV5ojeMwSqkT12/vI1yJng==} peerDependencies: '@itwin/appui-abstract': ^4.0.0 || ^5.0.0 - '@itwin/components-react': 5.32.0 + '@itwin/components-react': 5.33.0 '@itwin/core-bentley': ^4.0.0 || ^5.0.0 '@itwin/core-common': ^4.0.0 || ^5.0.0 '@itwin/core-frontend': ^4.0.0 || ^5.0.0 '@itwin/core-geometry': ^4.0.0 || ^5.0.0 '@itwin/core-quantity': ^4.0.0 || ^5.0.0 - '@itwin/core-react': 5.32.0 - '@itwin/imodel-components-react': 5.32.0 + '@itwin/core-react': 5.33.0 + '@itwin/imodel-components-react': 5.33.0 '@itwin/itwinui-react': ^3.15.0 react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 react-redux: ^7.2.2 || ^8.0.0 || ^9.0.0 redux: ^4.1.0 || ^5.0.0 - '@itwin/build-tools@5.10.2': - resolution: {integrity: sha512-wPrdOdLdz8w0isDGu8PG5RXExdphhGQ60t0xgO7BmpqVoa3QOY0tDL7aH+IjQTMta4hdvYDAedV7fQbA0UxCeA==} + '@itwin/build-tools@5.11.0': + resolution: {integrity: sha512-ht1h2+7HyOhEKYNVPGzBWw25jtXcvlmT/qcCJb+UJSejGVIzVvMYuSot/Gnqzwf4mgEWCkQbzx8Iv3o8Jhp/lA==} hasBin: true + peerDependencies: + mocha: ^11.1.0 + peerDependenciesMeta: + mocha: + optional: true '@itwin/cloud-agnostic-core@3.1.2': resolution: {integrity: sha512-+Bzwq3wS2AjGeIoKH1utuFu9H2W2S1u8CZCBpprFhzSzVKJJ1sWLymwhIBiNqO7Mrk9GVICPApQ5+gryD70Esg==} @@ -2266,24 +2271,24 @@ packages: reflect-metadata: optional: true - '@itwin/components-react@5.32.0': - resolution: {integrity: sha512-eD6lnBUYVo2dF+FsQ3Jfd+FcmdUx0GjJD7Ugwcmo94n5NhgEd2jS3MzbQ+q4w6+ECr+xhdHcrwahU2y73rqQpw==} + '@itwin/components-react@5.33.0': + resolution: {integrity: sha512-7wgMaBzqEYhviWE23PWnD+382WJ4CEKVi8KOrfWzkK7yVJW7xmq+LjzL+vcEymWBtzhPlhwGGF/BDvq3FWBrrw==} peerDependencies: '@itwin/appui-abstract': ^4.0.0 || ^5.0.0 '@itwin/core-bentley': ^4.0.0 || ^5.0.0 - '@itwin/core-react': 5.32.0 + '@itwin/core-react': 5.33.0 '@itwin/itwinui-react': ^3.15.0 react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 - '@itwin/core-backend@5.10.2': - resolution: {integrity: sha512-48vxe/ktrPdPBcVFuwKbpOUJtsvbkneve6nDyUUUNPvRypI1/bzDf9j7RIaYltsrVEZ5ue8RfLHaL+xyH8GSBg==} + '@itwin/core-backend@5.11.0': + resolution: {integrity: sha512-woQWAplfBH7jBHT4Cnrmpv+ZpU90QxAwilYHU7NzBH9qiQ59fgp0I3Ajvb/etxS9QdabwaEsmCUzXdeNf35ctg==} engines: {node: ^20.0.0 || ^22.0.0 || ^24.0.0} peerDependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2 - '@itwin/core-geometry': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0 + '@itwin/core-geometry': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0 '@opentelemetry/api': ^1.0.4 peerDependenciesMeta: '@opentelemetry/api': @@ -2292,51 +2297,54 @@ packages: '@itwin/core-bentley@5.10.2': resolution: {integrity: sha512-QD1rPCdWdPyYr3ffdpgM/eowg9jMjiboC/mR4+COgvCwMIRak9MPcMmt+ojwOr92RxOB4H+zbAtOHsro5XtyYw==} - '@itwin/core-common@5.10.2': - resolution: {integrity: sha512-zRbUi1rcfnTmDbj7eBys8I1EZEhHIK9tV7W79yAHI6L1OqVtVLSmTlVR61H8g7MQddPsnuqQbLx7nA0Zid7Nvg==} + '@itwin/core-bentley@5.11.0': + resolution: {integrity: sha512-dXOUQi1UhXI5dXIxg5/wrAGAAtq4VxeQCqr1gJuRzCfM/w+FZuFF/gacvfVyBgd187G3jgYcChcF/jCC32lBAg==} + + '@itwin/core-common@5.11.0': + resolution: {integrity: sha512-2tjoTBipa1FoWLtJw5bML6ji9jrZ7DbpYFWQ67Ps3M+CLIY2lpoeK0y/lIsToIo0551FsrDEQhv/xGQv4nCpDw==} peerDependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-geometry': 5.10.2 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-geometry': 5.11.0 - '@itwin/core-electron@5.10.2': - resolution: {integrity: sha512-eS94CMhUlEphQltGqJ8j3G2Z7c5mQ3ZgmZ/BaR5UJwYOtR32r3WzGof4hufDSFg3X2J6t4yQPaZgNXV9GlEpHA==} + '@itwin/core-electron@5.11.0': + resolution: {integrity: sha512-0zgJL8stQN1h7JdjINvlyuirdythdC/20uqwIhmmaqgClUjsoYY0g/t3wKGlUdHQxT71wDL4K9D4b8nIwuiKaw==} peerDependencies: - '@itwin/core-backend': 5.10.2 - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2 - '@itwin/core-frontend': 5.10.2 + '@itwin/core-backend': 5.11.0 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0 + '@itwin/core-frontend': 5.11.0 electron: ^35.0.0 || ^36.0.0 || ^37.0.0 || ^38.0.0 || ^39.0.0 || ^40.0.0 || ^41.0.0 || ^42.0.0 - '@itwin/core-frontend@5.10.2': - resolution: {integrity: sha512-yAXW8odVXbRuGjm85ypykM9d6Mm8qyxfTmowrAypW029URz6AA0gVE6gukxO2at1uKFGara9CjKEwOyT1Cdkag==} + '@itwin/core-frontend@5.11.0': + resolution: {integrity: sha512-2g7OfbM2YGVOP0eKEguAbHeBHwjsbJKpNT0HmAF2UpS3Q5ubT/nQGh15nCMamvxUIZlUFqdC6ie8tE2m9MDQFg==} peerDependencies: - '@itwin/appui-abstract': 5.10.2 - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2 - '@itwin/core-geometry': 5.10.2 - '@itwin/core-orbitgt': 5.10.2 - '@itwin/core-quantity': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2 - '@itwin/ecschema-rpcinterface-common': 5.10.2 + '@itwin/appui-abstract': 5.11.0 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0 + '@itwin/core-geometry': 5.11.0 + '@itwin/core-orbitgt': 5.11.0 + '@itwin/core-quantity': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0 + '@itwin/ecschema-rpcinterface-common': 5.11.0 - '@itwin/core-geometry@5.10.2': - resolution: {integrity: sha512-ApuvrJmkHhbuSWowOyoNmFH4Ix3SrMFIKy8Z7nVzX+8NOOIsijHTi6TkXUmrjlrJo7pXTu9OLf2oa6bULBt/WA==} + '@itwin/core-geometry@5.11.0': + resolution: {integrity: sha512-QIQX1vEikLGxXFEs8Vd2v6vizo4JlDij0OyR1yYpdBT0U/1h5Pncx9X+zc1bkMQXa5kixhHtm/SZnqjgd5rPaQ==} - '@itwin/core-i18n@5.10.2': - resolution: {integrity: sha512-76zZrxs8aZk1JGQJVyOKCL/LYumzo0iZB4rcRuPHtpQodPwsvtxay8od2J1HgSxE1qQapx29n82YqJC9Pq4m/w==} + '@itwin/core-i18n@5.11.0': + resolution: {integrity: sha512-kkNNvRZWlgeTCwaSBtZUPDa+84mBFCjWQQXFwfNMDqC28KmuNK7cp3tI5mvs+8Fb9h5Ne/69tgTF6gkYyf1KUg==} peerDependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 - '@itwin/core-orbitgt@5.10.2': - resolution: {integrity: sha512-0m7zpwXpLDdDCOY3H0d4KDcU5os7gXZ1+OGxmzKEFGpjS6cgwu5EnFfnyeomXZl8Skm6Kb6FCdgZO0tlbARURw==} + '@itwin/core-orbitgt@5.11.0': + resolution: {integrity: sha512-XGPT2zzK0se3A4nqWQjP5GaAvyrs4Z6wpEb9qTFzeLJLaAaDjoVF/ORG0ECBoAta5Pws565jOxkukLEYKPJqlg==} - '@itwin/core-quantity@5.10.2': - resolution: {integrity: sha512-plOVvBlnPW25HHb8EvE7Q9im6+ef31MRKBrMPJZpmd8Za29ONDh6d0z0pPn3bmYmsl8he7lHOCD7zRh2ZelqhA==} + '@itwin/core-quantity@5.11.0': + resolution: {integrity: sha512-j9DbGukrHJczbkzXSC6gR5bpdd5EZNtzmjyh8NoFC755BAjpvfiGagyTDBW6SZkJIzax3Dk4sgrM5NmdBzA5xQ==} peerDependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 - '@itwin/core-react@5.32.0': - resolution: {integrity: sha512-j7m3afETt4sMiaA+Y86aNEF5sm61VsQweD6twYuKtNpPFoH/i9AbBK+6kTr1TSE7hxgVd8GFaVSrcH1FW4Nemw==} + '@itwin/core-react@5.33.0': + resolution: {integrity: sha512-BPKfDs5L21j4309OEjLyUe0YvcQv+3s3CpMtbeUFzzSwSek+XRJa6kwadoHQstxPLRAlw1IzE1a0Wq0v/1gw/w==} peerDependencies: '@itwin/appui-abstract': ^4.0.0 || ^5.0.0 '@itwin/core-bentley': ^4.0.0 || ^5.0.0 @@ -2344,29 +2352,29 @@ packages: react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 - '@itwin/ecschema-metadata@5.10.2': - resolution: {integrity: sha512-B3v6UJLvIHEZz4CY7O24LfzqdmnxRswjrBtOAyjZEItRPHpPNL+C2FJ5R7zgf/0GgAlZaul20/5przZib+WpSg==} + '@itwin/ecschema-metadata@5.11.0': + resolution: {integrity: sha512-pfY67bnJ4SsJcOdkDDC81Eka7LiMIZr0izL46N9SMjbce/Q+w0RKePO/t/pCQshJ//akHNYq2+4MUQEADKBnMw==} peerDependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-quantity': 5.10.2 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-quantity': 5.11.0 - '@itwin/ecschema-rpcinterface-common@5.10.2': - resolution: {integrity: sha512-zBmCCsLZcutjJChA81TfSO2pnwd6zilKDPOXQ99mzrq/ZwOP8m4b6Xl0bK5LGCREyhyxnqjfI0WDiWPUR4fRmQ==} + '@itwin/ecschema-rpcinterface-common@5.11.0': + resolution: {integrity: sha512-yCAXB1bVl4JzUUFZ5pbnZjYXf+KDGATw3/4vKXwAmCoZVvt9mJq8djsIFSL8/IMT4AZfP4uD7cYbyRYC9bXrow==} peerDependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2 - '@itwin/core-geometry': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0 + '@itwin/core-geometry': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0 - '@itwin/ecschema-rpcinterface-impl@5.10.2': - resolution: {integrity: sha512-4USwPHQUK3cwydg43PeniaqKRY8SzeO4uB6mnKPnege/ZCcEoDWfqhu2z0HaJ/4tLcreJIlh7jq5TtwhIn3sXA==} + '@itwin/ecschema-rpcinterface-impl@5.11.0': + resolution: {integrity: sha512-5yUed+BmURX54i0dluLF0iKPDW04CdfrVwluBd6+cllkjoGW8iCbXaz49c21c3tYcuRcAp+mbi5eG1yicPtUvw==} peerDependencies: - '@itwin/core-backend': 5.10.2 - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2 - '@itwin/core-geometry': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2 - '@itwin/ecschema-rpcinterface-common': 5.10.2 + '@itwin/core-backend': 5.11.0 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0 + '@itwin/core-geometry': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0 + '@itwin/ecschema-rpcinterface-common': 5.11.0 '@itwin/eslint-plugin@6.1.0': resolution: {integrity: sha512-4HDfTmenGSQfL8o8Cr1tKavF2ZQsKEjF31e8pZUPv4QMUZCTr5Gt+lALNLPO4huRJo9e5rasUB/vq0MCBD0t4Q==} @@ -2376,24 +2384,24 @@ packages: eslint: ^9.11.1 typescript: ^3.7.0 || ^4.0.0 || ^5.0.0 || <6.1.0 - '@itwin/express-server@5.10.2': - resolution: {integrity: sha512-u6A4klQY3TrNqXSHh37e/VuZ76AcIkLJUXJdh2CEtvWSDZsAfyRQMuvip04U5iK34gOJBQ41W9CjtIOJR0YUuA==} + '@itwin/express-server@5.11.0': + resolution: {integrity: sha512-cZaIY4KLagWiGk96lP9o83nlVkr7owSnWvMwL+BE0fDR9js4uGsgV963+hNKQwRplbXYDZWn+qTka8+GPY6pzg==} engines: {node: ^20.0.0 || ^22.0.0 || ^24.0.0} peerDependencies: - '@itwin/core-backend': 5.10.2 - '@itwin/core-common': 5.10.2 + '@itwin/core-backend': 5.11.0 + '@itwin/core-common': 5.11.0 - '@itwin/imodel-components-react@5.32.0': - resolution: {integrity: sha512-UwzLKONrJhB9xofMyzbgjrmwcYLK8BoyaTOcKjrFzGIUTXUySahwcyymYQhbWHnCKM0JvEhy6LqJxYldiJC5VA==} + '@itwin/imodel-components-react@5.33.0': + resolution: {integrity: sha512-AOEv3An/prRwZs92TPafDjPocotFXHbXzo2c7cWzW1VXzOAbP89QpvhyiuH7CJEmTHcP7F8X0mb24It5JtQTLA==} peerDependencies: '@itwin/appui-abstract': ^4.0.0 || ^5.0.0 - '@itwin/components-react': 5.32.0 + '@itwin/components-react': 5.33.0 '@itwin/core-bentley': ^4.0.0 || ^5.0.0 '@itwin/core-common': ^4.0.0 || ^5.0.0 '@itwin/core-frontend': ^4.0.0 || ^5.0.0 '@itwin/core-geometry': ^4.0.0 || ^5.0.0 '@itwin/core-quantity': ^4.0.0 || ^5.0.0 - '@itwin/core-react': 5.32.0 + '@itwin/core-react': 5.33.0 '@itwin/itwinui-react': ^3.15.0 react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 @@ -2442,33 +2450,33 @@ packages: reflect-metadata: optional: true - '@itwin/presentation-backend@5.10.2': - resolution: {integrity: sha512-P05u8p0MggMNLa5nGIgm4tnpxVgaRtNUBWMLJYHR7jQ8eW75BsJS+7B+ILB7Qcyi2ggxwCR7GUar6OYKWOCQLw==} + '@itwin/presentation-backend@5.11.0': + resolution: {integrity: sha512-XWagGZjdPzsLRPsjivP6kqrMSdAtL2vS7gvTAetfrXuaWJDOQd5WJ8z4gpysMvksKeTz4ULBHFhWCtOC7ReYmQ==} peerDependencies: - '@itwin/core-backend': 5.10.2 - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2 - '@itwin/core-quantity': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2 - '@itwin/presentation-common': 5.10.2 + '@itwin/core-backend': 5.11.0 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0 + '@itwin/core-quantity': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0 + '@itwin/presentation-common': 5.11.0 - '@itwin/presentation-common@5.10.2': - resolution: {integrity: sha512-Fm6Vyx3DSnZwBfcHwioZhWKVaWHyEy0aHOMNr02ohizf5oVtN30cIPk0GhMvjhokwUy5YYA4kuXmW7NrMudqLg==} + '@itwin/presentation-common@5.11.0': + resolution: {integrity: sha512-3U0pLkkjieW/VFrDcyvI7VRoMYTuL7NImUU4BayEGZAj6XfrTQIJsr2VW4pzmMR704PM6xa1CJ6s2gRtD6T72Q==} peerDependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2 - '@itwin/core-quantity': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0 + '@itwin/core-quantity': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0 - '@itwin/presentation-frontend@5.10.2': - resolution: {integrity: sha512-Yu+kIe0R71JtXZhr+8abwQWyRhxrZPOcCVql3uDRkj171axgo+PVTFDidfD+DWuSZ2LOdGe16841v3kb0VUCeQ==} + '@itwin/presentation-frontend@5.11.0': + resolution: {integrity: sha512-zSkhLoe5ykvVEqVGeWQbS8/QaOTt7xn1pGHWwT1IKXL9gEUoAZY+Uo7k0Ie0wkLGIKboXcpCw5APXotKASLfnw==} peerDependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2 - '@itwin/core-frontend': 5.10.2 - '@itwin/core-quantity': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2 - '@itwin/presentation-common': 5.10.2 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0 + '@itwin/core-frontend': 5.11.0 + '@itwin/core-quantity': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0 + '@itwin/presentation-common': 5.11.0 '@itwin/presentation-shared@1.2.16': resolution: {integrity: sha512-oxcKKYLGQAOMJFvE+Yxvqjty+IBqPDfKBBUM1rcVR7g9d53vXmfoHMk+FnEAT/AzBxAwhophaS5JxzZ9cVt39A==} @@ -2476,8 +2484,8 @@ packages: '@itwin/unified-selection@1.8.0': resolution: {integrity: sha512-cysBWBbs2gGYXxySS48VJPqOrf8MiyQGv+EESjMX4UKejHwdW1m91mzJd0VlBwpij8SwBvR7MeveIhAAQK0wMA==} - '@itwin/webgl-compatibility@5.10.2': - resolution: {integrity: sha512-hlgoGx6f+fN57Jz3EDgcBvE1iwUx/oruS7K8P5yAYxbgyiOKUJBErmbpBufEoCxSdkHmRrtRUJ4ePTIfTCDilw==} + '@itwin/webgl-compatibility@5.11.0': + resolution: {integrity: sha512-km0j+mX3X+Bijdiiu+0uZPAqLy0QAqhvosJ1qonDmVYE4SiTMJ5Gx6ja5BivI2m6Y3SuLx5WWFquNJRjuKuqqw==} '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} @@ -8431,7 +8439,7 @@ snapshots: '@bentley/icons-generic-webfont@1.0.34': {} - '@bentley/imodeljs-native@5.10.34': {} + '@bentley/imodeljs-native@5.11.19': {} '@changesets/apply-release-plan@7.1.1': dependencies: @@ -9108,21 +9116,21 @@ snapshots: '@isaacs/cliui@9.0.0': {} - '@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2)': + '@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0)': dependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 - '@itwin/appui-react@5.32.0(9598baca9075fd98889d5c2af1fb4979)': + '@itwin/appui-react@5.33.0(95c2c94a40bd264fead63de377844bf0)': dependencies: - '@itwin/appui-abstract': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/components-react': 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-react@5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-frontend': 5.10.2(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/core-orbitgt@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) - '@itwin/core-geometry': 5.10.2 - '@itwin/core-quantity': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/core-react': 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@itwin/imodel-components-react': 5.32.0(e33fcb7667e101c5565503b6c40b9e0b) + '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/components-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-frontend': 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + '@itwin/core-geometry': 5.11.0 + '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/core-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/imodel-components-react': 5.33.0(14f2413b9943a640d324dda6f6d84529) '@itwin/itwinui-icons-react': 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-illustrations-react': 2.1.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-react': 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) @@ -9141,7 +9149,7 @@ snapshots: transitivePeerDependencies: - '@types/react' - '@itwin/build-tools@5.10.2(@types/node@24.13.2)': + '@itwin/build-tools@5.11.0(@types/node@24.13.2)(mocha@11.7.6)': dependencies: '@microsoft/api-extractor': 7.58.9(@types/node@24.13.2) chalk: 3.0.0 @@ -9149,7 +9157,6 @@ snapshots: cross-spawn: 7.0.6 fs-extra: 8.1.0 glob: 10.5.0 - mocha: 11.7.6 mocha-junit-reporter: 2.2.1(mocha@11.7.6) rimraf: 6.1.3 tree-kill: 1.2.2 @@ -9158,17 +9165,19 @@ snapshots: typescript: 5.6.3 wtfnode: 0.9.4 yargs: 17.7.2 + optionalDependencies: + mocha: 11.7.6 transitivePeerDependencies: - '@types/node' - supports-color '@itwin/cloud-agnostic-core@3.1.2': {} - '@itwin/components-react@5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-react@5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@itwin/components-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - '@itwin/appui-abstract': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/core-bentley': 5.10.2 - '@itwin/core-react': 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-icons-react': 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-react': 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) classnames: 2.5.1 @@ -9181,14 +9190,14 @@ snapshots: rxjs: 7.8.2 ts-key-enum: 2.0.13 - '@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1)': + '@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1)': dependencies: '@azure/storage-blob': 12.32.0 - '@bentley/imodeljs-native': 5.10.34 - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-geometry': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) + '@bentley/imodeljs-native': 5.11.19 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-geometry': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) '@itwin/object-storage-azure': 3.1.2 form-data: 4.0.6 fs-extra: 8.1.0 @@ -9210,19 +9219,21 @@ snapshots: '@itwin/core-bentley@5.10.2': {} - '@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2)': + '@itwin/core-bentley@5.11.0': {} + + '@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0)': dependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-geometry': 5.10.2 + '@itwin/core-bentley': 5.11.0 + '@itwin/core-geometry': 5.11.0 flatbuffers: 1.12.0 js-base64: 3.7.8 - '@itwin/core-electron@5.10.2(b2f7dcc00eba42c677a0625e0e7f36ec)': + '@itwin/core-electron@5.11.0(7716f3b24ae9ba692b3810ddcedf32fe)': dependencies: - '@itwin/core-backend': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1) - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-frontend': 5.10.2(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/core-orbitgt@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) + '@itwin/core-backend': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-frontend': 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) '@openid/appauth': 1.3.2 electron: 39.8.10 open: 7.4.2 @@ -9230,18 +9241,18 @@ snapshots: transitivePeerDependencies: - debug - '@itwin/core-frontend@5.10.2(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/core-orbitgt@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))))': - dependencies: - '@itwin/appui-abstract': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-geometry': 5.10.2 - '@itwin/core-i18n': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/core-orbitgt': 5.10.2 - '@itwin/core-quantity': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/ecschema-metadata': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) - '@itwin/ecschema-rpcinterface-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) - '@itwin/webgl-compatibility': 5.10.2 + '@itwin/core-frontend@5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))))': + dependencies: + '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-geometry': 5.11.0 + '@itwin/core-i18n': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/core-orbitgt': 5.11.0 + '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + '@itwin/ecschema-rpcinterface-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + '@itwin/webgl-compatibility': 5.11.0 '@loaders.gl/core': 4.3.4 '@loaders.gl/draco': 4.3.4(@loaders.gl/core@4.3.4) fuse.js: 3.6.1 @@ -9249,30 +9260,30 @@ snapshots: transitivePeerDependencies: - encoding - '@itwin/core-geometry@5.10.2': + '@itwin/core-geometry@5.11.0': dependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 flatbuffers: 1.12.0 - '@itwin/core-i18n@5.10.2(@itwin/core-bentley@5.10.2)': + '@itwin/core-i18n@5.11.0(@itwin/core-bentley@5.11.0)': dependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 i18next: 21.10.0 i18next-browser-languagedetector: 6.1.8 i18next-http-backend: 3.0.6 transitivePeerDependencies: - encoding - '@itwin/core-orbitgt@5.10.2': {} + '@itwin/core-orbitgt@5.11.0': {} - '@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)': + '@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)': dependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 - '@itwin/core-react@5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - '@itwin/appui-abstract': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/core-bentley': 5.10.2 + '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/core-bentley': 5.11.0 '@itwin/itwinui-icons-react': 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-react': 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) classnames: 2.5.1 @@ -9283,26 +9294,26 @@ snapshots: react-dom: 19.2.7(react@19.2.7) ts-key-enum: 2.0.13 - '@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))': + '@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))': dependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-quantity': 5.10.2(@itwin/core-bentley@5.10.2) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))': + '@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))': dependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-geometry': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-geometry': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) - '@itwin/ecschema-rpcinterface-impl@5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))))': + '@itwin/ecschema-rpcinterface-impl@5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))))': dependencies: - '@itwin/core-backend': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1) - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-geometry': 5.10.2 - '@itwin/ecschema-metadata': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) - '@itwin/ecschema-rpcinterface-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + '@itwin/core-backend': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-geometry': 5.11.0 + '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + '@itwin/ecschema-rpcinterface-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/eslint-plugin@6.1.0(eslint@9.39.4)(typescript@6.0.3)': dependencies: @@ -9325,10 +9336,10 @@ snapshots: - eslint-import-resolver-webpack - supports-color - '@itwin/express-server@5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))': + '@itwin/express-server@5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))': dependencies: - '@itwin/core-backend': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1) - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) + '@itwin/core-backend': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) express: 4.22.2 express-ws: 5.0.2(express@4.22.2) transitivePeerDependencies: @@ -9336,16 +9347,16 @@ snapshots: - supports-color - utf-8-validate - '@itwin/imodel-components-react@5.32.0(e33fcb7667e101c5565503b6c40b9e0b)': + '@itwin/imodel-components-react@5.33.0(14f2413b9943a640d324dda6f6d84529)': dependencies: - '@itwin/appui-abstract': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/components-react': 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-react@5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-frontend': 5.10.2(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/core-orbitgt@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) - '@itwin/core-geometry': 5.10.2 - '@itwin/core-quantity': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/core-react': 5.32.0(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/components-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-frontend': 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + '@itwin/core-geometry': 5.11.0 + '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/core-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-icons-react': 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-react': 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) classnames: 2.5.1 @@ -9392,36 +9403,36 @@ snapshots: - debug - supports-color - '@itwin/presentation-backend@5.10.2(@itwin/core-backend@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/presentation-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))))': + '@itwin/presentation-backend@5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))))': dependencies: - '@itwin/core-backend': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@opentelemetry/api@1.9.1) - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-quantity': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/ecschema-metadata': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) - '@itwin/presentation-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + '@itwin/core-backend': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + '@itwin/presentation-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/presentation-shared': 1.2.16 object-hash: 1.3.1 rxjs: 7.8.2 rxjs-for-await: 1.0.0(rxjs@7.8.2) semver: 7.8.4 - '@itwin/presentation-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))': + '@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))': dependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-quantity': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/ecschema-metadata': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) '@itwin/presentation-shared': 1.2.16 - '@itwin/presentation-frontend@5.10.2(001e36f9135bcf612310a4af030007b8)': + '@itwin/presentation-frontend@5.11.0(b519d1e59ddebb99be5b12015166e40b)': dependencies: - '@itwin/core-bentley': 5.10.2 - '@itwin/core-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2) - '@itwin/core-frontend': 5.10.2(@itwin/appui-abstract@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/core-orbitgt@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))(@itwin/ecschema-rpcinterface-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-geometry@5.10.2)(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)))) - '@itwin/core-quantity': 5.10.2(@itwin/core-bentley@5.10.2) - '@itwin/ecschema-metadata': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2)) - '@itwin/presentation-common': 5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-common@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-geometry@5.10.2))(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))(@itwin/ecschema-metadata@5.10.2(@itwin/core-bentley@5.10.2)(@itwin/core-quantity@5.10.2(@itwin/core-bentley@5.10.2))) + '@itwin/core-bentley': 5.11.0 + '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-frontend': 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + '@itwin/presentation-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) '@itwin/unified-selection': 1.8.0 rxjs: 7.8.2 rxjs-for-await: 1.0.0(rxjs@7.8.2) @@ -9437,9 +9448,9 @@ snapshots: rxjs: 7.8.2 rxjs-for-await: 1.0.0(rxjs@7.8.2) - '@itwin/webgl-compatibility@5.10.2': + '@itwin/webgl-compatibility@5.11.0': dependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 '@jridgewell/resolve-uri@3.1.2': {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index e12056599..c4fea5419 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -18,12 +18,12 @@ autoInstallPeers: true catalogs: appui: - '@itwin/appui-react': ^5.32.0 - '@itwin/components-react': ^5.32.0 - '@itwin/core-react': ^5.32.0 - '@itwin/imodel-components-react': ^5.32.0 + '@itwin/appui-react': ^5.33.0 + '@itwin/components-react': ^5.33.0 + '@itwin/core-react': ^5.33.0 + '@itwin/imodel-components-react': ^5.33.0 build-tools: - '@itwin/build-tools': ^5.10.2 + '@itwin/build-tools': ^5.11.0 '@itwin/eslint-plugin': ^6.1.0 '@types/node': ^24.13.2 '@vitejs/plugin-react': ^6.0.2 @@ -35,27 +35,27 @@ catalogs: typescript: ~6.0.3 vite: ^8.0.16 itwinjs-core: - '@itwin/core-bentley': ^5.10.2 - '@itwin/core-common': ^5.10.2 - '@itwin/core-geometry': ^5.10.2 + '@itwin/core-bentley': ^5.11.0 + '@itwin/core-common': ^5.11.0 + '@itwin/core-geometry': ^5.11.0 itwinjs-core-dev: - '@itwin/appui-abstract': ^5.10.2 - '@itwin/core-backend': ^5.10.2 - '@itwin/core-bentley': ^5.10.2 - '@itwin/core-common': ^5.10.2 - '@itwin/core-electron': ^5.10.2 - '@itwin/core-frontend': ^5.10.2 - '@itwin/core-geometry': ^5.10.2 - '@itwin/core-i18n': ^5.10.2 - '@itwin/core-orbitgt': ^5.10.2 - '@itwin/core-quantity': ^5.10.2 - '@itwin/ecschema-metadata': ^5.10.2 - '@itwin/ecschema-rpcinterface-common': ^5.10.2 - '@itwin/ecschema-rpcinterface-impl': ^5.10.2 - '@itwin/express-server': ^5.10.2 - '@itwin/presentation-backend': ^5.10.2 - '@itwin/presentation-common': ^5.10.2 - '@itwin/presentation-frontend': ^5.10.2 + '@itwin/appui-abstract': ^5.11.0 + '@itwin/core-backend': ^5.11.0 + '@itwin/core-bentley': ^5.11.0 + '@itwin/core-common': ^5.11.0 + '@itwin/core-electron': ^5.11.0 + '@itwin/core-frontend': ^5.11.0 + '@itwin/core-geometry': ^5.11.0 + '@itwin/core-i18n': ^5.11.0 + '@itwin/core-orbitgt': ^5.11.0 + '@itwin/core-quantity': ^5.11.0 + '@itwin/ecschema-metadata': ^5.11.0 + '@itwin/ecschema-rpcinterface-common': ^5.11.0 + '@itwin/ecschema-rpcinterface-impl': ^5.11.0 + '@itwin/express-server': ^5.11.0 + '@itwin/presentation-backend': ^5.11.0 + '@itwin/presentation-common': ^5.11.0 + '@itwin/presentation-frontend': ^5.11.0 inversify: ~6.0.2 reflect-metadata: ^0.1.14 itwinui: From 6a626d745fe98872c569c1123b2129b202da64a7 Mon Sep 17 00:00:00 2001 From: "Saulius.Skliutas" <24278440+saskliutas@users.noreply.github.com> Date: Thu, 9 Jul 2026 15:45:22 +0300 Subject: [PATCH 2/5] Cleanup --- .../src/components/properties/PropertyPaneDataProvider.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/full-stack-tests/src/components/properties/PropertyPaneDataProvider.test.ts b/apps/full-stack-tests/src/components/properties/PropertyPaneDataProvider.test.ts index edb116da2..af1eb37a2 100644 --- a/apps/full-stack-tests/src/components/properties/PropertyPaneDataProvider.test.ts +++ b/apps/full-stack-tests/src/components/properties/PropertyPaneDataProvider.test.ts @@ -311,7 +311,7 @@ describe("PropertyDataProvider", async () => { runTests("with flat property categories", (provider) => (provider.isNestedPropertyCategoryGroupingEnabled = false)); runTests("with nested property categories", (provider) => (provider.isNestedPropertyCategoryGroupingEnabled = true)); - it.skip("finds array item & struct member fields", async () => { + it("finds array item & struct member fields", async () => { const { imodel, ...keys } = await buildTestIModel(async (builder, testName) => { const schema = await importSchema( testName, From ae7e9aab93608cd902f5f26e8cef16e9def0dcbc Mon Sep 17 00:00:00 2001 From: "Saulius.Skliutas" <24278440+saskliutas@users.noreply.github.com> Date: Thu, 9 Jul 2026 15:48:26 +0300 Subject: [PATCH 3/5] Change --- .changeset/itchy-lemons-cough.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/itchy-lemons-cough.md diff --git a/.changeset/itchy-lemons-cough.md b/.changeset/itchy-lemons-cough.md new file mode 100644 index 000000000..74d28a145 --- /dev/null +++ b/.changeset/itchy-lemons-cough.md @@ -0,0 +1,5 @@ +--- +"@itwin/presentation-components": major +--- + +Removed values formatting in `ContentDataProvider`. This leaves values formatting up to UI components presenting them. From 4ae111a7e9cbf5decc56614e0f6c0f76c00bff83 Mon Sep 17 00:00:00 2001 From: "Saulius.Skliutas" <24278440+saskliutas@users.noreply.github.com> Date: Thu, 9 Jul 2026 17:17:52 +0300 Subject: [PATCH 4/5] extract-api --- packages/components/api/presentation-components.api.md | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/components/api/presentation-components.api.md b/packages/components/api/presentation-components.api.md index df4c488ef..0eaf7f1f1 100644 --- a/packages/components/api/presentation-components.api.md +++ b/packages/components/api/presentation-components.api.md @@ -99,7 +99,6 @@ export interface CacheInvalidationProps { content?: boolean; descriptor?: boolean; descriptorConfiguration?: boolean; - formatting?: boolean; size?: boolean; } From cea52799a93c2dec9d57e6cfeb94b455d4ab2185 Mon Sep 17 00:00:00 2001 From: "Saulius.Skliutas" <24278440+saskliutas@users.noreply.github.com> Date: Tue, 14 Jul 2026 10:50:04 +0300 Subject: [PATCH 5/5] Bump itwinjs-core --- packages/components/package.json | 16 +- pnpm-lock.yaml | 688 +++++++++++++++---------------- pnpm-workspace.yaml | 42 +- 3 files changed, 373 insertions(+), 373 deletions(-) diff --git a/packages/components/package.json b/packages/components/package.json index a71cef97c..0fcbb52eb 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -65,18 +65,18 @@ "rxjs": "catalog:rxjs" }, "peerDependencies": { - "@itwin/appui-abstract": "^5.10.0", + "@itwin/appui-abstract": "^5.11.2", "@itwin/components-react": "^5.33.0", - "@itwin/core-bentley": "^5.10.0", - "@itwin/core-common": "^5.10.0", - "@itwin/core-frontend": "^5.10.0", - "@itwin/core-quantity": "^5.10.0", + "@itwin/core-bentley": "^5.11.2", + "@itwin/core-common": "^5.11.2", + "@itwin/core-frontend": "^5.11.2", + "@itwin/core-quantity": "^5.11.2", "@itwin/core-react": "^5.33.0", - "@itwin/ecschema-metadata": "^5.10.0", + "@itwin/ecschema-metadata": "^5.11.2", "@itwin/imodel-components-react": "^5.33.0", "@itwin/itwinui-react": "^3.21.0", - "@itwin/presentation-common": "^5.10.0", - "@itwin/presentation-frontend": "^5.10.0", + "@itwin/presentation-common": "^5.11.2", + "@itwin/presentation-frontend": "^5.11.2", "@itwin/unified-selection-react": "^1.0.0", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e91a5f141..08805e074 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -20,8 +20,8 @@ catalogs: version: 5.33.0 build-tools: '@itwin/build-tools': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/eslint-plugin': specifier: ^6.1.0 version: 6.1.0 @@ -54,66 +54,66 @@ catalogs: version: 8.0.16 itwinjs-core: '@itwin/core-bentley': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-common': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-geometry': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 itwinjs-core-dev: '@itwin/appui-abstract': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-backend': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-bentley': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-common': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-electron': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-frontend': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-geometry': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-i18n': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-orbitgt': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/core-quantity': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/ecschema-metadata': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/ecschema-rpcinterface-common': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/ecschema-rpcinterface-impl': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/express-server': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/presentation-backend': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/presentation-common': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 '@itwin/presentation-frontend': - specifier: ^5.11.0 - version: 5.11.0 + specifier: ^5.11.2 + version: 5.11.2 itwinui: '@itwin/itwinui-icons-react': specifier: ^2.11.0 @@ -236,61 +236,61 @@ importers: version: 1.0.4 '@itwin/appui-abstract': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2) '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/components-react': specifier: catalog:appui - version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/core-backend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/core-frontend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + version: 5.11.2(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/core-orbitgt@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@itwin/core-geometry': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-i18n': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2) '@itwin/core-orbitgt': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-quantity': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) '@itwin/ecschema-rpcinterface-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/ecschema-rpcinterface-impl': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + version: 5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/imodel-components-react': specifier: catalog:appui - version: 5.33.0(14f2413b9943a640d324dda6f6d84529) + version: 5.33.0(9dc11e69708e3baa9525e15bc1eba176) '@itwin/itwinui-react': specifier: catalog:itwinui version: 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/presentation-backend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + version: 5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/presentation-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/presentation-components': specifier: workspace:^ version: link:../../packages/components @@ -299,7 +299,7 @@ importers: version: link:../../packages/core-interop '@itwin/presentation-frontend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(b519d1e59ddebb99be5b12015166e40b) + version: 5.11.2(4f56e2ad7c914c9ef72556e19431ddb1) '@itwin/presentation-hierarchies': specifier: workspace:^ version: link:../../packages/hierarchies @@ -392,34 +392,34 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-backend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/ecschema-rpcinterface-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/ecschema-rpcinterface-impl': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + version: 5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/express-server': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0)) + version: 5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2)) '@itwin/presentation-backend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + version: 5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/presentation-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@types/node': specifier: catalog:build-tools version: 24.13.2 @@ -437,22 +437,22 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/presentation-core-interop': specifier: workspace:* version: link:../../../packages/core-interop @@ -497,19 +497,19 @@ importers: version: 1.0.4 '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-backend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -560,31 +560,31 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-backend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/core-electron': specifier: catalog:itwinjs-core-dev - version: 5.11.0(7716f3b24ae9ba692b3810ddcedf32fe) + version: 5.11.2(065107dcf42efacfebd63a008b8b98f3) '@itwin/ecschema-rpcinterface-impl': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + version: 5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/express-server': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0)) + version: 5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2)) '@itwin/presentation-backend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + version: 5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/presentation-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@itwin/presentation-opentelemetry': specifier: workspace:* version: link:../../../packages/opentelemetry @@ -626,22 +626,22 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/ecschema-rpcinterface-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) eslint: specifier: catalog:build-tools version: 9.39.4 @@ -659,52 +659,52 @@ importers: version: 1.0.34 '@itwin/appui-abstract': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2) '@itwin/appui-react': specifier: catalog:appui - version: 5.33.0(95c2c94a40bd264fead63de377844bf0) + version: 5.33.0(d9b59623f25a55fa5ae84e9146d1a307) '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/components-react': specifier: catalog:appui - version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/core-electron': specifier: catalog:itwinjs-core-dev - version: 5.11.0(7716f3b24ae9ba692b3810ddcedf32fe) + version: 5.11.2(065107dcf42efacfebd63a008b8b98f3) '@itwin/core-frontend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + version: 5.11.2(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/core-orbitgt@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@itwin/core-i18n': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2) '@itwin/core-orbitgt': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-quantity': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2) '@itwin/core-react': specifier: catalog:appui - version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) '@itwin/ecschema-rpcinterface-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/imodel-components-react': specifier: catalog:appui - version: 5.33.0(14f2413b9943a640d324dda6f6d84529) + version: 5.33.0(9dc11e69708e3baa9525e15bc1eba176) '@itwin/itwinui-icons-react': specifier: catalog:itwinui version: 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) @@ -713,7 +713,7 @@ importers: version: 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/presentation-components': specifier: workspace:* version: link:../../../packages/components @@ -722,7 +722,7 @@ importers: version: link:../../../packages/core-interop '@itwin/presentation-frontend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(b519d1e59ddebb99be5b12015166e40b) + version: 5.11.2(4f56e2ad7c914c9ef72556e19431ddb1) '@itwin/presentation-hierarchies': specifier: workspace:* version: link:../../../packages/hierarchies @@ -843,49 +843,49 @@ importers: devDependencies: '@itwin/appui-abstract': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2) '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/components-react': specifier: catalog:appui - version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/core-frontend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + version: 5.11.2(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/core-orbitgt@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@itwin/core-orbitgt': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-quantity': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2) '@itwin/core-react': specifier: catalog:appui - version: 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/imodel-components-react': specifier: catalog:appui - version: 5.33.0(14f2413b9943a640d324dda6f6d84529) + version: 5.33.0(9dc11e69708e3baa9525e15bc1eba176) '@itwin/itwinui-react': specifier: catalog:itwinui version: 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/presentation-frontend': specifier: catalog:itwinjs-core-dev - version: 5.11.0(b519d1e59ddebb99be5b12015166e40b) + version: 5.11.2(4f56e2ad7c914c9ef72556e19431ddb1) '@itwin/unified-selection-react': specifier: workspace:^ version: link:../unified-selection-react @@ -955,22 +955,22 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/core-geometry': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-quantity': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2) '@itwin/ecschema-metadata': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1000,13 +1000,13 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/core-geometry': specifier: catalog:itwinjs-core - version: 5.11.0 + version: 5.11.2 '@itwin/presentation-shared': specifier: workspace:^ version: link:../shared @@ -1019,7 +1019,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1055,7 +1055,7 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core - version: 5.11.0 + version: 5.11.2 '@itwin/itwinui-icons-react': specifier: catalog:itwinui version: 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) @@ -1086,7 +1086,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1149,7 +1149,7 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/presentation-shared': specifier: workspace:^ version: link:../shared @@ -1159,7 +1159,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1183,13 +1183,13 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) '@itwin/presentation-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@opentelemetry/api': specifier: ^1.9.1 version: 1.9.1 @@ -1222,11 +1222,11 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core - version: 5.11.0 + version: 5.11.2 devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1256,13 +1256,13 @@ importers: devDependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/core-common': specifier: catalog:itwinjs-core-dev - version: 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + version: 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) '@itwin/core-geometry': specifier: catalog:itwinjs-core-dev - version: 5.11.0 + version: 5.11.2 '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1286,7 +1286,7 @@ importers: dependencies: '@itwin/core-bentley': specifier: catalog:itwinjs-core - version: 5.11.0 + version: 5.11.2 '@itwin/presentation-shared': specifier: workspace:^ version: link:../shared @@ -1299,7 +1299,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1332,7 +1332,7 @@ importers: devDependencies: '@itwin/build-tools': specifier: catalog:build-tools - version: 5.11.0(@types/node@24.13.2)(mocha@11.7.6) + version: 5.11.2(@types/node@24.13.2)(mocha@11.7.6) '@itwin/eslint-plugin': specifier: catalog:build-tools version: 6.1.0(eslint@9.39.4)(typescript@6.0.3) @@ -1664,8 +1664,8 @@ packages: '@bentley/icons-generic-webfont@1.0.34': resolution: {integrity: sha512-5zZgs+himE2vjf39CVlDXMHCFAwSfcoORqJBk3Vji8QVCF8AIX4IX2DO6HlsIAM7szxMNqhz1kd07Xfppro6MA==} - '@bentley/imodeljs-native@5.11.19': - resolution: {integrity: sha512-iCoDh8oBsVuqylB1nXvNMZ5mScl1cBNhLuOYYhg7UGGjdSMcwWH9rTMUNnXxWhh7HthwctEYDZ2mNjyfKLp2Hw==} + '@bentley/imodeljs-native@5.11.20': + resolution: {integrity: sha512-OaTu8etteWf7L9gSJ3do5Se2i7QUGB4dW5OUDvW9AbQPJyUPbZySba/VGhLGoinFECd28TVnankMwGKxvd2mmw==} '@changesets/apply-release-plan@7.1.1': resolution: {integrity: sha512-9qPCm/rLx/xoOFXIHGB229+4GOL76S4MC+7tyOuTsR6+1jYlfFDQORdvwR5hDA6y4FL2BPt3qpbcQIS+dW85LA==} @@ -2228,10 +2228,10 @@ packages: resolution: {integrity: sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==} engines: {node: '>=18'} - '@itwin/appui-abstract@5.11.0': - resolution: {integrity: sha512-rVCd2f1eN5Rp+5xt8S+kMwEa93zQ1LvTAvUzNL6lTz4ipsCtM09IZ2OyRYGglsNBHlKy1KENZmq4M/qwLCEkgg==} + '@itwin/appui-abstract@5.11.2': + resolution: {integrity: sha512-6HA5ZGedMd4z0CFlrKcqPJARTlPm1nUO/VLVSJuFv56Owva2kavlDzUQ5todJ+rOtJ/GaEOUIsZyEJsHF4lL7g==} peerDependencies: - '@itwin/core-bentley': 5.11.0 + '@itwin/core-bentley': 5.11.2 '@itwin/appui-react@5.33.0': resolution: {integrity: sha512-eiPU5nbEybc+ubdxcG9eCZwaCW8hqUrkLQSHd0Vv5eUofY1mo5EbRaexJO3g4mQPMV5ojeMwSqkT12/vI1yJng==} @@ -2251,8 +2251,8 @@ packages: react-redux: ^7.2.2 || ^8.0.0 || ^9.0.0 redux: ^4.1.0 || ^5.0.0 - '@itwin/build-tools@5.11.0': - resolution: {integrity: sha512-ht1h2+7HyOhEKYNVPGzBWw25jtXcvlmT/qcCJb+UJSejGVIzVvMYuSot/Gnqzwf4mgEWCkQbzx8Iv3o8Jhp/lA==} + '@itwin/build-tools@5.11.2': + resolution: {integrity: sha512-wuwarD85je0g0hq9ynWhKITw41IvpPkgMeyZ9jSsTJ7kvZ8Q+6Q8JhUgc6o56PyESsWaYYPymBHWpvDZNLT+6g==} hasBin: true peerDependencies: mocha: ^11.1.0 @@ -2281,67 +2281,67 @@ packages: react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 - '@itwin/core-backend@5.11.0': - resolution: {integrity: sha512-woQWAplfBH7jBHT4Cnrmpv+ZpU90QxAwilYHU7NzBH9qiQ59fgp0I3Ajvb/etxS9QdabwaEsmCUzXdeNf35ctg==} + '@itwin/core-backend@5.11.2': + resolution: {integrity: sha512-56WOXYdlwTMjyX7GWqkxi6Q1pLndyuZwjhNlj+KMpRSM13ZAMFbkjUDEtjnGIqxaQHFoY0ZwbpKT6MYJ56tSFQ==} engines: {node: ^20.0.0 || ^22.0.0 || ^24.0.0} peerDependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0 - '@itwin/core-geometry': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2 + '@itwin/core-geometry': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2 '@opentelemetry/api': ^1.0.4 peerDependenciesMeta: '@opentelemetry/api': optional: true - '@itwin/core-bentley@5.10.2': - resolution: {integrity: sha512-QD1rPCdWdPyYr3ffdpgM/eowg9jMjiboC/mR4+COgvCwMIRak9MPcMmt+ojwOr92RxOB4H+zbAtOHsro5XtyYw==} - '@itwin/core-bentley@5.11.0': resolution: {integrity: sha512-dXOUQi1UhXI5dXIxg5/wrAGAAtq4VxeQCqr1gJuRzCfM/w+FZuFF/gacvfVyBgd187G3jgYcChcF/jCC32lBAg==} - '@itwin/core-common@5.11.0': - resolution: {integrity: sha512-2tjoTBipa1FoWLtJw5bML6ji9jrZ7DbpYFWQ67Ps3M+CLIY2lpoeK0y/lIsToIo0551FsrDEQhv/xGQv4nCpDw==} + '@itwin/core-bentley@5.11.2': + resolution: {integrity: sha512-KljHK348zH1HCowm66MZi4PLl7Nas6iHJoxLjfsUmhtEpRr99zuEISkETRainUggDXYmz5CSJhM1ndias1ldAA==} + + '@itwin/core-common@5.11.2': + resolution: {integrity: sha512-rr2KBDu/12V9AnHNDb5hwlsMZi1sOydFQXgK403tf/q6lR5d9mKAiT/aYJ5zEyHphSa2Liq4YpfIlPNpmtO9dA==} peerDependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-geometry': 5.11.0 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-geometry': 5.11.2 - '@itwin/core-electron@5.11.0': - resolution: {integrity: sha512-0zgJL8stQN1h7JdjINvlyuirdythdC/20uqwIhmmaqgClUjsoYY0g/t3wKGlUdHQxT71wDL4K9D4b8nIwuiKaw==} + '@itwin/core-electron@5.11.2': + resolution: {integrity: sha512-bsCkBn92iw27JNTE942/WR4WVzovk5Qpu2PrkZ8AHyNmRgJa4e/+qSoIbRRuJLLpsC/16KJeXwkCRPxGG8djsw==} peerDependencies: - '@itwin/core-backend': 5.11.0 - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0 - '@itwin/core-frontend': 5.11.0 + '@itwin/core-backend': 5.11.2 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2 + '@itwin/core-frontend': 5.11.2 electron: ^35.0.0 || ^36.0.0 || ^37.0.0 || ^38.0.0 || ^39.0.0 || ^40.0.0 || ^41.0.0 || ^42.0.0 - '@itwin/core-frontend@5.11.0': - resolution: {integrity: sha512-2g7OfbM2YGVOP0eKEguAbHeBHwjsbJKpNT0HmAF2UpS3Q5ubT/nQGh15nCMamvxUIZlUFqdC6ie8tE2m9MDQFg==} + '@itwin/core-frontend@5.11.2': + resolution: {integrity: sha512-ngUahaak7Hob2puIFRXZzDrjcGm3WziQgsGNepb+x1MbxYi9u7+y+ck+y/5nFTndNl4uAFAVexYIMayRrkBCHg==} peerDependencies: - '@itwin/appui-abstract': 5.11.0 - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0 - '@itwin/core-geometry': 5.11.0 - '@itwin/core-orbitgt': 5.11.0 - '@itwin/core-quantity': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0 - '@itwin/ecschema-rpcinterface-common': 5.11.0 + '@itwin/appui-abstract': 5.11.2 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2 + '@itwin/core-geometry': 5.11.2 + '@itwin/core-orbitgt': 5.11.2 + '@itwin/core-quantity': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2 + '@itwin/ecschema-rpcinterface-common': 5.11.2 - '@itwin/core-geometry@5.11.0': - resolution: {integrity: sha512-QIQX1vEikLGxXFEs8Vd2v6vizo4JlDij0OyR1yYpdBT0U/1h5Pncx9X+zc1bkMQXa5kixhHtm/SZnqjgd5rPaQ==} + '@itwin/core-geometry@5.11.2': + resolution: {integrity: sha512-sBYCtvjOpKzWkKg/77z6T9H9YBRm+WyGpwhU18vyefwB7VN+L1Ed0MB+3bM+wt8+dvsspTe/18jF0MYdEZSiLg==} - '@itwin/core-i18n@5.11.0': - resolution: {integrity: sha512-kkNNvRZWlgeTCwaSBtZUPDa+84mBFCjWQQXFwfNMDqC28KmuNK7cp3tI5mvs+8Fb9h5Ne/69tgTF6gkYyf1KUg==} + '@itwin/core-i18n@5.11.2': + resolution: {integrity: sha512-tSuhQ9ukhnuieHYF39dAKAs+7+FEKSx5lvfWsSw7oOgoubZ+B+NWnBoSXzDxcgjxJKaUS+lvwI/M5Hyn0N+chg==} peerDependencies: - '@itwin/core-bentley': 5.11.0 + '@itwin/core-bentley': 5.11.2 - '@itwin/core-orbitgt@5.11.0': - resolution: {integrity: sha512-XGPT2zzK0se3A4nqWQjP5GaAvyrs4Z6wpEb9qTFzeLJLaAaDjoVF/ORG0ECBoAta5Pws565jOxkukLEYKPJqlg==} + '@itwin/core-orbitgt@5.11.2': + resolution: {integrity: sha512-gsAXfygZbkN6jroeg05jQ+CIxS+iDhlWEZf0AtJMC/D3q3sZUEn7YIPDDntIS46y46+oh0IlnZgO+NiXNdGzhQ==} - '@itwin/core-quantity@5.11.0': - resolution: {integrity: sha512-j9DbGukrHJczbkzXSC6gR5bpdd5EZNtzmjyh8NoFC755BAjpvfiGagyTDBW6SZkJIzax3Dk4sgrM5NmdBzA5xQ==} + '@itwin/core-quantity@5.11.2': + resolution: {integrity: sha512-YjgNnOinZ7pTWFzzuKvmn31qHidnQYetEkbdJgEOhqc7fzO3i3Do8A71meClEehtUzwgq2VDOILpMTCDMcUJPg==} peerDependencies: - '@itwin/core-bentley': 5.11.0 + '@itwin/core-bentley': 5.11.2 '@itwin/core-react@5.33.0': resolution: {integrity: sha512-BPKfDs5L21j4309OEjLyUe0YvcQv+3s3CpMtbeUFzzSwSek+XRJa6kwadoHQstxPLRAlw1IzE1a0Wq0v/1gw/w==} @@ -2352,29 +2352,29 @@ packages: react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 - '@itwin/ecschema-metadata@5.11.0': - resolution: {integrity: sha512-pfY67bnJ4SsJcOdkDDC81Eka7LiMIZr0izL46N9SMjbce/Q+w0RKePO/t/pCQshJ//akHNYq2+4MUQEADKBnMw==} + '@itwin/ecschema-metadata@5.11.2': + resolution: {integrity: sha512-YmtkVJ6lzt2Cmmop2Sfl/PC4bcQ8hFqbhT9hezNABwYBQLm6AZuvhPv0e3geZ5XiPLBzq1edb732Gomh5Z3HTA==} peerDependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-quantity': 5.11.0 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-quantity': 5.11.2 - '@itwin/ecschema-rpcinterface-common@5.11.0': - resolution: {integrity: sha512-yCAXB1bVl4JzUUFZ5pbnZjYXf+KDGATw3/4vKXwAmCoZVvt9mJq8djsIFSL8/IMT4AZfP4uD7cYbyRYC9bXrow==} + '@itwin/ecschema-rpcinterface-common@5.11.2': + resolution: {integrity: sha512-jb+EED8uGezlz5jrqnYTgZGJEUdco20cQW5xEZqLrLnzzGRFWx/7BwW9kGNhK2Zfl0g8q9QuC244g3CHuqbdWw==} peerDependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0 - '@itwin/core-geometry': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2 + '@itwin/core-geometry': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2 - '@itwin/ecschema-rpcinterface-impl@5.11.0': - resolution: {integrity: sha512-5yUed+BmURX54i0dluLF0iKPDW04CdfrVwluBd6+cllkjoGW8iCbXaz49c21c3tYcuRcAp+mbi5eG1yicPtUvw==} + '@itwin/ecschema-rpcinterface-impl@5.11.2': + resolution: {integrity: sha512-/eRp88uOmAkjTfcMQxSUqOzDGhI45bPClKgnQ94MQRHbicPIgsuk55mB7my8qYyXSmiGQxqI6Ztg+BvD5ArmgQ==} peerDependencies: - '@itwin/core-backend': 5.11.0 - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0 - '@itwin/core-geometry': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0 - '@itwin/ecschema-rpcinterface-common': 5.11.0 + '@itwin/core-backend': 5.11.2 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2 + '@itwin/core-geometry': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2 + '@itwin/ecschema-rpcinterface-common': 5.11.2 '@itwin/eslint-plugin@6.1.0': resolution: {integrity: sha512-4HDfTmenGSQfL8o8Cr1tKavF2ZQsKEjF31e8pZUPv4QMUZCTr5Gt+lALNLPO4huRJo9e5rasUB/vq0MCBD0t4Q==} @@ -2384,12 +2384,12 @@ packages: eslint: ^9.11.1 typescript: ^3.7.0 || ^4.0.0 || ^5.0.0 || <6.1.0 - '@itwin/express-server@5.11.0': - resolution: {integrity: sha512-cZaIY4KLagWiGk96lP9o83nlVkr7owSnWvMwL+BE0fDR9js4uGsgV963+hNKQwRplbXYDZWn+qTka8+GPY6pzg==} + '@itwin/express-server@5.11.2': + resolution: {integrity: sha512-fPaoKxVvtgmSNhksrcYyVTfgob04VnfXF6i0WXG8V2ATxeEbJTDnoLsuy3hpnl4FGwa9bob0Xk4mq3CKot6UGQ==} engines: {node: ^20.0.0 || ^22.0.0 || ^24.0.0} peerDependencies: - '@itwin/core-backend': 5.11.0 - '@itwin/core-common': 5.11.0 + '@itwin/core-backend': 5.11.2 + '@itwin/core-common': 5.11.2 '@itwin/imodel-components-react@5.33.0': resolution: {integrity: sha512-AOEv3An/prRwZs92TPafDjPocotFXHbXzo2c7cWzW1VXzOAbP89QpvhyiuH7CJEmTHcP7F8X0mb24It5JtQTLA==} @@ -2450,33 +2450,33 @@ packages: reflect-metadata: optional: true - '@itwin/presentation-backend@5.11.0': - resolution: {integrity: sha512-XWagGZjdPzsLRPsjivP6kqrMSdAtL2vS7gvTAetfrXuaWJDOQd5WJ8z4gpysMvksKeTz4ULBHFhWCtOC7ReYmQ==} + '@itwin/presentation-backend@5.11.2': + resolution: {integrity: sha512-KoGoVzfiC/drWvmwQ/WFtIB58UKf7yu/tIYsPnTyyb/tzBn+WEXhrNR9tuTrvZmu85jjGZHuAI80xYU1dmePqA==} peerDependencies: - '@itwin/core-backend': 5.11.0 - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0 - '@itwin/core-quantity': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0 - '@itwin/presentation-common': 5.11.0 + '@itwin/core-backend': 5.11.2 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2 + '@itwin/core-quantity': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2 + '@itwin/presentation-common': 5.11.2 - '@itwin/presentation-common@5.11.0': - resolution: {integrity: sha512-3U0pLkkjieW/VFrDcyvI7VRoMYTuL7NImUU4BayEGZAj6XfrTQIJsr2VW4pzmMR704PM6xa1CJ6s2gRtD6T72Q==} + '@itwin/presentation-common@5.11.2': + resolution: {integrity: sha512-Gvsbc/OOtyFq5tF2Tz+Mc47v5zIcdpk5CL0ll2Gmgr9huj1H/y2DXvJTrerAukgRld1LSSRu7EIjbAcowDxpTw==} peerDependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0 - '@itwin/core-quantity': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2 + '@itwin/core-quantity': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2 - '@itwin/presentation-frontend@5.11.0': - resolution: {integrity: sha512-zSkhLoe5ykvVEqVGeWQbS8/QaOTt7xn1pGHWwT1IKXL9gEUoAZY+Uo7k0Ie0wkLGIKboXcpCw5APXotKASLfnw==} + '@itwin/presentation-frontend@5.11.2': + resolution: {integrity: sha512-U16NTP8lOEBMamX3puQ53sQGeZMWGJghZ1wKreMY4vH5pmCahaXsnm8Mv1gerNB4encJ+Hl0Nc3GIteXwlhkfQ==} peerDependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0 - '@itwin/core-frontend': 5.11.0 - '@itwin/core-quantity': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0 - '@itwin/presentation-common': 5.11.0 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2 + '@itwin/core-frontend': 5.11.2 + '@itwin/core-quantity': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2 + '@itwin/presentation-common': 5.11.2 '@itwin/presentation-shared@1.2.16': resolution: {integrity: sha512-oxcKKYLGQAOMJFvE+Yxvqjty+IBqPDfKBBUM1rcVR7g9d53vXmfoHMk+FnEAT/AzBxAwhophaS5JxzZ9cVt39A==} @@ -2484,8 +2484,8 @@ packages: '@itwin/unified-selection@1.8.0': resolution: {integrity: sha512-cysBWBbs2gGYXxySS48VJPqOrf8MiyQGv+EESjMX4UKejHwdW1m91mzJd0VlBwpij8SwBvR7MeveIhAAQK0wMA==} - '@itwin/webgl-compatibility@5.11.0': - resolution: {integrity: sha512-km0j+mX3X+Bijdiiu+0uZPAqLy0QAqhvosJ1qonDmVYE4SiTMJ5Gx6ja5BivI2m6Y3SuLx5WWFquNJRjuKuqqw==} + '@itwin/webgl-compatibility@5.11.2': + resolution: {integrity: sha512-J4ZMRaD3AYGmYsvkeQ8kck8wX/KrKnumv3r4eyGYI7k0LgbRFZVBY6FYwFR1JKcs0CGZRPCVjbozlNqe8XVeUA==} '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} @@ -8439,7 +8439,7 @@ snapshots: '@bentley/icons-generic-webfont@1.0.34': {} - '@bentley/imodeljs-native@5.11.19': {} + '@bentley/imodeljs-native@5.11.20': {} '@changesets/apply-release-plan@7.1.1': dependencies: @@ -9116,21 +9116,21 @@ snapshots: '@isaacs/cliui@9.0.0': {} - '@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0)': + '@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2)': dependencies: - '@itwin/core-bentley': 5.11.0 + '@itwin/core-bentley': 5.11.2 - '@itwin/appui-react@5.33.0(95c2c94a40bd264fead63de377844bf0)': + '@itwin/appui-react@5.33.0(d9b59623f25a55fa5ae84e9146d1a307)': dependencies: - '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/components-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-frontend': 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) - '@itwin/core-geometry': 5.11.0 - '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/core-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@itwin/imodel-components-react': 5.33.0(14f2413b9943a640d324dda6f6d84529) + '@itwin/appui-abstract': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/components-react': 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-frontend': 5.11.2(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/core-orbitgt@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) + '@itwin/core-geometry': 5.11.2 + '@itwin/core-quantity': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/core-react': 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/imodel-components-react': 5.33.0(9dc11e69708e3baa9525e15bc1eba176) '@itwin/itwinui-icons-react': 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-illustrations-react': 2.1.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-react': 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) @@ -9149,7 +9149,7 @@ snapshots: transitivePeerDependencies: - '@types/react' - '@itwin/build-tools@5.11.0(@types/node@24.13.2)(mocha@11.7.6)': + '@itwin/build-tools@5.11.2(@types/node@24.13.2)(mocha@11.7.6)': dependencies: '@microsoft/api-extractor': 7.58.9(@types/node@24.13.2) chalk: 3.0.0 @@ -9173,11 +9173,11 @@ snapshots: '@itwin/cloud-agnostic-core@3.1.2': {} - '@itwin/components-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@itwin/components-react@5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/core-bentley': 5.11.0 - '@itwin/core-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/appui-abstract': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-react': 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-icons-react': 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-react': 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) classnames: 2.5.1 @@ -9190,14 +9190,14 @@ snapshots: rxjs: 7.8.2 ts-key-enum: 2.0.13 - '@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1)': + '@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1)': dependencies: '@azure/storage-blob': 12.32.0 - '@bentley/imodeljs-native': 5.11.19 - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-geometry': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + '@bentley/imodeljs-native': 5.11.20 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-geometry': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) '@itwin/object-storage-azure': 3.1.2 form-data: 4.0.6 fs-extra: 8.1.0 @@ -9217,23 +9217,23 @@ snapshots: - supports-color - utf-8-validate - '@itwin/core-bentley@5.10.2': {} - '@itwin/core-bentley@5.11.0': {} - '@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0)': + '@itwin/core-bentley@5.11.2': {} + + '@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2)': dependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-geometry': 5.11.0 + '@itwin/core-bentley': 5.11.2 + '@itwin/core-geometry': 5.11.2 flatbuffers: 1.12.0 js-base64: 3.7.8 - '@itwin/core-electron@5.11.0(7716f3b24ae9ba692b3810ddcedf32fe)': + '@itwin/core-electron@5.11.2(065107dcf42efacfebd63a008b8b98f3)': dependencies: - '@itwin/core-backend': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-frontend': 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) + '@itwin/core-backend': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-frontend': 5.11.2(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/core-orbitgt@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) '@openid/appauth': 1.3.2 electron: 39.8.10 open: 7.4.2 @@ -9241,18 +9241,18 @@ snapshots: transitivePeerDependencies: - debug - '@itwin/core-frontend@5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))))': - dependencies: - '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-geometry': 5.11.0 - '@itwin/core-i18n': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/core-orbitgt': 5.11.0 - '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) - '@itwin/ecschema-rpcinterface-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) - '@itwin/webgl-compatibility': 5.11.0 + '@itwin/core-frontend@5.11.2(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/core-orbitgt@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))))': + dependencies: + '@itwin/appui-abstract': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-geometry': 5.11.2 + '@itwin/core-i18n': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/core-orbitgt': 5.11.2 + '@itwin/core-quantity': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/ecschema-metadata': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) + '@itwin/ecschema-rpcinterface-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) + '@itwin/webgl-compatibility': 5.11.2 '@loaders.gl/core': 4.3.4 '@loaders.gl/draco': 4.3.4(@loaders.gl/core@4.3.4) fuse.js: 3.6.1 @@ -9260,30 +9260,30 @@ snapshots: transitivePeerDependencies: - encoding - '@itwin/core-geometry@5.11.0': + '@itwin/core-geometry@5.11.2': dependencies: - '@itwin/core-bentley': 5.11.0 + '@itwin/core-bentley': 5.11.2 flatbuffers: 1.12.0 - '@itwin/core-i18n@5.11.0(@itwin/core-bentley@5.11.0)': + '@itwin/core-i18n@5.11.2(@itwin/core-bentley@5.11.2)': dependencies: - '@itwin/core-bentley': 5.11.0 + '@itwin/core-bentley': 5.11.2 i18next: 21.10.0 i18next-browser-languagedetector: 6.1.8 i18next-http-backend: 3.0.6 transitivePeerDependencies: - encoding - '@itwin/core-orbitgt@5.11.0': {} + '@itwin/core-orbitgt@5.11.2': {} - '@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)': + '@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)': dependencies: - '@itwin/core-bentley': 5.11.0 + '@itwin/core-bentley': 5.11.2 - '@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/core-bentley': 5.11.0 + '@itwin/appui-abstract': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/core-bentley': 5.11.2 '@itwin/itwinui-icons-react': 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-react': 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) classnames: 2.5.1 @@ -9294,26 +9294,26 @@ snapshots: react-dom: 19.2.7(react@19.2.7) ts-key-enum: 2.0.13 - '@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))': + '@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))': dependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-quantity': 5.11.2(@itwin/core-bentley@5.11.2) - '@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))': + '@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))': dependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-geometry': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-geometry': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) - '@itwin/ecschema-rpcinterface-impl@5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))))': + '@itwin/ecschema-rpcinterface-impl@5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))))': dependencies: - '@itwin/core-backend': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-geometry': 5.11.0 - '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) - '@itwin/ecschema-rpcinterface-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + '@itwin/core-backend': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-geometry': 5.11.2 + '@itwin/ecschema-metadata': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) + '@itwin/ecschema-rpcinterface-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/eslint-plugin@6.1.0(eslint@9.39.4)(typescript@6.0.3)': dependencies: @@ -9336,10 +9336,10 @@ snapshots: - eslint-import-resolver-webpack - supports-color - '@itwin/express-server@5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))': + '@itwin/express-server@5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))': dependencies: - '@itwin/core-backend': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) + '@itwin/core-backend': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1) + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) express: 4.22.2 express-ws: 5.0.2(express@4.22.2) transitivePeerDependencies: @@ -9347,16 +9347,16 @@ snapshots: - supports-color - utf-8-validate - '@itwin/imodel-components-react@5.33.0(14f2413b9943a640d324dda6f6d84529)': + '@itwin/imodel-components-react@5.33.0(9dc11e69708e3baa9525e15bc1eba176)': dependencies: - '@itwin/appui-abstract': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/components-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-frontend': 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) - '@itwin/core-geometry': 5.11.0 - '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/core-react': 5.33.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/appui-abstract': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/components-react': 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-react@5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-frontend': 5.11.2(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/core-orbitgt@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) + '@itwin/core-geometry': 5.11.2 + '@itwin/core-quantity': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/core-react': 5.33.0(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/itwinui-react@3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-icons-react': 2.11.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7) '@itwin/itwinui-react': 3.21.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) classnames: 2.5.1 @@ -9403,54 +9403,54 @@ snapshots: - debug - supports-color - '@itwin/presentation-backend@5.11.0(@itwin/core-backend@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))))': + '@itwin/presentation-backend@5.11.2(@itwin/core-backend@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/presentation-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))))': dependencies: - '@itwin/core-backend': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@opentelemetry/api@1.9.1) - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) - '@itwin/presentation-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + '@itwin/core-backend': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@opentelemetry/api@1.9.1) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-quantity': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/ecschema-metadata': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) + '@itwin/presentation-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/presentation-shared': 1.2.16 object-hash: 1.3.1 rxjs: 7.8.2 rxjs-for-await: 1.0.0(rxjs@7.8.2) semver: 7.8.4 - '@itwin/presentation-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))': + '@itwin/presentation-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))': dependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-quantity': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/ecschema-metadata': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) '@itwin/presentation-shared': 1.2.16 - '@itwin/presentation-frontend@5.11.0(b519d1e59ddebb99be5b12015166e40b)': + '@itwin/presentation-frontend@5.11.2(4f56e2ad7c914c9ef72556e19431ddb1)': dependencies: - '@itwin/core-bentley': 5.11.0 - '@itwin/core-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0) - '@itwin/core-frontend': 5.11.0(@itwin/appui-abstract@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/core-orbitgt@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))(@itwin/ecschema-rpcinterface-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-geometry@5.11.0)(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)))) - '@itwin/core-quantity': 5.11.0(@itwin/core-bentley@5.11.0) - '@itwin/ecschema-metadata': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0)) - '@itwin/presentation-common': 5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-common@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-geometry@5.11.0))(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))(@itwin/ecschema-metadata@5.11.0(@itwin/core-bentley@5.11.0)(@itwin/core-quantity@5.11.0(@itwin/core-bentley@5.11.0))) + '@itwin/core-bentley': 5.11.2 + '@itwin/core-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2) + '@itwin/core-frontend': 5.11.2(@itwin/appui-abstract@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/core-orbitgt@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))(@itwin/ecschema-rpcinterface-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-geometry@5.11.2)(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)))) + '@itwin/core-quantity': 5.11.2(@itwin/core-bentley@5.11.2) + '@itwin/ecschema-metadata': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2)) + '@itwin/presentation-common': 5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-common@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-geometry@5.11.2))(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))(@itwin/ecschema-metadata@5.11.2(@itwin/core-bentley@5.11.2)(@itwin/core-quantity@5.11.2(@itwin/core-bentley@5.11.2))) '@itwin/unified-selection': 1.8.0 rxjs: 7.8.2 rxjs-for-await: 1.0.0(rxjs@7.8.2) '@itwin/presentation-shared@1.2.16': dependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 '@itwin/unified-selection@1.8.0': dependencies: - '@itwin/core-bentley': 5.10.2 + '@itwin/core-bentley': 5.11.0 '@itwin/presentation-shared': 1.2.16 rxjs: 7.8.2 rxjs-for-await: 1.0.0(rxjs@7.8.2) - '@itwin/webgl-compatibility@5.11.0': + '@itwin/webgl-compatibility@5.11.2': dependencies: - '@itwin/core-bentley': 5.11.0 + '@itwin/core-bentley': 5.11.2 '@jridgewell/resolve-uri@3.1.2': {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index c4fea5419..0f82b76ff 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -23,7 +23,7 @@ catalogs: '@itwin/core-react': ^5.33.0 '@itwin/imodel-components-react': ^5.33.0 build-tools: - '@itwin/build-tools': ^5.11.0 + '@itwin/build-tools': ^5.11.2 '@itwin/eslint-plugin': ^6.1.0 '@types/node': ^24.13.2 '@vitejs/plugin-react': ^6.0.2 @@ -35,27 +35,27 @@ catalogs: typescript: ~6.0.3 vite: ^8.0.16 itwinjs-core: - '@itwin/core-bentley': ^5.11.0 - '@itwin/core-common': ^5.11.0 - '@itwin/core-geometry': ^5.11.0 + '@itwin/core-bentley': ^5.11.2 + '@itwin/core-common': ^5.11.2 + '@itwin/core-geometry': ^5.11.2 itwinjs-core-dev: - '@itwin/appui-abstract': ^5.11.0 - '@itwin/core-backend': ^5.11.0 - '@itwin/core-bentley': ^5.11.0 - '@itwin/core-common': ^5.11.0 - '@itwin/core-electron': ^5.11.0 - '@itwin/core-frontend': ^5.11.0 - '@itwin/core-geometry': ^5.11.0 - '@itwin/core-i18n': ^5.11.0 - '@itwin/core-orbitgt': ^5.11.0 - '@itwin/core-quantity': ^5.11.0 - '@itwin/ecschema-metadata': ^5.11.0 - '@itwin/ecschema-rpcinterface-common': ^5.11.0 - '@itwin/ecschema-rpcinterface-impl': ^5.11.0 - '@itwin/express-server': ^5.11.0 - '@itwin/presentation-backend': ^5.11.0 - '@itwin/presentation-common': ^5.11.0 - '@itwin/presentation-frontend': ^5.11.0 + '@itwin/appui-abstract': ^5.11.2 + '@itwin/core-backend': ^5.11.2 + '@itwin/core-bentley': ^5.11.2 + '@itwin/core-common': ^5.11.2 + '@itwin/core-electron': ^5.11.2 + '@itwin/core-frontend': ^5.11.2 + '@itwin/core-geometry': ^5.11.2 + '@itwin/core-i18n': ^5.11.2 + '@itwin/core-orbitgt': ^5.11.2 + '@itwin/core-quantity': ^5.11.2 + '@itwin/ecschema-metadata': ^5.11.2 + '@itwin/ecschema-rpcinterface-common': ^5.11.2 + '@itwin/ecschema-rpcinterface-impl': ^5.11.2 + '@itwin/express-server': ^5.11.2 + '@itwin/presentation-backend': ^5.11.2 + '@itwin/presentation-common': ^5.11.2 + '@itwin/presentation-frontend': ^5.11.2 inversify: ~6.0.2 reflect-metadata: ^0.1.14 itwinui: