bruce-cesium 5.9.8 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
- import { BruceEvent, Cartes, Entity as Entity$1, ProjectViewTile, Carto, Geometry, MathUtils, LRUCache, Api, Calculator, ClientFile, EntityTag, EntityType, ObjectUtils, Style, DelayQueue, EntityLod, Bounds, ZoomControl, EntityRelationType, ENVIRONMENT, EntityHistoricData, Tileset, EntityCoords, DataLab, EntitySource, MenuItem, EntityRelation, ProgramKey, ProjectView, ProjectViewBookmark, ProjectViewLegacyTile, Camera, Session, EntityAttachment, EntityAttachmentType, EntityAttribute, AbstractApi } from 'bruce-models';
1
+ import { BruceEvent, Cartes, Entity as Entity$1, ProjectViewTile, Carto, Geometry, MathUtils, LRUCache, Api, Calculator, ClientFile, EntityTag, EntityType, ObjectUtils, Style, DelayQueue, EntityLod, Bounds, ZoomControl, EntityRelationType, ENVIRONMENT, EntityHistoricData, Tileset, EntityCoords, DataLab, EntitySource, MenuItem, EntityRelation, ProgramKey, ProjectView, ProjectViewBookmark, ProjectViewLegacyTile, Camera, EntityAttachment, EntityAttachmentType, EntityAttribute, AbstractApi, Session } from 'bruce-models';
2
2
  import * as Cesium from 'cesium';
3
- import { Cartographic, Cartesian2, Math as Math$1, Cartesian3, CallbackProperty, Color, HeightReference, Rectangle, Entity, DistanceDisplayCondition, ClassificationType, ArcType, CornerType, ShadowMode, ConstantProperty, ConstantPositionProperty, JulianDate, HorizontalOrigin, VerticalOrigin, PolygonHierarchy, PolylineGraphics, ColorMaterialProperty, ColorBlendMode, HeadingPitchRoll, Transforms, Model, Primitive, Cesium3DTileFeature, SceneMode, GeoJsonDataSource, HeadingPitchRange, Ion, Cesium3DTileStyle, Cesium3DTileColorBlendMode, KmlDataSource, Quaternion, Matrix3, Matrix4, SceneTransforms, EllipsoidTerrainProvider, CesiumInspector, OrthographicFrustum, defined, ClockRange, EllipsoidGeodesic, sampleTerrainMostDetailed, Cesium3DTileset, PolygonPipeline, IonResource, IonImageryProvider, createWorldImagery, createWorldImageryAsync, BingMapsImageryProvider, BingMapsStyle, MapboxImageryProvider, MapboxStyleImageryProvider, ArcGisMapServerImageryProvider, OpenStreetMapImageryProvider, UrlTemplateImageryProvider, GridImageryProvider, GeographicTilingScheme, ImageryLayer, TileMapServiceImageryProvider, CesiumTerrainProvider, EasingFunction, NearFarScalar, ScreenSpaceEventHandler, ScreenSpaceEventType, BoundingSphere, GeometryInstance, ModelGraphics, PolygonGraphics, CorridorGraphics, PointGraphics, BillboardGraphics, EllipseGraphics, PolylineDashMaterialProperty, CzmlDataSource, Intersect, Fullscreen } from 'cesium';
3
+ import { Cartographic, Cartesian2, Math as Math$1, Cartesian3, CallbackProperty, Color, HeightReference, Rectangle, JulianDate, Entity, DistanceDisplayCondition, ClassificationType, ArcType, CornerType, ShadowMode, ConstantProperty, ConstantPositionProperty, PolygonHierarchy, PolylineGraphics, ColorMaterialProperty, HorizontalOrigin, VerticalOrigin, ColorBlendMode, HeadingPitchRoll, Transforms, Model, Primitive, Cesium3DTileFeature, SceneMode, GeoJsonDataSource, Cesium3DTileStyle, HeadingPitchRange, Cesium3DTileColorBlendMode, Ion, KmlDataSource, Quaternion, Matrix3, Matrix4, EllipsoidTerrainProvider, IonImageryProvider, createWorldImagery, createWorldImageryAsync, BingMapsImageryProvider, BingMapsStyle, MapboxImageryProvider, MapboxStyleImageryProvider, ArcGisMapServerImageryProvider, OpenStreetMapImageryProvider, UrlTemplateImageryProvider, GridImageryProvider, GeographicTilingScheme, ImageryLayer, TileMapServiceImageryProvider, CesiumTerrainProvider, IonResource, SceneTransforms, CesiumInspector, OrthographicFrustum, defined, ClockRange, EasingFunction, NearFarScalar, EllipsoidGeodesic, sampleTerrainMostDetailed, Cesium3DTileset, PolygonPipeline, ModelGraphics, PolygonGraphics, CorridorGraphics, PointGraphics, BillboardGraphics, EllipseGraphics, PolylineDashMaterialProperty, ScreenSpaceEventHandler, ScreenSpaceEventType, BoundingSphere, GeometryInstance, CzmlDataSource, Intersect, Fullscreen } from 'cesium';
4
4
 
