@itwin/ecschema-rpcinterface-tests 4.0.0-dev.102 → 4.0.0-dev.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/bundled-tests.js +257 -320
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/{object-storage.bundled-tests.js → object-storage-azure.bundled-tests.js} +2 -2
- package/lib/dist/object-storage-azure.bundled-tests.js.map +1 -0
- package/package.json +16 -16
- package/lib/dist/object-storage.bundled-tests.js.map +0 -1
|
@@ -79341,9 +79341,7 @@ class IModelApp {
|
|
|
79341
79341
|
static get applicationVersion() { return this._applicationVersion; }
|
|
79342
79342
|
/** True after [[startup]] has been called, until [[shutdown]] is called. */
|
|
79343
79343
|
static get initialized() { return this._initialized; }
|
|
79344
|
-
/** Provides access to
|
|
79345
|
-
* @internal
|
|
79346
|
-
*/
|
|
79344
|
+
/** Provides access to IModelHub services. */
|
|
79347
79345
|
static get hubAccess() { return this._hubAccess; }
|
|
79348
79346
|
/** Provides access to the RealityData service implementation for this IModelApp
|
|
79349
79347
|
* @beta
|
|
@@ -95206,65 +95204,6 @@ class ExtensionHost {
|
|
|
95206
95204
|
}
|
|
95207
95205
|
|
|
95208
95206
|
|
|
95209
|
-
/***/ }),
|
|
95210
|
-
|
|
95211
|
-
/***/ "../../core/frontend/lib/esm/extension/ExtensionImpl.js":
|
|
95212
|
-
/*!**************************************************************!*\
|
|
95213
|
-
!*** ../../core/frontend/lib/esm/extension/ExtensionImpl.js ***!
|
|
95214
|
-
\**************************************************************/
|
|
95215
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
95216
|
-
|
|
95217
|
-
"use strict";
|
|
95218
|
-
__webpack_require__.r(__webpack_exports__);
|
|
95219
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
95220
|
-
/* harmony export */ "ExtensionImpl": () => (/* binding */ ExtensionImpl),
|
|
95221
|
-
/* harmony export */ "ToolProvider": () => (/* binding */ ToolProvider)
|
|
95222
|
-
/* harmony export */ });
|
|
95223
|
-
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
95224
|
-
/* harmony import */ var _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/appui-abstract */ "../../ui/appui-abstract/lib/esm/appui-abstract.js");
|
|
95225
|
-
/*---------------------------------------------------------------------------------------------
|
|
95226
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
95227
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
95228
|
-
*--------------------------------------------------------------------------------------------*/
|
|
95229
|
-
/** @packageDocumentation
|
|
95230
|
-
* @module Extensions
|
|
95231
|
-
*/
|
|
95232
|
-
|
|
95233
|
-
|
|
95234
|
-
/** @alpha */
|
|
95235
|
-
class ToolProvider {
|
|
95236
|
-
constructor(tool) {
|
|
95237
|
-
this._toolId = "";
|
|
95238
|
-
this.id = `ToolProvider:${tool.toolId}`;
|
|
95239
|
-
this._toolId = tool.toolId;
|
|
95240
|
-
this._toolIcon = tool.iconSpec;
|
|
95241
|
-
this._toolLabel = tool.description;
|
|
95242
|
-
}
|
|
95243
|
-
provideToolbarButtonItems(_stageId, stageUsage, toolbarUsage, toolbarOrientation) {
|
|
95244
|
-
const toolbarItem = _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.ToolbarItemUtilities.createActionButton(this._toolId, 0, this._toolIcon, this._toolLabel, async () => {
|
|
95245
|
-
await _IModelApp__WEBPACK_IMPORTED_MODULE_0__.IModelApp.tools.run(this._toolId);
|
|
95246
|
-
});
|
|
95247
|
-
return stageUsage === _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.StageUsage.General && toolbarUsage === _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.ToolbarUsage.ContentManipulation && toolbarOrientation === _itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.ToolbarOrientation.Vertical ? [toolbarItem] : []; // eslint-disable-line deprecation/deprecation
|
|
95248
|
-
}
|
|
95249
|
-
}
|
|
95250
|
-
/** @alpha */
|
|
95251
|
-
class ExtensionImpl {
|
|
95252
|
-
constructor(_id) {
|
|
95253
|
-
this._id = _id;
|
|
95254
|
-
}
|
|
95255
|
-
async registerTool(tool, onRegistered) {
|
|
95256
|
-
try {
|
|
95257
|
-
_IModelApp__WEBPACK_IMPORTED_MODULE_0__.IModelApp.tools.register(tool);
|
|
95258
|
-
_itwin_appui_abstract__WEBPACK_IMPORTED_MODULE_1__.UiItemsManager.register(new ToolProvider(tool)); // eslint-disable-line deprecation/deprecation
|
|
95259
|
-
onRegistered?.();
|
|
95260
|
-
}
|
|
95261
|
-
catch (e) {
|
|
95262
|
-
console.log(`Error registering tool: ${e}`); // eslint-disable-line
|
|
95263
|
-
}
|
|
95264
|
-
}
|
|
95265
|
-
}
|
|
95266
|
-
|
|
95267
|
-
|
|
95268
95207
|
/***/ }),
|
|
95269
95208
|
|
|
95270
95209
|
/***/ "../../core/frontend/lib/esm/extension/ExtensionRuntime.js":
|
|
@@ -95275,10 +95214,9 @@ class ExtensionImpl {
|
|
|
95275
95214
|
|
|
95276
95215
|
"use strict";
|
|
95277
95216
|
__webpack_require__.r(__webpack_exports__);
|
|
95278
|
-
/* harmony import */ var
|
|
95279
|
-
/* harmony import */ var
|
|
95280
|
-
/* harmony import */ var
|
|
95281
|
-
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
95217
|
+
/* harmony import */ var _ExtensionHost__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ExtensionHost */ "../../core/frontend/lib/esm/extension/ExtensionHost.js");
|
|
95218
|
+
/* harmony import */ var _core_frontend__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
95219
|
+
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
95282
95220
|
/*---------------------------------------------------------------------------------------------
|
|
95283
95221
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
95284
95222
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -95290,7 +95228,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
95290
95228
|
/* eslint-disable @itwin/no-internal-barrel-imports */
|
|
95291
95229
|
/* eslint-disable sort-imports */
|
|
95292
95230
|
|
|
95293
|
-
|
|
95294
95231
|
const globalSymbol = Symbol.for("itwin.core.frontend.globals");
|
|
95295
95232
|
if (globalThis[globalSymbol])
|
|
95296
95233
|
throw new Error("Multiple @itwin/core-frontend imports detected!");
|
|
@@ -95298,265 +95235,264 @@ if (globalThis[globalSymbol])
|
|
|
95298
95235
|
|
|
95299
95236
|
|
|
95300
95237
|
const extensionExports = {
|
|
95301
|
-
ACSDisplayOptions:
|
|
95302
|
-
ACSType:
|
|
95303
|
-
AccuDrawHintBuilder:
|
|
95304
|
-
AccuSnap:
|
|
95305
|
-
ActivityMessageDetails:
|
|
95306
|
-
ActivityMessageEndReason:
|
|
95307
|
-
AuxCoordSystem2dState:
|
|
95308
|
-
AuxCoordSystem3dState:
|
|
95309
|
-
AuxCoordSystemSpatialState:
|
|
95310
|
-
AuxCoordSystemState:
|
|
95311
|
-
BackgroundFill:
|
|
95312
|
-
BackgroundMapType:
|
|
95313
|
-
BatchType:
|
|
95314
|
-
BeButton:
|
|
95315
|
-
BeButtonEvent:
|
|
95316
|
-
BeButtonState:
|
|
95317
|
-
BeModifierKeys:
|
|
95318
|
-
BeTouchEvent:
|
|
95319
|
-
BeWheelEvent:
|
|
95320
|
-
BingElevationProvider:
|
|
95321
|
-
BingLocationProvider:
|
|
95322
|
-
BisCodeSpec:
|
|
95323
|
-
BriefcaseIdValue:
|
|
95324
|
-
CategorySelectorState:
|
|
95325
|
-
ChangeFlags:
|
|
95326
|
-
ChangeOpCode:
|
|
95327
|
-
ChangedValueState:
|
|
95328
|
-
ChangesetType:
|
|
95329
|
-
ClipEventType:
|
|
95330
|
-
Cluster:
|
|
95331
|
-
ColorByName:
|
|
95332
|
-
ColorDef:
|
|
95333
|
-
CommonLoggerCategory:
|
|
95334
|
-
ContextRealityModelState:
|
|
95335
|
-
ContextRotationId:
|
|
95336
|
-
CoordSource:
|
|
95337
|
-
CoordSystem:
|
|
95338
|
-
CoordinateLockOverrides:
|
|
95339
|
-
DecorateContext:
|
|
95340
|
-
Decorations:
|
|
95341
|
-
DisclosedTileTreeSet:
|
|
95342
|
-
DisplayStyle2dState:
|
|
95343
|
-
DisplayStyle3dState:
|
|
95344
|
-
DisplayStyleState:
|
|
95345
|
-
DrawingModelState:
|
|
95346
|
-
DrawingViewState:
|
|
95347
|
-
ECSqlSystemProperty:
|
|
95348
|
-
ECSqlValueType:
|
|
95349
|
-
EditManipulator:
|
|
95350
|
-
ElementGeometryOpcode:
|
|
95351
|
-
ElementLocateManager:
|
|
95352
|
-
ElementPicker:
|
|
95353
|
-
ElementState:
|
|
95354
|
-
EmphasizeElements:
|
|
95355
|
-
EntityState:
|
|
95356
|
-
EventController:
|
|
95357
|
-
EventHandled:
|
|
95358
|
-
FeatureOverrideType:
|
|
95359
|
-
FeatureSymbology:
|
|
95360
|
-
FillDisplay:
|
|
95361
|
-
FillFlags:
|
|
95362
|
-
FlashMode:
|
|
95363
|
-
FlashSettings:
|
|
95364
|
-
FontType:
|
|
95365
|
-
FrontendLoggerCategory:
|
|
95366
|
-
FrustumAnimator:
|
|
95367
|
-
FrustumPlanes:
|
|
95368
|
-
GeoCoordStatus:
|
|
95369
|
-
GeometricModel2dState:
|
|
95370
|
-
GeometricModel3dState:
|
|
95371
|
-
GeometricModelState:
|
|
95372
|
-
GeometryClass:
|
|
95373
|
-
GeometryStreamFlags:
|
|
95374
|
-
GeometrySummaryVerbosity:
|
|
95375
|
-
GlobeAnimator:
|
|
95376
|
-
GlobeMode:
|
|
95377
|
-
GraphicBranch:
|
|
95378
|
-
GraphicBuilder:
|
|
95379
|
-
GraphicType:
|
|
95380
|
-
GridOrientationType:
|
|
95381
|
-
HSVConstants:
|
|
95382
|
-
HiliteSet:
|
|
95383
|
-
HitDetail:
|
|
95384
|
-
HitDetailType:
|
|
95385
|
-
HitGeomType:
|
|
95386
|
-
HitList:
|
|
95387
|
-
HitParentGeomType:
|
|
95388
|
-
HitPriority:
|
|
95389
|
-
HitSource:
|
|
95390
|
-
IModelConnection:
|
|
95391
|
-
IconSprites:
|
|
95392
|
-
ImageBufferFormat:
|
|
95393
|
-
ImageSourceFormat:
|
|
95394
|
-
InputCollector:
|
|
95395
|
-
InputSource:
|
|
95396
|
-
InteractiveTool:
|
|
95397
|
-
IntersectDetail:
|
|
95398
|
-
KeyinParseError:
|
|
95399
|
-
LinePixels:
|
|
95400
|
-
LocateAction:
|
|
95401
|
-
LocateFilterStatus:
|
|
95402
|
-
LocateOptions:
|
|
95403
|
-
LocateResponse:
|
|
95404
|
-
ManipulatorToolEvent:
|
|
95405
|
-
MarginPercent:
|
|
95406
|
-
Marker:
|
|
95407
|
-
MarkerSet:
|
|
95408
|
-
MassPropertiesOperation:
|
|
95409
|
-
MessageBoxIconType:
|
|
95410
|
-
MessageBoxType:
|
|
95411
|
-
MessageBoxValue:
|
|
95412
|
-
ModelSelectorState:
|
|
95413
|
-
ModelState:
|
|
95414
|
-
MonochromeMode:
|
|
95415
|
-
NotificationHandler:
|
|
95416
|
-
NotificationManager:
|
|
95417
|
-
NotifyMessageDetails:
|
|
95418
|
-
Npc:
|
|
95419
|
-
OffScreenViewport:
|
|
95420
|
-
OrthographicViewState:
|
|
95421
|
-
OutputMessageAlert:
|
|
95422
|
-
OutputMessagePriority:
|
|
95423
|
-
OutputMessageType:
|
|
95424
|
-
ParseAndRunResult:
|
|
95425
|
-
PerModelCategoryVisibility:
|
|
95426
|
-
PhysicalModelState:
|
|
95427
|
-
Pixel:
|
|
95428
|
-
PlanarClipMaskMode:
|
|
95429
|
-
PlanarClipMaskPriority:
|
|
95430
|
-
PrimitiveTool:
|
|
95431
|
-
QParams2d:
|
|
95432
|
-
QParams3d:
|
|
95433
|
-
QPoint2d:
|
|
95434
|
-
QPoint2dBuffer:
|
|
95435
|
-
QPoint2dBufferBuilder:
|
|
95436
|
-
QPoint2dList:
|
|
95437
|
-
QPoint3d:
|
|
95438
|
-
QPoint3dBuffer:
|
|
95439
|
-
QPoint3dBufferBuilder:
|
|
95440
|
-
QPoint3dList:
|
|
95441
|
-
Quantization:
|
|
95442
|
-
QueryRowFormat:
|
|
95443
|
-
Rank:
|
|
95444
|
-
RenderClipVolume:
|
|
95445
|
-
RenderContext:
|
|
95446
|
-
RenderGraphic:
|
|
95447
|
-
RenderGraphicOwner:
|
|
95448
|
-
RenderMode:
|
|
95449
|
-
RenderSystem:
|
|
95450
|
-
Scene:
|
|
95451
|
-
ScreenViewport:
|
|
95452
|
-
SectionDrawingModelState:
|
|
95453
|
-
SectionType:
|
|
95454
|
-
SelectionMethod:
|
|
95455
|
-
SelectionMode:
|
|
95456
|
-
SelectionProcessing:
|
|
95457
|
-
SelectionSet:
|
|
95458
|
-
SelectionSetEventType:
|
|
95459
|
-
SheetModelState:
|
|
95460
|
-
SheetViewState:
|
|
95461
|
-
SkyBoxImageType:
|
|
95462
|
-
SnapDetail:
|
|
95463
|
-
SnapHeat:
|
|
95464
|
-
SnapMode:
|
|
95465
|
-
SnapStatus:
|
|
95466
|
-
SpatialClassifierInsideDisplay:
|
|
95467
|
-
SpatialClassifierOutsideDisplay:
|
|
95468
|
-
SpatialLocationModelState:
|
|
95469
|
-
SpatialModelState:
|
|
95470
|
-
SpatialViewState:
|
|
95471
|
-
Sprite:
|
|
95472
|
-
SpriteLocation:
|
|
95473
|
-
StandardViewId:
|
|
95474
|
-
StartOrResume:
|
|
95475
|
-
SyncMode:
|
|
95476
|
-
TentativePoint:
|
|
95477
|
-
TerrainHeightOriginMode:
|
|
95478
|
-
TextureMapUnits:
|
|
95479
|
-
ThematicDisplayMode:
|
|
95480
|
-
ThematicGradientColorScheme:
|
|
95481
|
-
ThematicGradientMode:
|
|
95482
|
-
Tile:
|
|
95483
|
-
TileAdmin:
|
|
95484
|
-
TileBoundingBoxes:
|
|
95485
|
-
TileDrawArgs:
|
|
95486
|
-
TileGraphicType:
|
|
95487
|
-
TileLoadPriority:
|
|
95488
|
-
TileLoadStatus:
|
|
95489
|
-
TileRequest:
|
|
95490
|
-
TileRequestChannel:
|
|
95491
|
-
TileRequestChannelStatistics:
|
|
95492
|
-
TileRequestChannels:
|
|
95493
|
-
TileTree:
|
|
95494
|
-
TileTreeLoadStatus:
|
|
95495
|
-
TileTreeReference:
|
|
95496
|
-
TileUsageMarker:
|
|
95497
|
-
TileVisibility:
|
|
95498
|
-
Tiles:
|
|
95499
|
-
Tool:
|
|
95500
|
-
ToolAdmin:
|
|
95501
|
-
ToolAssistance:
|
|
95502
|
-
ToolAssistanceImage:
|
|
95503
|
-
ToolAssistanceInputMethod:
|
|
95504
|
-
ToolSettings:
|
|
95505
|
-
TwoWayViewportFrustumSync:
|
|
95506
|
-
TwoWayViewportSync:
|
|
95507
|
-
TxnAction:
|
|
95508
|
-
TypeOfChange:
|
|
95509
|
-
UniformType:
|
|
95510
|
-
VaryingType:
|
|
95511
|
-
ViewClipClearTool:
|
|
95512
|
-
ViewClipDecoration:
|
|
95513
|
-
ViewClipDecorationProvider:
|
|
95514
|
-
ViewClipTool:
|
|
95515
|
-
ViewCreator2d:
|
|
95516
|
-
ViewCreator3d:
|
|
95517
|
-
ViewManager:
|
|
95518
|
-
ViewManip:
|
|
95519
|
-
ViewPose:
|
|
95520
|
-
ViewPose2d:
|
|
95521
|
-
ViewPose3d:
|
|
95522
|
-
ViewRect:
|
|
95523
|
-
ViewState:
|
|
95524
|
-
ViewState2d:
|
|
95525
|
-
ViewState3d:
|
|
95526
|
-
ViewStatus:
|
|
95527
|
-
ViewTool:
|
|
95528
|
-
ViewingSpace:
|
|
95529
|
-
Viewport:
|
|
95530
|
-
canvasToImageBuffer:
|
|
95531
|
-
canvasToResizedCanvasWithBars:
|
|
95532
|
-
connectViewportFrusta:
|
|
95533
|
-
connectViewportViews:
|
|
95534
|
-
connectViewports:
|
|
95535
|
-
extractImageSourceDimensions:
|
|
95536
|
-
getCompressedJpegFromCanvas:
|
|
95537
|
-
getImageSourceFormatForMimeType:
|
|
95538
|
-
getImageSourceMimeType:
|
|
95539
|
-
imageBufferToBase64EncodedPng:
|
|
95540
|
-
imageBufferToCanvas:
|
|
95541
|
-
imageBufferToPngDataUrl:
|
|
95542
|
-
imageElementFromImageSource:
|
|
95543
|
-
imageElementFromUrl:
|
|
95544
|
-
queryTerrainElevationOffset:
|
|
95545
|
-
readElementGraphics:
|
|
95546
|
-
readGltfGraphics:
|
|
95547
|
-
synchronizeViewportFrusta:
|
|
95548
|
-
synchronizeViewportViews:
|
|
95238
|
+
ACSDisplayOptions: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ACSDisplayOptions,
|
|
95239
|
+
ACSType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ACSType,
|
|
95240
|
+
AccuDrawHintBuilder: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AccuDrawHintBuilder,
|
|
95241
|
+
AccuSnap: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AccuSnap,
|
|
95242
|
+
ActivityMessageDetails: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ActivityMessageDetails,
|
|
95243
|
+
ActivityMessageEndReason: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ActivityMessageEndReason,
|
|
95244
|
+
AuxCoordSystem2dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AuxCoordSystem2dState,
|
|
95245
|
+
AuxCoordSystem3dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AuxCoordSystem3dState,
|
|
95246
|
+
AuxCoordSystemSpatialState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AuxCoordSystemSpatialState,
|
|
95247
|
+
AuxCoordSystemState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.AuxCoordSystemState,
|
|
95248
|
+
BackgroundFill: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BackgroundFill,
|
|
95249
|
+
BackgroundMapType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BackgroundMapType,
|
|
95250
|
+
BatchType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BatchType,
|
|
95251
|
+
BeButton: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeButton,
|
|
95252
|
+
BeButtonEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeButtonEvent,
|
|
95253
|
+
BeButtonState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeButtonState,
|
|
95254
|
+
BeModifierKeys: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeModifierKeys,
|
|
95255
|
+
BeTouchEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeTouchEvent,
|
|
95256
|
+
BeWheelEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BeWheelEvent,
|
|
95257
|
+
BingElevationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BingElevationProvider,
|
|
95258
|
+
BingLocationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.BingLocationProvider,
|
|
95259
|
+
BisCodeSpec: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BisCodeSpec,
|
|
95260
|
+
BriefcaseIdValue: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.BriefcaseIdValue,
|
|
95261
|
+
CategorySelectorState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.CategorySelectorState,
|
|
95262
|
+
ChangeFlags: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ChangeFlags,
|
|
95263
|
+
ChangeOpCode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ChangeOpCode,
|
|
95264
|
+
ChangedValueState: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ChangedValueState,
|
|
95265
|
+
ChangesetType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ChangesetType,
|
|
95266
|
+
ClipEventType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ClipEventType,
|
|
95267
|
+
Cluster: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Cluster,
|
|
95268
|
+
ColorByName: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorByName,
|
|
95269
|
+
ColorDef: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ColorDef,
|
|
95270
|
+
CommonLoggerCategory: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CommonLoggerCategory,
|
|
95271
|
+
ContextRealityModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ContextRealityModelState,
|
|
95272
|
+
ContextRotationId: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ContextRotationId,
|
|
95273
|
+
CoordSource: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.CoordSource,
|
|
95274
|
+
CoordSystem: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.CoordSystem,
|
|
95275
|
+
CoordinateLockOverrides: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.CoordinateLockOverrides,
|
|
95276
|
+
DecorateContext: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DecorateContext,
|
|
95277
|
+
Decorations: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Decorations,
|
|
95278
|
+
DisclosedTileTreeSet: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DisclosedTileTreeSet,
|
|
95279
|
+
DisplayStyle2dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DisplayStyle2dState,
|
|
95280
|
+
DisplayStyle3dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DisplayStyle3dState,
|
|
95281
|
+
DisplayStyleState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DisplayStyleState,
|
|
95282
|
+
DrawingModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DrawingModelState,
|
|
95283
|
+
DrawingViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.DrawingViewState,
|
|
95284
|
+
ECSqlSystemProperty: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ECSqlSystemProperty,
|
|
95285
|
+
ECSqlValueType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ECSqlValueType,
|
|
95286
|
+
EditManipulator: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EditManipulator,
|
|
95287
|
+
ElementGeometryOpcode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ElementGeometryOpcode,
|
|
95288
|
+
ElementLocateManager: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ElementLocateManager,
|
|
95289
|
+
ElementPicker: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ElementPicker,
|
|
95290
|
+
ElementState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ElementState,
|
|
95291
|
+
EmphasizeElements: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EmphasizeElements,
|
|
95292
|
+
EntityState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EntityState,
|
|
95293
|
+
EventController: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EventController,
|
|
95294
|
+
EventHandled: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.EventHandled,
|
|
95295
|
+
FeatureOverrideType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FeatureOverrideType,
|
|
95296
|
+
FeatureSymbology: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FeatureSymbology,
|
|
95297
|
+
FillDisplay: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FillDisplay,
|
|
95298
|
+
FillFlags: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FillFlags,
|
|
95299
|
+
FlashMode: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FlashMode,
|
|
95300
|
+
FlashSettings: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FlashSettings,
|
|
95301
|
+
FontType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FontType,
|
|
95302
|
+
FrontendLoggerCategory: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FrontendLoggerCategory,
|
|
95303
|
+
FrustumAnimator: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.FrustumAnimator,
|
|
95304
|
+
FrustumPlanes: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FrustumPlanes,
|
|
95305
|
+
GeoCoordStatus: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GeoCoordStatus,
|
|
95306
|
+
GeometricModel2dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GeometricModel2dState,
|
|
95307
|
+
GeometricModel3dState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GeometricModel3dState,
|
|
95308
|
+
GeometricModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GeometricModelState,
|
|
95309
|
+
GeometryClass: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GeometryClass,
|
|
95310
|
+
GeometryStreamFlags: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GeometryStreamFlags,
|
|
95311
|
+
GeometrySummaryVerbosity: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GeometrySummaryVerbosity,
|
|
95312
|
+
GlobeAnimator: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GlobeAnimator,
|
|
95313
|
+
GlobeMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GlobeMode,
|
|
95314
|
+
GraphicBranch: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GraphicBranch,
|
|
95315
|
+
GraphicBuilder: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GraphicBuilder,
|
|
95316
|
+
GraphicType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.GraphicType,
|
|
95317
|
+
GridOrientationType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.GridOrientationType,
|
|
95318
|
+
HSVConstants: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.HSVConstants,
|
|
95319
|
+
HiliteSet: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HiliteSet,
|
|
95320
|
+
HitDetail: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitDetail,
|
|
95321
|
+
HitDetailType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitDetailType,
|
|
95322
|
+
HitGeomType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitGeomType,
|
|
95323
|
+
HitList: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitList,
|
|
95324
|
+
HitParentGeomType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitParentGeomType,
|
|
95325
|
+
HitPriority: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitPriority,
|
|
95326
|
+
HitSource: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.HitSource,
|
|
95327
|
+
IModelConnection: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.IModelConnection,
|
|
95328
|
+
IconSprites: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.IconSprites,
|
|
95329
|
+
ImageBufferFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ImageBufferFormat,
|
|
95330
|
+
ImageSourceFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ImageSourceFormat,
|
|
95331
|
+
InputCollector: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.InputCollector,
|
|
95332
|
+
InputSource: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.InputSource,
|
|
95333
|
+
InteractiveTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.InteractiveTool,
|
|
95334
|
+
IntersectDetail: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.IntersectDetail,
|
|
95335
|
+
KeyinParseError: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.KeyinParseError,
|
|
95336
|
+
LinePixels: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.LinePixels,
|
|
95337
|
+
LocateAction: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.LocateAction,
|
|
95338
|
+
LocateFilterStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.LocateFilterStatus,
|
|
95339
|
+
LocateOptions: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.LocateOptions,
|
|
95340
|
+
LocateResponse: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.LocateResponse,
|
|
95341
|
+
ManipulatorToolEvent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ManipulatorToolEvent,
|
|
95342
|
+
MarginPercent: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MarginPercent,
|
|
95343
|
+
Marker: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Marker,
|
|
95344
|
+
MarkerSet: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MarkerSet,
|
|
95345
|
+
MassPropertiesOperation: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MassPropertiesOperation,
|
|
95346
|
+
MessageBoxIconType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MessageBoxIconType,
|
|
95347
|
+
MessageBoxType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MessageBoxType,
|
|
95348
|
+
MessageBoxValue: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.MessageBoxValue,
|
|
95349
|
+
ModelSelectorState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ModelSelectorState,
|
|
95350
|
+
ModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ModelState,
|
|
95351
|
+
MonochromeMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MonochromeMode,
|
|
95352
|
+
NotificationHandler: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.NotificationHandler,
|
|
95353
|
+
NotificationManager: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.NotificationManager,
|
|
95354
|
+
NotifyMessageDetails: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.NotifyMessageDetails,
|
|
95355
|
+
Npc: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Npc,
|
|
95356
|
+
OffScreenViewport: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OffScreenViewport,
|
|
95357
|
+
OrthographicViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OrthographicViewState,
|
|
95358
|
+
OutputMessageAlert: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OutputMessageAlert,
|
|
95359
|
+
OutputMessagePriority: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OutputMessagePriority,
|
|
95360
|
+
OutputMessageType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.OutputMessageType,
|
|
95361
|
+
ParseAndRunResult: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ParseAndRunResult,
|
|
95362
|
+
PerModelCategoryVisibility: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.PerModelCategoryVisibility,
|
|
95363
|
+
PhysicalModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.PhysicalModelState,
|
|
95364
|
+
Pixel: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Pixel,
|
|
95365
|
+
PlanarClipMaskMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PlanarClipMaskMode,
|
|
95366
|
+
PlanarClipMaskPriority: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PlanarClipMaskPriority,
|
|
95367
|
+
PrimitiveTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.PrimitiveTool,
|
|
95368
|
+
QParams2d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QParams2d,
|
|
95369
|
+
QParams3d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QParams3d,
|
|
95370
|
+
QPoint2d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2d,
|
|
95371
|
+
QPoint2dBuffer: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2dBuffer,
|
|
95372
|
+
QPoint2dBufferBuilder: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2dBufferBuilder,
|
|
95373
|
+
QPoint2dList: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint2dList,
|
|
95374
|
+
QPoint3d: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint3d,
|
|
95375
|
+
QPoint3dBuffer: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint3dBuffer,
|
|
95376
|
+
QPoint3dBufferBuilder: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint3dBufferBuilder,
|
|
95377
|
+
QPoint3dList: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QPoint3dList,
|
|
95378
|
+
Quantization: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Quantization,
|
|
95379
|
+
QueryRowFormat: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.QueryRowFormat,
|
|
95380
|
+
Rank: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Rank,
|
|
95381
|
+
RenderClipVolume: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderClipVolume,
|
|
95382
|
+
RenderContext: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderContext,
|
|
95383
|
+
RenderGraphic: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderGraphic,
|
|
95384
|
+
RenderGraphicOwner: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderGraphicOwner,
|
|
95385
|
+
RenderMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.RenderMode,
|
|
95386
|
+
RenderSystem: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.RenderSystem,
|
|
95387
|
+
Scene: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Scene,
|
|
95388
|
+
ScreenViewport: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ScreenViewport,
|
|
95389
|
+
SectionDrawingModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SectionDrawingModelState,
|
|
95390
|
+
SectionType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SectionType,
|
|
95391
|
+
SelectionMethod: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionMethod,
|
|
95392
|
+
SelectionMode: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionMode,
|
|
95393
|
+
SelectionProcessing: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionProcessing,
|
|
95394
|
+
SelectionSet: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionSet,
|
|
95395
|
+
SelectionSetEventType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SelectionSetEventType,
|
|
95396
|
+
SheetModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SheetModelState,
|
|
95397
|
+
SheetViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SheetViewState,
|
|
95398
|
+
SkyBoxImageType: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SkyBoxImageType,
|
|
95399
|
+
SnapDetail: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SnapDetail,
|
|
95400
|
+
SnapHeat: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SnapHeat,
|
|
95401
|
+
SnapMode: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SnapMode,
|
|
95402
|
+
SnapStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SnapStatus,
|
|
95403
|
+
SpatialClassifierInsideDisplay: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SpatialClassifierInsideDisplay,
|
|
95404
|
+
SpatialClassifierOutsideDisplay: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SpatialClassifierOutsideDisplay,
|
|
95405
|
+
SpatialLocationModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SpatialLocationModelState,
|
|
95406
|
+
SpatialModelState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SpatialModelState,
|
|
95407
|
+
SpatialViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SpatialViewState,
|
|
95408
|
+
Sprite: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Sprite,
|
|
95409
|
+
SpriteLocation: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.SpriteLocation,
|
|
95410
|
+
StandardViewId: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.StandardViewId,
|
|
95411
|
+
StartOrResume: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.StartOrResume,
|
|
95412
|
+
SyncMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.SyncMode,
|
|
95413
|
+
TentativePoint: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TentativePoint,
|
|
95414
|
+
TerrainHeightOriginMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TerrainHeightOriginMode,
|
|
95415
|
+
TextureMapUnits: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TextureMapUnits,
|
|
95416
|
+
ThematicDisplayMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ThematicDisplayMode,
|
|
95417
|
+
ThematicGradientColorScheme: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ThematicGradientColorScheme,
|
|
95418
|
+
ThematicGradientMode: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.ThematicGradientMode,
|
|
95419
|
+
Tile: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Tile,
|
|
95420
|
+
TileAdmin: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileAdmin,
|
|
95421
|
+
TileBoundingBoxes: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileBoundingBoxes,
|
|
95422
|
+
TileDrawArgs: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileDrawArgs,
|
|
95423
|
+
TileGraphicType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileGraphicType,
|
|
95424
|
+
TileLoadPriority: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileLoadPriority,
|
|
95425
|
+
TileLoadStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileLoadStatus,
|
|
95426
|
+
TileRequest: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileRequest,
|
|
95427
|
+
TileRequestChannel: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileRequestChannel,
|
|
95428
|
+
TileRequestChannelStatistics: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileRequestChannelStatistics,
|
|
95429
|
+
TileRequestChannels: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileRequestChannels,
|
|
95430
|
+
TileTree: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileTree,
|
|
95431
|
+
TileTreeLoadStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileTreeLoadStatus,
|
|
95432
|
+
TileTreeReference: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileTreeReference,
|
|
95433
|
+
TileUsageMarker: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileUsageMarker,
|
|
95434
|
+
TileVisibility: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TileVisibility,
|
|
95435
|
+
Tiles: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Tiles,
|
|
95436
|
+
Tool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Tool,
|
|
95437
|
+
ToolAdmin: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolAdmin,
|
|
95438
|
+
ToolAssistance: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolAssistance,
|
|
95439
|
+
ToolAssistanceImage: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolAssistanceImage,
|
|
95440
|
+
ToolAssistanceInputMethod: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolAssistanceInputMethod,
|
|
95441
|
+
ToolSettings: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ToolSettings,
|
|
95442
|
+
TwoWayViewportFrustumSync: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TwoWayViewportFrustumSync,
|
|
95443
|
+
TwoWayViewportSync: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.TwoWayViewportSync,
|
|
95444
|
+
TxnAction: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TxnAction,
|
|
95445
|
+
TypeOfChange: _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.TypeOfChange,
|
|
95446
|
+
UniformType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.UniformType,
|
|
95447
|
+
VaryingType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.VaryingType,
|
|
95448
|
+
ViewClipClearTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewClipClearTool,
|
|
95449
|
+
ViewClipDecoration: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewClipDecoration,
|
|
95450
|
+
ViewClipDecorationProvider: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewClipDecorationProvider,
|
|
95451
|
+
ViewClipTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewClipTool,
|
|
95452
|
+
ViewCreator2d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewCreator2d,
|
|
95453
|
+
ViewCreator3d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewCreator3d,
|
|
95454
|
+
ViewManager: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewManager,
|
|
95455
|
+
ViewManip: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewManip,
|
|
95456
|
+
ViewPose: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewPose,
|
|
95457
|
+
ViewPose2d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewPose2d,
|
|
95458
|
+
ViewPose3d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewPose3d,
|
|
95459
|
+
ViewRect: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewRect,
|
|
95460
|
+
ViewState: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewState,
|
|
95461
|
+
ViewState2d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewState2d,
|
|
95462
|
+
ViewState3d: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewState3d,
|
|
95463
|
+
ViewStatus: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewStatus,
|
|
95464
|
+
ViewTool: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewTool,
|
|
95465
|
+
ViewingSpace: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.ViewingSpace,
|
|
95466
|
+
Viewport: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.Viewport,
|
|
95467
|
+
canvasToImageBuffer: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.canvasToImageBuffer,
|
|
95468
|
+
canvasToResizedCanvasWithBars: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.canvasToResizedCanvasWithBars,
|
|
95469
|
+
connectViewportFrusta: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.connectViewportFrusta,
|
|
95470
|
+
connectViewportViews: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.connectViewportViews,
|
|
95471
|
+
connectViewports: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.connectViewports,
|
|
95472
|
+
extractImageSourceDimensions: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.extractImageSourceDimensions,
|
|
95473
|
+
getCompressedJpegFromCanvas: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.getCompressedJpegFromCanvas,
|
|
95474
|
+
getImageSourceFormatForMimeType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.getImageSourceFormatForMimeType,
|
|
95475
|
+
getImageSourceMimeType: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.getImageSourceMimeType,
|
|
95476
|
+
imageBufferToBase64EncodedPng: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageBufferToBase64EncodedPng,
|
|
95477
|
+
imageBufferToCanvas: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageBufferToCanvas,
|
|
95478
|
+
imageBufferToPngDataUrl: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageBufferToPngDataUrl,
|
|
95479
|
+
imageElementFromImageSource: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageElementFromImageSource,
|
|
95480
|
+
imageElementFromUrl: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.imageElementFromUrl,
|
|
95481
|
+
queryTerrainElevationOffset: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.queryTerrainElevationOffset,
|
|
95482
|
+
readElementGraphics: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.readElementGraphics,
|
|
95483
|
+
readGltfGraphics: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.readGltfGraphics,
|
|
95484
|
+
synchronizeViewportFrusta: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.synchronizeViewportFrusta,
|
|
95485
|
+
synchronizeViewportViews: _core_frontend__WEBPACK_IMPORTED_MODULE_1__.synchronizeViewportViews,
|
|
95549
95486
|
};
|
|
95550
95487
|
// END GENERATED CODE
|
|
95551
|
-
const getExtensionApi = (
|
|
95488
|
+
const getExtensionApi = (_id) => {
|
|
95552
95489
|
return {
|
|
95553
95490
|
exports: {
|
|
95554
95491
|
// exceptions
|
|
95555
|
-
ExtensionHost:
|
|
95492
|
+
ExtensionHost: _ExtensionHost__WEBPACK_IMPORTED_MODULE_0__.ExtensionHost,
|
|
95556
95493
|
// automated
|
|
95557
95494
|
...extensionExports,
|
|
95558
95495
|
},
|
|
95559
|
-
api: new _ExtensionImpl__WEBPACK_IMPORTED_MODULE_0__.ExtensionImpl(id),
|
|
95560
95496
|
};
|
|
95561
95497
|
};
|
|
95562
95498
|
globalThis[globalSymbol] = {
|
|
@@ -142209,8 +142145,9 @@ class TileAdmin {
|
|
|
142209
142145
|
// start dynamically loading default implementation and save the promise to avoid duplicate instances
|
|
142210
142146
|
this._tileStoragePromise = (async () => {
|
|
142211
142147
|
await __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3").then(__webpack_require__.t.bind(__webpack_require__, /*! reflect-metadata */ "../../common/temp/node_modules/.pnpm/reflect-metadata@0.1.13/node_modules/reflect-metadata/Reflect.js", 23));
|
|
142148
|
+
const objectStorage = await Promise.all(/*! import() | object-storage-azure */[__webpack_require__.e("vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3"), __webpack_require__.e("vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_6_0_node_modules_itwin_obj-0f69b1"), __webpack_require__.e("object-storage-azure")]).then(__webpack_require__.t.bind(__webpack_require__, /*! @itwin/object-storage-azure/lib/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+object-storage-azure@1.6.0/node_modules/@itwin/object-storage-azure/lib/frontend/index.js", 23));
|
|
142212
142149
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
142213
|
-
const { AzureFrontendStorage, FrontendBlockBlobClientWrapperFactory } =
|
|
142150
|
+
const { AzureFrontendStorage, FrontendBlockBlobClientWrapperFactory } = objectStorage.default ?? objectStorage;
|
|
142214
142151
|
const azureStorage = new AzureFrontendStorage(new FrontendBlockBlobClientWrapperFactory());
|
|
142215
142152
|
this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(azureStorage);
|
|
142216
142153
|
return this._tileStorage;
|
|
@@ -282362,7 +282299,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
282362
282299
|
/***/ ((module) => {
|
|
282363
282300
|
|
|
282364
282301
|
"use strict";
|
|
282365
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.
|
|
282302
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.103","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"./node_modules/@itwin/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.0.0-dev.103","@itwin/core-bentley":"workspace:^4.0.0-dev.103","@itwin/core-common":"workspace:^4.0.0-dev.103","@itwin/core-geometry":"workspace:^4.0.0-dev.103","@itwin/core-orbitgt":"workspace:^4.0.0-dev.103","@itwin/core-quantity":"workspace:^4.0.0-dev.103"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"^4.0.0-dev.33","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^8.2.2","@types/node":"^18.11.5","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^8.36.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~5.0.2","webpack":"^5.76.0"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/object-storage-azure":"^1.5.0","@itwin/cloud-agnostic-core":"^1.5.0","@itwin/object-storage-core":"^1.5.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","wms-capabilities":"0.4.0","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
|
|
282366
282303
|
|
|
282367
282304
|
/***/ })
|
|
282368
282305
|
|