5
5
  const TIME_LAG = 300;
6
6
  const POSITION_CHECK_TIMER = 950;
@@ -10744,6 +10744,21 @@ var CesiumAnimatedInOut;
10744
10744
  CesiumAnimatedInOut.AnimateOut = AnimateOut;
10745
10745
  })(CesiumAnimatedInOut || (CesiumAnimatedInOut = {}));
10746
10746
 
10747
+ // Constants for update source types
10748
+ const UPDATE_SOURCES = {
10749
+ TREE_CASCADE: "tree-cascade",
10750
+ TILESET_DISPOSE: "tileset-dispose",
10751
+ OSM_TILESET_DISPOSE: "osm-tileset-dispose",
10752
+ ADD_REGO_REPLACE: "add-rego-replace",
10753
+ ENTITIES_LOADED_REMOVE: "entities-loaded-remove",
10754
+ ENTITIES_LOADED_CLEAR: "entities-loaded-clear",
10755
+ ENTITIES_LOADED_DISPOSE: "entities-loaded-dispose",
10756
+ ENTITIES_TAG_FILTER: "entities-tag-filter",
10757
+ ENTITIES_DISABLED: "entities-disabled",
10758
+ ENTITIES_DISPOSE: "entities-dispose",
10759
+ RELATIONS_FILTER: "relations-filter",
10760
+ RELATIONS_DISPOSE: "relations-dispose" // Triggered when relations render manager is disposed.
10761
+ };
10747
10762
  /**
10748
10763
  * Returns if a given visual is alive and in the scene.
10749
10764
  * @param viewer
@@ -11219,7 +11234,7 @@ var VisualsRegister;
11219
11234
  });
11220
11235
  }
11221
11236
  // Trigger update event.
11222
- if (this.onUpdate && source !== "tree-cascade") {
11237
+ if (this.onUpdate && source !== UPDATE_SOURCES.TREE_CASCADE) {
11223
11238
  const update = {
11224
11239
  type: EVisualUpdateType.Update,
11225
11240
  entityId: state.entityId
@@ -11310,7 +11325,7 @@ var VisualsRegister;
11310
11325
  }
11311
11326
  }
11312
11327
  // Trigger update event.
11313
- if (this.onUpdate && source !== "tree-cascade") {
11328
+ if (this.onUpdate && source !== UPDATE_SOURCES.TREE_CASCADE) {
11314
11329
  const keys = Object.keys(states);
11315
11330
  for (let i = 0; i < keys.length; i++) {
11316
11331
  const key = keys[i];
@@ -11592,7 +11607,7 @@ var VisualsRegister;
11592
11607
  if (source) {
11593
11608
  update.source = source;
11594
11609
  }
11595
- if (source !== "tree-cascade") {
11610
+ if (source !== UPDATE_SOURCES.TREE_CASCADE) {
11596
11611
  (_a = this.onUpdate) === null || _a === void 0 ? void 0 : _a.Trigger(update);
11597
11612
  }
11598
11613
  }
@@ -11758,7 +11773,7 @@ var VisualsRegister;
11758
11773
  if (source) {
11759
11774
  update.source = source;
11760
11775
  }
11761
- if (source !== "tree-cascade") {
11776
+ if (source !== UPDATE_SOURCES.TREE_CASCADE) {
11762
11777
  (_a = this.onUpdate) === null || _a === void 0 ? void 0 : _a.Trigger(update);
11763
11778
  }
11764
11779
  }
@@ -11804,7 +11819,7 @@ var VisualsRegister;
11804
11819
  if (params === null || params === void 0 ? void 0 : params.source) {
11805
11820
  update.source = params.source;
11806
11821
  }
11807
- if ((params === null || params === void 0 ? void 0 : params.source) !== "tree-cascade") {
11822
+ if ((params === null || params === void 0 ? void 0 : params.source) !== UPDATE_SOURCES.TREE_CASCADE) {
11808
11823
  (_a = this.onUpdate) === null || _a === void 0 ? void 0 : _a.Trigger(update);
11809
11824
  }
11810
11825
  if ((params === null || params === void 0 ? void 0 : params.requestRender) != false) {
@@ -11954,7 +11969,7 @@ var VisualsRegister;
11954
11969
  if (source) {
11955
11970
  update.source = source;
11956
11971
  }
11957
- if (source !== "tree-cascade") {
11972
+ if (source !== UPDATE_SOURCES.TREE_CASCADE) {
11958
11973
  (_a = this.onUpdate) === null || _a === void 0 ? void 0 : _a.Trigger(update);
11959
11974
  }
11960
11975
  }
@@ -12066,7 +12081,7 @@ var VisualsRegister;
12066
12081
  if (params === null || params === void 0 ? void 0 : params.source) {
12067
12082
  update.source = params.source;
12068
12083
  }
12069
- if ((params === null || params === void 0 ? void 0 : params.source) !== "tree-cascade") {
12084
+ if ((params === null || params === void 0 ? void 0 : params.source) !== UPDATE_SOURCES.TREE_CASCADE) {
12070
12085
  (_a = this.onUpdate) === null || _a === void 0 ? void 0 : _a.Trigger(update);
12071
12086
  }
12072
12087
  }
@@ -12082,7 +12097,7 @@ var VisualsRegister;
12082
12097
  menuItemId: rego.menuItemId,
12083
12098
  doUpdate: false,
12084
12099
  requestRender: false,
12085
- source: "add-rego-replace"
12100
+ source: UPDATE_SOURCES.ADD_REGO_REPLACE
12086
12101
  });
12087
12102
  }
12088
12103
  const entityId = rego.entityId;
@@ -12106,7 +12121,7 @@ var VisualsRegister;
12106
12121
  if (source) {
12107
12122
  update.source = source;
12108
12123
  }
12109
- if (source !== "tree-cascade") {
12124
+ if (source !== UPDATE_SOURCES.TREE_CASCADE) {
12110
12125
  (_b = this.onUpdate) === null || _b === void 0 ? void 0 : _b.Trigger(update);
12111
12126
  }
12112
12127
  if (requestRender != false) {
@@ -12228,7 +12243,7 @@ var VisualsRegister;
12228
12243
  if (source) {
12229
12244
  update.source = source;
12230
12245
  }
12231
- if (source !== "tree-cascade") {
12246
+ if (source !== UPDATE_SOURCES.TREE_CASCADE) {
12232
12247
  (_a = this.onUpdate) === null || _a === void 0 ? void 0 : _a.Trigger(update);
12233
12248
  }
12234
12249
  if (doesInclude) {
@@ -12267,7 +12282,7 @@ var VisualsRegister;
12267
12282
  if (source) {
12268
12283
  update.source = source;
12269
12284
  }
12270
- if (source !== "tree-cascade") {
12285
+ if (source !== UPDATE_SOURCES.TREE_CASCADE) {
12271
12286
  (_b = this.onUpdate) === null || _b === void 0 ? void 0 : _b.Trigger(update);
12272
12287
  }
12273
12288
  this.rego[entityId] = entityRegos.filter(r => r.menuItemId !== menuItemId);
@@ -12302,7 +12317,7 @@ var VisualsRegister;
12302
12317
  if (source) {
12303
12318
  update.source = source;
12304
12319
  }
12305
- if (source !== "tree-cascade") {
12320
+ if (source !== UPDATE_SOURCES.TREE_CASCADE) {
12306
12321
  (_c = this.onUpdate) === null || _c === void 0 ? void 0 : _c.Trigger(update);
12307
12322
  }
12308
12323
  if (doUpdate && menuItemId) {
@@ -12409,7 +12424,7 @@ var VisualsRegister;
12409
12424
  if (source) {
12410
12425
  update.source = source;
12411
12426
  }
12412
- if (source !== "tree-cascade") {
12427
+ if (source !== UPDATE_SOURCES.TREE_CASCADE) {
12413
12428
  (_a = this.onUpdate) === null || _a === void 0 ? void 0 : _a.Trigger(update);
12414
12429
  }
12415
12430
  this.queueUpdate({
@@ -13451,14 +13466,14 @@ var EntitiesRenderManager;
13451
13466
  this.visualsManager.RemoveRegos({
13452
13467
  menuItemId: this.item.id,
13453
13468
  retainTagIds: tagsToRender,
13454
- source: "entities-tag-filter"
13469
+ source: UPDATE_SOURCES.ENTITIES_TAG_FILTER
13455
13470
  });
13456
13471
  (_j = this.clustering) === null || _j === void 0 ? void 0 : _j.Dispose();
13457
13472
  }
13458
13473
  else {
13459
13474
  this.visualsManager.RemoveRegos({
13460
13475
  menuItemId: this.item.id,
13461
- source: "entities-disabled"
13476
+ source: UPDATE_SOURCES.ENTITIES_DISABLED
13462
13477
  });
13463
13478
  (_k = this.clustering) === null || _k === void 0 ? void 0 : _k.Dispose();
13464
13479
  return;
@@ -13600,7 +13615,7 @@ var EntitiesRenderManager;
13600
13615
  this.disposed = true;
13601
13616
  this.visualsManager.RemoveRegos({
13602
13617
  menuItemId: this.item.id,
13603
- source: "entities-dispose"
13618
+ source: UPDATE_SOURCES.ENTITIES_DISPOSE
13604
13619
  });
13605
13620
  (_a = this.entityCheckRemoval) === null || _a === void 0 ? void 0 : _a.call(this);
13606
13621
  (_b = this.viewMonitorRemoval) === null || _b === void 0 ? void 0 : _b.call(this);
@@ -14461,7 +14476,7 @@ var EntitiesLoadedRenderManager;
14461
14476
  this.visualsManager.RemoveRegos({
14462
14477
  entityId: x,
14463
14478
  menuItemId: this.item.id,
14464
- source: "entities-loaded-remove"
14479
+ source: UPDATE_SOURCES.ENTITIES_LOADED_REMOVE
14465
14480
  });
14466
14481
  this.renderedEntities[x] = false;
14467
14482
  });
@@ -14478,7 +14493,7 @@ var EntitiesLoadedRenderManager;
14478
14493
  this.item.BruceEntity.Entities = [];
14479
14494
  this.visualsManager.RemoveRegos({
14480
14495
  menuItemId: this.item.id,
14481
- source: "entities-loaded-clear"
14496
+ source: UPDATE_SOURCES.ENTITIES_LOADED_CLEAR
14482
14497
  });
14483
14498
  this.renderedEntities = {};
14484
14499
  this.recreateGetter();
@@ -14543,7 +14558,7 @@ var EntitiesLoadedRenderManager;
14543
14558
  this.disposed = true;
14544
14559
  this.visualsManager.RemoveRegos({
14545
14560
  menuItemId: this.item.id,
14546
- source: "entities-loaded-dispose"
14561
+ source: UPDATE_SOURCES.ENTITIES_LOADED_DISPOSE
14547
14562
  });
14548
14563
  for (let i = 0; i < this.sources.length; i++) {
14549
14564
  const source = this.sources[i];
@@ -18743,7 +18758,7 @@ var TilesetCadRenderManager;
18743
18758
  requestRender: false,
18744
18759
  menuItemId: this.item.id,
18745
18760
  doRemove: false,
18746
- source: "tileset-dispose"
18761
+ source: UPDATE_SOURCES.TILESET_DISPOSE
18747
18762
  });
18748
18763
  // Might have to do something smarter since siblings could still be OK.
18749
18764
  this.loadedCesiumEntities[rego.entityId] = null;
@@ -18771,6 +18786,7 @@ var TilesetCadRenderManager;
18771
18786
  ];
18772
18787
  while (stack.length > 0) {
18773
18788
  const { node, parentId, firstFoundCollapsedBranch } = stack.pop();
18789
+ let newFirstFoundCollapsedBranch = firstFoundCollapsedBranch;
18774
18790
  if (firstFoundCollapsedBranch) {
18775
18791
  this.treeNodeByGeomId[node.geomId] = firstFoundCollapsedBranch;
18776
18792
  this.treeNodeByEntityId[node.id] = firstFoundCollapsedBranch;
@@ -18785,19 +18801,19 @@ var TilesetCadRenderManager;
18785
18801
  };
18786
18802
  this.treeNodeByGeomId[node.geomId] = cache;
18787
18803
  this.treeNodeByEntityId[node.id] = cache;
18788
- let newFirstFoundCollapsedBranch = firstFoundCollapsedBranch;
18789
18804
  if (!firstFoundCollapsedBranch && node.collapsed) {
18790
18805
  newFirstFoundCollapsedBranch = cache;
18791
18806
  }
18792
- // Push children to stack in reverse order to maintain correct traversal.
18793
- if (node.children) {
18794
- for (let i = node.children.length - 1; i >= 0; i--) {
18795
- stack.push({
18796
- node: node.children[i],
18797
- parentId: node.id,
18798
- firstFoundCollapsedBranch: newFirstFoundCollapsedBranch
18799
- });
18800
- }
18807
+ }
18808
+ // Always process children regardless of collapse state
18809
+ // This ensures all nodes are mapped, even those under collapsed branches
18810
+ if (node.children) {
18811
+ for (let i = node.children.length - 1; i >= 0; i--) {
18812
+ stack.push({
18813
+ node: node.children[i],
18814
+ parentId: node.id,
18815
+ firstFoundCollapsedBranch: newFirstFoundCollapsedBranch
18816
+ });
18801
18817
  }
18802
18818
  }
18803
18819
  }
@@ -19026,7 +19042,7 @@ var TilesetCadRenderManager;
19026
19042
  this.visualsManager.RemoveRegos({
19027
19043
  menuItemId: this.item.id,
19028
19044
  doRemove: false,
19029
- source: "tileset-dispose"
19045
+ source: UPDATE_SOURCES.TILESET_DISPOSE
19030
19046
  });
19031
19047
  this.viewerDateTimeDispose();
19032
19048
  }
@@ -19527,7 +19543,7 @@ var TilesetOsmRenderManager;
19527
19543
  }
19528
19544
  this.visualsManager.RemoveRegos({
19529
19545
  menuItemId: this.item.id,
19530
- source: "osm-tileset-dispose"
19546
+ source: UPDATE_SOURCES.OSM_TILESET_DISPOSE
19531
19547
  });
19532
19548
  this.featureQueue = [];
19533
19549
  }
@@ -20721,7 +20737,7 @@ var RelationsRenderManager;
20721
20737
  entityId: rego.entityId,
20722
20738
  menuItemId: this.item.id,
20723
20739
  requestRender: false,
20724
- source: "relations-filter"
20740
+ source: UPDATE_SOURCES.RELATIONS_FILTER
20725
20741
  });
20726
20742
  }
20727
20743
  }
@@ -20769,7 +20785,7 @@ var RelationsRenderManager;
20769
20785
  this.disposed = true;
20770
20786
  this.register.RemoveRegos({
20771
20787
  menuItemId: this.item.id,
20772
- source: "relations-dispose"
20788
+ source: UPDATE_SOURCES.RELATIONS_DISPOSE
20773
20789
  });
20774
20790
  }
20775
20791
  /**
@@ -21030,7 +21046,7 @@ var RelationsRenderManager;
21030
21046
  menuItemId: this.item.id,
21031
21047
  relation: relation,
21032
21048
  requestRender: false,
21033
- source: "relations-filter"
21049
+ source: UPDATE_SOURCES.RELATIONS_FILTER
21034
21050
  });
21035
21051
  }
21036
21052
  const key = RelationRenderEngine.GetRenderGroupId(relation);
@@ -33309,7 +33325,7 @@ class WidgetViewBar extends Widget.AWidget {
33309
33325
  }
33310
33326
  }
33311
33327
 
33312
- const VERSION = "5.9.8";
33328
+ const VERSION = "6.0.0";
33313
33329
 
33314
- export { VERSION, CesiumViewMonitor, ViewerUtils, ViewerEventTracker, MenuItemManager, isOutlineChanged, EntityRenderEngine, EntityRenderEnginePoint, EntityRenderEnginePolyline, EntityRenderEnginePolygon, EntityRenderEngineModel3d, MenuItemCreator, VisualsRegister, RenderManager, EntitiesIdsRenderManager, DataLabRenderManager, EntitiesLoadedRenderManager, EntitiesRenderManager, EntityRenderManager, TilesetCadRenderManager, TilesetArbRenderManager, TilesetEntitiesRenderManager, TilesetOsmRenderManager, TilesetPointcloudRenderManager, TilesetGooglePhotosRenderManager, DataSourceStaticKmlManager, GoogleSearchRenderManager, AssemblyRenderManager, RelationsRenderManager, SharedGetters, CesiumParabola, EntityLabel, ViewRenderEngine, TileRenderEngine, TilesetRenderEngine, CESIUM_INSPECTOR_KEY, CESIUM_TIMELINE_KEY, CESIUM_TIMELINE_LIVE_KEY, CESIUM_TIMELINE_LIVE_PADDING_KEY, CESIUM_TIMELINE_INTERVAL_KEY, DEFAULT_LIVE_PADDING_SECONDS, ViewUtils, DrawingUtils, MeasureUtils, EntityUtils, CesiumEntityStyler, CesiumAnimatedProperty, CesiumAnimatedInOut, Draw3dPolygon, Draw3dPolyline, MeasureCreator, Walkthrough, Widget, VIEWER_BOOKMARKS_WIDGET_KEY, WidgetBookmarks, WidgetBranding, WidgetCursorBar, WidgetEmbeddedInfoView, WidgetInfoView, WidgetNavCompass$$1 as WidgetNavCompass, VIEWER_VIEW_BAR_WIDGET_KEY, WidgetViewBar, WidgetControlViewBar, WidgetControlViewBarSearch, VIEWER_LEFT_PANEL_WIDGET_KEY, VIEWER_LEFT_PANEL_CSS_VAR_LEFT, WidgetLeftPanel, WidgetLeftPanelTab, WidgetLeftPanelTabBookmarks };
33330
+ export { VERSION, CesiumViewMonitor, ViewerUtils, ViewerEventTracker, MenuItemManager, isOutlineChanged, EntityRenderEngine, EntityRenderEnginePoint, EntityRenderEnginePolyline, EntityRenderEnginePolygon, EntityRenderEngineModel3d, MenuItemCreator, UPDATE_SOURCES, VisualsRegister, RenderManager, EntitiesIdsRenderManager, DataLabRenderManager, EntitiesLoadedRenderManager, EntitiesRenderManager, EntityRenderManager, TilesetCadRenderManager, TilesetArbRenderManager, TilesetEntitiesRenderManager, TilesetOsmRenderManager, TilesetPointcloudRenderManager, TilesetGooglePhotosRenderManager, DataSourceStaticKmlManager, GoogleSearchRenderManager, AssemblyRenderManager, RelationsRenderManager, SharedGetters, CesiumParabola, EntityLabel, ViewRenderEngine, TileRenderEngine, TilesetRenderEngine, CESIUM_INSPECTOR_KEY, CESIUM_TIMELINE_KEY, CESIUM_TIMELINE_LIVE_KEY, CESIUM_TIMELINE_LIVE_PADDING_KEY, CESIUM_TIMELINE_INTERVAL_KEY, DEFAULT_LIVE_PADDING_SECONDS, ViewUtils, DrawingUtils, MeasureUtils, EntityUtils, CesiumEntityStyler, CesiumAnimatedProperty, CesiumAnimatedInOut, Draw3dPolygon, Draw3dPolyline, MeasureCreator, Walkthrough, Widget, VIEWER_BOOKMARKS_WIDGET_KEY, WidgetBookmarks, WidgetBranding, WidgetCursorBar, WidgetEmbeddedInfoView, WidgetInfoView, WidgetNavCompass$$1 as WidgetNavCompass, VIEWER_VIEW_BAR_WIDGET_KEY, WidgetViewBar, WidgetControlViewBar, WidgetControlViewBarSearch, VIEWER_LEFT_PANEL_WIDGET_KEY, VIEWER_LEFT_PANEL_CSS_VAR_LEFT, WidgetLeftPanel, WidgetLeftPanelTab, WidgetLeftPanelTabBookmarks };
33315
33331
  //# sourceMappingURL=bruce-cesium.es5.js.map